/* ============================================================
   SIRKULOPI — Home Page Styles (home.css)
   Berisi: hero, masalah, manfaat, sdgs, proses, cta
   ============================================================ */


/* ── Hero Section ──────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--coffee-dark);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

/* Background foto – src diisi via JS dari <img id="hero-bg-img"> */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Overlay gradien di atas foto agar teks tetap terbaca */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 75% 40%, rgba(107, 58, 31, 0.72) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 75%, rgba(74, 124, 89, 0.20) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 10%, rgba(212, 160, 23, 0.15) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(26, 14, 6, 0.30) 0%, rgba(26, 14, 6, 0.55) 60%, var(--coffee-dark) 100%);
}

/* Lingkaran dekoratif */
.hero-circles { position: absolute; inset: 0; overflow: hidden; }

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 125, 62, 0.12);
}

.circle-1 { width: 600px; height: 600px; top: -200px; right: -150px; animation: rotate 25s linear infinite; }
.circle-2 { width: 400px; height: 400px; top:  -50px; right:   50px; border-color: rgba(212, 160, 23, 0.08); animation: rotate 18s linear infinite reverse; }
.circle-3 { width: 800px; height: 800px; bottom: -300px; left: -200px; border-color: rgba(74, 124, 89, 0.06); animation: rotate 35s linear infinite; }

@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Grid garis halus */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid-lines::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 125, 62, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 125, 62, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, black 20%, transparent 80%);
}

.hero-grid-lines::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 30%, var(--coffee-tan) 60%, transparent 100%);
  opacity: 0.35;
}

/* Layout utama (2 kolom) */
.hero-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 7rem 2.5rem 5rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  flex: 1;
}


/* ── Hero: Kolom Kiri (Teks) ───────────────────────────────── */
.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 124, 89, 0.15);
  border: 1px solid rgba(74, 124, 89, 0.35);
  color: var(--green-light);
  padding: 0.45rem 1.1rem 0.45rem 0.7rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-light);
  animation: blink 2s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -1.5px;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s 0.12s ease both;
  color: var(--coffee-cream);
}

/* "Dari Ampas" – outline/ghost */
.hero-title .line-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(245, 230, 208, 0.5);
}

/* "Jadi Aset" – gold + garis bawah */
.hero-title .accent {
  display: block;
  color: var(--accent-gold);
  position: relative;
}

.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-ember), var(--accent-gold));
  border-radius: 3px;
  transform: skewX(-8deg);
  opacity: 0.55;
}

.hero-desc {
  color: rgba(245, 230, 208, 0.6);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.7s 0.24s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s 0.36s ease both;
}




/* ── Hero: Kolom Kanan (Card Produk) ───────────────────────── */
.hero-visual {
  animation: fadeUp 0.7s 0.18s ease both;
}

.hero-card-main {
  background: linear-gradient(160deg, rgba(61, 31, 10, 0.7) 0%, rgba(26, 14, 6, 0.88) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 125, 62, 0.22);
  border-radius: var(--radius-xl);
  padding: 2.8rem 2.2rem 3.5rem;
  position: relative;
  overflow: visible;
  box-shadow:
    0 0 0 1px rgba(212, 160, 23, 0.06),
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(245, 230, 208, 0.04);
}

/* Garis gradien di atas card */
.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coffee-tan), var(--accent-gold), var(--green-eco), transparent);
  border-radius: 0 0 2px 2px;
}

/* Ambient glow di belakang card */
.hero-card-main::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* Badge "Ramah Lingkungan" melayang */
.floating-badge {
  position: absolute;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.fb-1 {
  top: -14px; right: 20px;
  background: linear-gradient(135deg, #4a7c59, #2d5c3f);
  color: #7db892;
  border: 1px solid rgba(125, 184, 146, 0.25);
  padding: 0.4rem 1rem 0.4rem 0.7rem;
  animation: float 4s ease-in-out infinite 0.5s;
}

.fb-1 svg { width: 13px; height: 13px; stroke: #7db892; fill: none; }

/* Stage gambar produk */
.product-stage {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.4rem;
}

.product-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.22) 0%, transparent 65%);
  border-radius: 50%;
  animation: glowPulse 3.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

.hero-product-img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.6));
  animation: float 4s ease-in-out infinite;
}

.card-title {
  font-family: var(--font-display);
  color: var(--coffee-cream);
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.card-sub {
  color: rgba(245, 230, 208, 0.42);
  text-align: center;
  font-size: 0.8rem;
  margin-bottom: 1.8rem;
  line-height: 1.5;
}

/* Grid 4 statistik di dalam card */
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 125, 62, 0.12);
  border-radius: 16px;
  padding: 1rem 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.stat-item:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.25);
  transform: translateY(-2px);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.67rem;
  color: rgba(245, 230, 208, 0.42);
  line-height: 1.35;
  display: block;
}

/* Chip "Kemasan 1kg" melayang di bawah card */
.kemasan-float {
  position: absolute;
  bottom: -16px; left: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(20, 10, 4, 0.92);
  border: 1px solid rgba(196, 125, 62, 0.3);
  backdrop-filter: blur(14px);
  border-radius: 50px;
  padding: 0.45rem 1.1rem 0.45rem 0.45rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.kemasan-float img {
  width: 34px; height: 34px;
  object-fit: contain;
  border-radius: 8px;
}

.kemasan-float span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--coffee-cream);
  white-space: nowrap;
}

/* Indikator scroll */
.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding-bottom: 2rem;
  color: rgba(245, 230, 208, 0.28);
  font-size: 0.64rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.4), transparent);
}

.hero-scroll svg {
  width: 16px; height: 16px;
  stroke: rgba(245, 230, 208, 0.28);
  fill: none;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}


/* ── Section: Masalah ──────────────────────────────────────── */
#masalah {
  background: var(--coffee-dark);
  position: relative;
  overflow: hidden;
}

#masalah::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(107, 58, 31, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(74, 124, 89, 0.12) 0%, transparent 50%);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.problem-intro .stat-highlight {
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}

.problem-intro > .reveal:last-child { margin-top: 2rem; }

.stat-highlight {
  background: rgba(196, 125, 62, 0.12);
  border: 1px solid rgba(196, 125, 62, 0.25);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.big-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-gold);
  white-space: nowrap;
  line-height: 1;
}

.big-num-unit { font-size: 1.2rem; }

.stat-highlight .desc {
  color: rgba(245, 230, 208, 0.65);
  font-size: 0.875rem;
  line-height: 1.65;
}

.problem-cards { display: grid; gap: 1.2rem; }

.problem-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 125, 62, 0.18);
  border-radius: 16px;
  padding: 1.4rem;
  transition: var(--transition);
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(196, 125, 62, 0.45);
  transform: translateX(5px);
}

.problem-card-icon { margin-bottom: 0.8rem; }
.problem-card-icon svg { width: 28px; height: 28px; stroke: var(--coffee-tan); fill: none; }

.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--coffee-cream);
  margin-bottom: 0.4rem;
}

.problem-card p {
  color: rgba(245, 230, 208, 0.55);
  font-size: 0.875rem;
  line-height: 1.7;
}


/* ── Section: Manfaat ──────────────────────────────────────── */
#manfaat-home { background: var(--coffee-light); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(26, 14, 6, 0.06);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  opacity: 0;
  transition: var(--transition);
}

.benefit-card.env::before { background: var(--green-eco); }
.benefit-card.eco::before { background: var(--accent-gold); }
.benefit-card.soc::before { background: var(--accent-ember); }

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-icon-wrap {
  width: 76px; height: 76px;
  border-radius: 50%;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.env .benefit-icon-wrap { background: rgba(74, 124, 89, 0.1); }
.eco .benefit-icon-wrap { background: rgba(212, 160, 23, 0.1); }
.soc .benefit-icon-wrap { background: rgba(224, 92, 26, 0.1); }

.benefit-icon-wrap svg { width: 34px; height: 34px; fill: none; }
.env .benefit-icon-wrap svg { stroke: var(--green-eco); }
.eco .benefit-icon-wrap svg { stroke: var(--accent-gold); }
.soc .benefit-icon-wrap svg { stroke: var(--accent-ember); }

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--coffee-dark);
  margin-bottom: 0.8rem;
}

.benefit-card p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.8; }


/* ── Section: SDGs ─────────────────────────────────────────── */
#sdgs {
  background: var(--green-eco);
  position: relative;
  overflow: hidden;
}

#sdgs::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.sdg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sdg-badge-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.sdg-badge {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  text-align: center;
}

.sdg-badge .num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.sdg-badge .label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
}

.sdg-cards { display: grid; gap: 1.2rem; }

.sdg-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 1.4rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: var(--transition);
}

.sdg-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(5px);
}

.sdg-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
  flex-shrink: 0;
}

.sdg-card h3 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.sdg-card p  { color: rgba(255, 255, 255, 0.65); font-size: 0.85rem; line-height: 1.65; }


/* ── Section: Proses ───────────────────────────────────────── */
#proses-home {
  background: var(--coffee-dark);
  position: relative;
  overflow: hidden;
}

#proses-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(107, 58, 31, 0.25) 0%, transparent 70%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Garis konektor antar step */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--coffee-tan), var(--accent-gold), var(--green-eco));
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.step-circle svg { width: 32px; height: 32px; stroke: white; fill: none; }

.step-circle.s1 { background: linear-gradient(135deg, var(--coffee-tan),  var(--coffee-warm)); }
.step-circle.s2 { background: linear-gradient(135deg, var(--accent-gold),  var(--coffee-tan)); }
.step-circle.s3 { background: linear-gradient(135deg, var(--accent-ember), var(--accent-gold)); }
.step-circle.s4 { background: linear-gradient(135deg, var(--green-eco),    var(--green-light)); }

.step-item h3 { color: var(--coffee-cream); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-item p  { color: rgba(245, 230, 208, 0.5); font-size: 0.8rem; line-height: 1.6; }


/* ── Section: CTA ──────────────────────────────────────────── */
#cta-home {
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee-mid));
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 160, 23, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(74, 124, 89, 0.08) 0%, transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--coffee-cream);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(245, 230, 208, 0.65);
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.85;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── Responsive: Tablet (≤1024px) ─────────────────────────── */
@media (max-width: 1024px) {
  /* Hero: layout 1 kolom */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-top: 6rem;
  }

  .hero-text { align-items: center; }

  /* Judul jadi inline agar tidak terlalu makan baris */
  .hero-title .line-outline,
  .hero-title .accent { display: inline; }
  .hero-title .accent::after { display: none; }

  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }

  /* Section lain */
  .problem-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .sdg-grid      { grid-template-columns: 1fr; }
  .benefit-grid  { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}


/* ── Responsive: Mobile (≤640px) ──────────────────────────── */
@media (max-width: 640px) {
  /* Hero umum */
  .hero-content { padding: 5rem 1rem 3rem; gap: 2rem; }

  /* Card */
  .hero-card-main { padding: 1.8rem 1.2rem 2.8rem; border-radius: 20px; }

  /* Typography */
  .hero-title   { letter-spacing: -0.5px; margin-bottom: 1.2rem; }
  .hero-badge   { font-size: 0.65rem; letter-spacing: 1.5px; padding: 0.4rem 0.9rem 0.4rem 0.6rem; }
  .hero-desc    { font-size: 0.9rem; }

  /* Tombol full width */
  .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-actions a { width: 100%; max-width: 280px; justify-content: center; text-align: center; }

  /* Card stats */
  .hero-card-stats { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .stat-num   { font-size: 1.2rem; }
  .stat-label { font-size: 0.62rem; }

  /* Gambar produk */
  .product-stage { width: 140px; height: 140px; }

  /* Chip kemasan */
  .kemasan-float { left: 12px; bottom: -12px; padding: 0.35rem 0.8rem 0.35rem 0.35rem; }
  .kemasan-float img  { width: 28px; height: 28px; }
  .kemasan-float span { font-size: 0.7rem; }

  /* Badge melayang */
  .fb-1 { font-size: 0.65rem; padding: 0.35rem 0.8rem 0.35rem 0.6rem; right: 12px; }

  /* Section lain */
  .benefit-grid { grid-template-columns: 1fr; }
}


/* ── Responsive: Sangat Kecil (≤380px / iPhone SE) ────────── */
@media (max-width: 380px) {
  .hero-content   { padding: 4.5rem 0.85rem 2.5rem; }
  .hero-card-main { padding: 1.5rem 1rem 2.5rem; border-radius: 16px; }

  .product-stage { width: 120px; height: 120px; }
  .hero-title    { margin-bottom: 1rem; }
  .card-title    { font-size: 1.2rem; }
  .card-sub      { font-size: 0.75rem; }
}

/* ======== SECTION HEADER (center block) ======== */
/* Dipakai di #manfaat-home, #proses-home         */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-label {
  display: block;
  margin-bottom: 0.6rem;
}
.section-header .section-title {
  margin-bottom: 0.8rem;
}
/* Kunci: paksa teks subtitle ter-center & tidak kiri */
.section-header .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 560px;
}