/* ===== Custom Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ===== CSS Variables ===== */
:root {
  --green-900: #0a3d0a;
  --green-800: #145214;
  --green-700: #1a6b1a;
  --green-600: #1e7e1e;
  --green-500: #2e8b2e;
  --green-400: #4caf50;
  --green-300: #81c784;
  --green-200: #a5d6a7;
  --green-100: #c8e6c9;
  --green-50: #e8f5e9;
  --hero-forest: #004d2c;
  --hero-gold: #d4af37;
  --hero-gold-light: #e8c547;
  --hero-text: #4a4a4a;
  --gold-600: #b8860b;
  --gold-500: #d4a017;
  --gold-400: #f0c040;
  --gold-300: #ffd54f;
  --gold-200: #ffe082;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1a1a1a;
  overflow-x: hidden;
  overflow-x: clip;
  background: #fafdf7;
  width: 100%;
  max-width: 100%;
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(26,107,26,0.1);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav-link {
  position: relative;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500));
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--green-700); }
.nav-link:hover::after { width: 100%; }

.nav-konsultasi {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: var(--hero-forest);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 77, 44, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-konsultasi:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 77, 44, 0.32);
  color: #fff !important;
}
.nav-konsultasi__wa {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.mobile-menu .nav-konsultasi--block {
  margin-top: 0.5rem;
  justify-content: center;
  width: min(100%, 280px);
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}

/* ===== Hero Section (brosur — putih / hijau / emas) ===== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero.hero--brochure {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 3rem;
  /* Pola: halftone titik + grid halus (tanpa bentuk besar) */
  background-color: #f2f9f4;
  background-image:
    radial-gradient(circle at center, rgba(0, 77, 44, 0.11) 1px, transparent 1.65px),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.09) 1px, transparent 1.65px),
    linear-gradient(90deg, rgba(0, 77, 44, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(0, 77, 44, 0.04) 1px, transparent 1px),
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 14px,
      rgba(212, 175, 55, 0.028) 14px,
      rgba(212, 175, 55, 0.028) 15px
    );
  background-size:
    22px 22px,
    22px 22px,
    44px 44px,
    44px 44px,
    100% 100%;
  background-position:
    0 0,
    11px 11px,
    0 0,
    0 0,
    0 0;
}
.hero-brochure__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 48%);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.hero-brochure__inner > * {
  min-width: 0;
}
@keyframes hero-enter-from-left {
  from {
    opacity: 0;
    transform: translateX(-52px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes hero-enter-from-right {
  from {
    opacity: 0;
    transform: translateX(52px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-brochure__col--text,
.hero-brochure__col--visual {
  will-change: transform;
}
.hero-col-inner {
  width: 100%;
}
.hero-col-inner--from-left {
  animation: hero-enter-from-left 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.hero-col-inner--from-right {
  animation: hero-enter-from-right 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
@media (prefers-reduced-motion: reduce) {
  .hero-col-inner--from-left,
  .hero-col-inner--from-right {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.hero-brochure__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 4.2vw, 2.65rem);
  line-height: 1.15;
  color: var(--hero-forest);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  max-width: 22ch;
}
.hero-brochure__lead {
  margin-top: 1.25rem;
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.75;
  color: var(--hero-text);
  max-width: 36rem;
}
.hero-brochure__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-top: 1.75rem;
  list-style: none;
  padding: 0;
}
.hero-brochure__feat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--hero-forest);
}
.hero-brochure__feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--hero-forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-brochure__feat-icon svg {
  width: 18px;
  height: 18px;
}
.hero-brochure__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.hero-brochure__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.hero-brochure__btn--primary {
  background: var(--hero-forest);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 77, 44, 0.28);
}
.hero-brochure__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 77, 44, 0.35);
}
.hero-brochure__btn--primary svg {
  width: 1rem;
  height: 1rem;
}
.hero-brochure__btn--secondary {
  background: #fff;
  color: var(--hero-forest);
  border: 2px solid var(--hero-forest);
}
.hero-brochure__btn--secondary:hover {
  background: rgba(0, 77, 44, 0.06);
  transform: translateY(-2px);
}
.hero-brochure__visual {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}
.hero-banner-panel {
  margin: 0;
  width: 100%;
  max-width: min(560px, 100%);
  margin-left: auto;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  line-height: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-banner-panel:hover {
  transform: translateY(-4px);
}
.hero-banner-panel__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(78vh, 640px);
  margin-left: auto;
}
@media (max-width: 1023px) {
  .hero-brochure__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-brochure__title {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-brochure__lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-brochure__features {
    justify-content: center;
  }
  .hero-brochure__actions {
    justify-content: center;
  }
  .hero-brochure__visual {
    justify-content: center;
    margin-top: 1.5rem;
  }
  .hero-banner-panel {
    max-width: 100%;
    margin-right: auto;
  }
  .hero-banner-panel__img {
    max-height: min(70vh, 520px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 480px) {
  .hero.hero--brochure {
    padding-top: 5rem;
  }
  .hero-banner-panel__img {
    max-height: min(65vh, 480px);
  }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212,160,23,0.5);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.stat-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}

/* ===== Parallax BG ===== */
.parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.parallax-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--green-500);
}

/* ===== Section Styles ===== */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.2;
}
.section-subtitle {
  color: #666;
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--green-200);
  margin-bottom: 1rem;
}
.section-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.section-pattern .circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,107,26,0.06);
}

/* ===== Service Cards ===== */
.service-card {
  background: #fff;
  border: 1px solid rgba(26,107,26,0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-50), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(26,107,26,0.12);
  border-color: var(--green-300);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  transform: scale(1.1) rotate(-5deg);
}
.service-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-900);
  margin-bottom: 0.5rem;
  position: relative; z-index: 1;
}
.service-card p {
  font-size: 0.85rem;
  color: #777;
  position: relative; z-index: 1;
}

/* ===== About Section ===== */
.about-section {
  background: linear-gradient(180deg, #fff, var(--green-50));
  position: relative;
}
.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,107,26,0.15);
}
.about-image-wrapper--portrait {
  overflow: visible;
  position: relative;
  isolation: isolate;
  background-color: #f4e8c4;
  background-image:
    radial-gradient(ellipse 100% 90% at 50% 20%, rgba(255, 252, 245, 0.85) 0%, transparent 55%),
    linear-gradient(
      165deg,
      #fdf6e4 0%,
      #f0dfa8 35%,
      #e5cf7a 65%,
      #d9c06a 100%
    );
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 2.5rem);
  min-height: 22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
.about-image-wrapper--portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.45) 1px, transparent 1.55px),
    radial-gradient(circle at center, rgba(180, 140, 40, 0.12) 1px, transparent 1.55px),
    linear-gradient(90deg, rgba(0, 77, 44, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(0, 77, 44, 0.05) 1px, transparent 1px),
    repeating-linear-gradient(
      -32deg,
      transparent,
      transparent 14px,
      rgba(255, 255, 255, 0.22) 14px,
      rgba(255, 255, 255, 0.22) 15px
    );
  background-size:
    22px 22px,
    22px 22px,
    36px 36px,
    36px 36px,
    100% 100%;
  background-position:
    0 0,
    11px 11px,
    0 0,
    0 0,
    0 0;
  opacity: 0.88;
}
.about-image-wrapper--portrait::after {
  content: '';
  position: absolute;
  width: min(340px, 88%);
  aspect-ratio: 1;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 252, 245, 0.65) 0%,
    rgba(240, 210, 130, 0.35) 40%,
    rgba(212, 175, 55, 0.12) 58%,
    transparent 72%
  );
  filter: blur(0.5px);
}
.about-photo-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}
.about-photo-ring {
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  width: min(300px, 100%);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(145deg, #fffef8 0%, #fff 45%, #faf6ee 100%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.65),
    0 0 0 3px rgba(180, 140, 50, 0.2),
    0 14px 36px rgba(120, 90, 20, 0.15),
    0 6px 18px rgba(0, 77, 44, 0.08);
}
.about-image-wrapper:not(.about-image-wrapper--portrait) img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-image-wrapper--portrait .about-photo-img {
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  max-width: none;
  max-height: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}
.about-floating-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  text-align: center;
  z-index: 2;
}
.about-floating-card .number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-400);
}
.about-floating-card .label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ===== Why Us ===== */
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(26,107,26,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--gold-500));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(26,107,26,0.1); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

/* ===== Process Steps ===== */
.process-section {
  background: linear-gradient(135deg, var(--green-900) 0%, #0d4f1c 100%);
  position: relative;
  overflow: hidden;
}
.process-section--compro {
  background: linear-gradient(180deg, #003220 0%, #002818 100%);
  padding-top: 0;
}
.process-compro__head {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  margin-bottom: 2.5rem;
}
.process-compro__eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.75rem;
}
.process-compro__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}
.process-compro__title span {
  color: var(--gold-400);
}
.process-compro__lead {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}
.process-compro__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.process-compro__step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.process-compro__step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.process-compro__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-400), var(--gold-600));
  color: #1a3200;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.process-compro__step h3 {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.process-compro__step p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .process-compro__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .process-compro__steps {
    grid-template-columns: 1fr;
  }
}
.process-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
}
.process-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-8px);
}
.process-step-num {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  margin: 0 auto 1rem;
}
.process-card h3 { color: #fff; font-weight: 700; margin-bottom: 0.5rem; }
.process-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.process-connector {
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
}

/* ===== Pricing ===== */
.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(26,107,26,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: #fff;
  border: none;
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(26,107,26,0.25);
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(26,107,26,0.15); }
.price-card.featured:hover { transform: scale(1.05) translateY(-8px); }
.price-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
}
.price-list { list-style: none; padding: 0; }
.price-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-card.featured .price-list li { border-color: rgba(255,255,255,0.1); }

/* ===== CTA / Kontak ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(158deg, var(--hero-forest) 0%, #023525 46%, #011910 100%);
}
.cta-section::before,
footer.footer-compro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 130% 85% at 8% -5%, rgba(212, 175, 55, 0.16), transparent 52%),
    radial-gradient(ellipse 100% 75% at 102% 108%, rgba(212, 175, 55, 0.11), transparent 48%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 1px, transparent 1.6px),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.045) 1px, transparent 1.6px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    repeating-linear-gradient(
      -30deg,
      transparent,
      transparent 22px,
      rgba(212, 175, 55, 0.038) 22px,
      rgba(212, 175, 55, 0.038) 23px
    );
  background-size:
    100% 100%,
    100% 100%,
    22px 22px,
    22px 22px,
    44px 44px,
    44px 44px,
    100% 100%;
  background-position:
    0 0,
    0 0,
    0 0,
    11px 11px,
    0 0,
    0 0,
    0 0;
}
.cta-section > .particles {
  z-index: 1;
}
.cta-section__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(240, 192, 64, 0.92);
  margin: 0 auto 1.35rem;
}
.cta-section--compro .help-glass {
  position: relative;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
  text-align: center;
  padding: 2.25rem 2rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.cta-section--compro .help-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(42%, 11rem);
  height: 3px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(90deg, transparent, rgba(240, 192, 64, 0.95), transparent);
  opacity: 0.9;
}
.help-glass__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.help-glass__text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.help-glass__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.75rem;
  background: #25d366;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.help-glass__wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  color: #fff !important;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.25rem;
  padding: 2rem 2.25rem 2.35rem;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.contact-grid__h {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 213, 79, 0.95);
  margin-bottom: 1.1rem;
}
.contact-grid__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-grid__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.75rem;
}
.contact-grid__list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-grid__list a:hover {
  color: var(--gold-300);
}
.contact-grid__ic {
  flex-shrink: 0;
}
.contact-grid__muted {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Our Service (layanan) ===== */
.our-service-section {
  background: linear-gradient(180deg, #fff 0%, var(--green-50) 100%);
}
.our-service-section__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.4rem;
}
.our-service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .our-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .our-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.our-service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #fcfdfc;
  background-image:
    radial-gradient(circle at center, rgba(0, 77, 44, 0.1) 1px, transparent 1.55px),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.07) 1px, transparent 1.55px),
    linear-gradient(90deg, rgba(0, 77, 44, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(0, 77, 44, 0.045) 1px, transparent 1px),
    repeating-linear-gradient(
      -28deg,
      transparent,
      transparent 16px,
      rgba(212, 175, 55, 0.035) 16px,
      rgba(212, 175, 55, 0.035) 17px
    );
  background-size:
    20px 20px,
    20px 20px,
    40px 40px,
    40px 40px,
    100% 100%;
  background-position:
    0 0,
    10px 10px,
    0 0,
    0 0,
    0 0;
  border: 1px solid rgba(0, 77, 44, 0.1);
  border-radius: 18px;
  padding: 2.65rem 1.35rem 1.45rem 1.35rem;
  box-shadow: 0 6px 24px rgba(0, 77, 44, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.our-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 85% 55% at 50% -20%, rgba(255, 255, 255, 0.92) 0%, transparent 72%);
}
.our-service-card__num,
.our-service-card__title,
.our-service-card__body {
  position: relative;
  z-index: 1;
}
.our-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 77, 44, 0.1);
}
.our-service-card__num {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 77, 44, 0.1);
}
.our-service-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hero-forest);
  margin: 0 0 0.7rem;
  line-height: 1.35;
  padding-right: 2rem;
}
.our-service-card__body {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
  color: #555;
}
@media (min-width: 1024px) {
  .our-service-card--wide {
    grid-column: 1 / -1;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
.printing-supply {
  margin-top: 2.5rem;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(135deg, #002818, #004d2c);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 40px rgba(0, 77, 44, 0.12);
}
.printing-supply__brand {
  margin: 0 0 0.6rem;
  font-size: 0.88rem;
  color: #fff;
}
.printing-supply__brand span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.printing-supply__text {
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Layanan / produk (company profile) ===== */
.services-compro {
  background: linear-gradient(180deg, var(--green-50), #fff);
}
.service-icon-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.35rem;
  margin-bottom: 2.5rem;
}
.service-icon-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.72rem 0.75rem;
  min-width: 4.75rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--hero-forest);
  border: 1px solid rgba(0, 77, 44, 0.1);
  background: rgba(255, 255, 255, 0.9);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.service-icon-strip__item:hover {
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 77, 44, 0.1);
  transform: translateY(-3px);
}
.service-icon-strip__svg {
  width: 2rem;
  height: 2rem;
  color: var(--hero-forest);
}
.service-icon-strip__svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.service-icon-strip__lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  max-width: 5.5rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
@media (min-width: 1100px) {
  .product-grid--wide {
    grid-template-columns: repeat(3, 1fr);
  }
}
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 77, 44, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  scroll-margin-top: 6rem;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 77, 44, 0.12);
  border-color: rgba(0, 77, 44, 0.15);
}
.product-card__visual {
  height: 150px;
  position: relative;
  overflow: hidden;
}
.product-card__visual--kalender,
.product-card__visual--brosur,
.product-card__visual--flyer,
.product-card__visual--katalog,
.product-card__visual--packaging,
.product-card__visual--kartu,
.product-card__visual--kop,
.product-card__visual--memo,
.product-card__visual--stiker,
.product-card__visual--spanduk,
.product-card__visual--roll,
.product-card__visual--merch {
  height: 178px;
  background: #eef5f0;
}
.product-card__visual--kalender .product-card__thumb,
.product-card__visual--brosur .product-card__thumb,
.product-card__visual--flyer .product-card__thumb,
.product-card__visual--katalog .product-card__thumb,
.product-card__visual--packaging .product-card__thumb,
.product-card__visual--kartu .product-card__thumb,
.product-card__visual--kop .product-card__thumb,
.product-card__visual--memo .product-card__thumb,
.product-card__visual--stiker .product-card__thumb,
.product-card__visual--spanduk .product-card__thumb,
.product-card__visual--roll .product-card__thumb,
.product-card__visual--merch .product-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.product-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hero-forest);
  padding: 1.1rem 1.25rem 0;
  margin: 0;
}
.product-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #5a5a5a;
  padding: 0.65rem 1.25rem 1.25rem;
  margin: 0;
}

/* Modal detail produk */
#produk .product-card {
  cursor: pointer;
}
#produk .product-card:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
}
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.product-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 24, 14, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.product-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 880px;
  width: 100%;
  max-height: min(90vh, 720px);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 77, 44, 0.12);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.product-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--hero-forest);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}
.product-modal__close:hover {
  background: #fff;
  transform: scale(1.05);
}
.product-modal__media {
  background: linear-gradient(160deg, #eef5f0, #f8faf8);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 1rem;
}
.product-modal__media img {
  width: 100%;
  max-height: min(42vh, 320px);
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}
.product-modal__body {
  padding: 1.75rem 1.75rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  overflow-y: auto;
}
.product-modal__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--hero-forest);
  margin: 0;
  line-height: 1.25;
  padding-right: 2.25rem;
}
.product-modal__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #5a5a5a;
}
.product-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}
.product-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-modal__btn--primary {
  background: linear-gradient(135deg, var(--hero-forest), #023d24);
  color: #fff !important;
  border: 1px solid rgba(0, 77, 44, 0.25);
  box-shadow: 0 6px 20px rgba(0, 77, 44, 0.22);
}
.product-modal__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 77, 44, 0.28);
  color: #fff !important;
}
.product-modal__btn--wa {
  background: #25d366;
  color: #fff !important;
  border: 1px solid rgba(37, 211, 102, 0.5);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
}
.product-modal__btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.38);
  color: #fff !important;
}
@media (max-width: 720px) {
  .product-modal__dialog {
    grid-template-columns: 1fr;
    max-height: min(92vh, 640px);
  }
  .product-modal__media img {
    max-height: 36vh;
  }
  .product-modal__body {
    padding: 1.35rem 1.25rem 1.5rem;
  }
  .product-modal__actions {
    flex-direction: column;
  }
  .product-modal__btn {
    width: 100%;
  }
}

/* Visi & Misi */
.visimi-card {
  background: linear-gradient(135deg, #f6fbf8, #fff);
  border: 1px solid rgba(0, 77, 44, 0.1);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  box-shadow: 0 8px 30px rgba(0, 77, 44, 0.05);
}
.visimi-card__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
}
.visimi-card__text {
  color: #444;
  line-height: 1.75;
  font-size: 0.95rem;
  margin: 0;
}
.visimi-card__list {
  margin: 0;
  padding-left: 1.1rem;
  color: #444;
  font-size: 0.92rem;
  line-height: 1.7;
}
.visimi-card__list li {
  margin-bottom: 0.5rem;
}

/* Klien & marquee mitra */
.clients-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  border-top: 1px solid rgba(0, 77, 44, 0.08);
  border-bottom: 1px solid rgba(0, 77, 44, 0.08);
  background-color: #f5fbf7;
  background-image:
    radial-gradient(circle at center, rgba(0, 77, 44, 0.06) 1px, transparent 1.55px),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 1px, transparent 1.55px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, transparent 35%, transparent 65%, rgba(232, 245, 233, 0.5) 100%);
  background-size:
    22px 22px,
    22px 22px,
    100% 100%;
  background-position:
    0 0,
    11px 11px,
    0 0;
}
.clients-section__header {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.clients-section__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 0.65rem;
}
.clients-section__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--hero-forest);
  margin: 0;
}
.clients-section__title::after {
  content: '';
  display: block;
  width: min(6rem, 36vw);
  height: 4px;
  margin: 1.1rem auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.95), rgba(0, 77, 44, 0.35), transparent);
}
.clients-section__lead {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.65;
  color: rgba(55, 71, 62, 0.82);
  margin: 1rem 0 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.clients-marquee {
  overflow: hidden;
  padding: 0.35rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-marquee__track {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  width: max-content;
  animation: clientsMarquee 55s linear infinite;
}
.clients-marquee__track span {
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.92rem, 1.65vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--hero-forest);
  white-space: nowrap;
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 77, 44, 0.12);
  border-radius: 999px;
  box-shadow:
    0 4px 18px rgba(0, 77, 44, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
@keyframes clientsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .clients-marquee__track {
    animation-duration: 120s;
  }
}

/* ===== Footer (selaras section Hubungi kami) ===== */
footer.footer-compro {
  position: relative;
  overflow: hidden;
  /* Lanjutan tonal dari bawah section kontak */
  background: linear-gradient(180deg, #011910 0%, #020a07 52%, #010604 100%);
  color: rgba(255, 255, 255, 0.78);
}
footer.footer-compro .max-w-7xl {
  position: relative;
  z-index: 1;
}
.footer-compro__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-compro__h {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 213, 79, 0.95);
  margin-bottom: 1rem;
}
.footer-compro__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
}
.footer-compro__list li {
  margin-bottom: 0.5rem;
}
.footer-compro a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-compro a:hover {
  color: rgba(255, 213, 79, 0.98);
}
.footer-compro__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-compro__soc {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.footer-compro__soc:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff !important;
}
.footer-compro__bottom {
  margin-top: 2.75rem;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(212, 175, 55, 0.06);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.48);
}
@media (max-width: 900px) {
  .footer-compro__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .footer-compro__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Floating Particles ===== */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ===== Marquee ===== */
.marquee-band {
  position: relative;
  padding: 0.875rem 0;
  background-color: #e9f5ef;
  background-image:
    radial-gradient(circle at center, rgba(0, 77, 44, 0.07) 1px, transparent 1.55px),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 1px, transparent 1.55px),
    linear-gradient(90deg, rgba(0, 77, 44, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(0, 77, 44, 0.035) 1px, transparent 1px);
  background-size: 20px 20px, 20px 20px, 36px 36px, 36px 36px;
  background-position: 0 0, 10px 10px, 0 0, 0 0;
  border-top: 1px solid rgba(0, 77, 44, 0.07);
  border-bottom: 1px solid rgba(0, 77, 44, 0.07);
}
.marquee-band__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.55), rgba(0, 77, 44, 0.35), rgba(212, 175, 55, 0.55), transparent);
  opacity: 0.9;
  pointer-events: none;
}
.marquee-band__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.marquee-band__edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(100px, 12vw);
  z-index: 2;
  pointer-events: none;
}
.marquee-band__edge--left {
  left: 0;
  background: linear-gradient(90deg, #e9f5ef 0%, rgba(233, 245, 239, 0) 100%);
}
.marquee-band__edge--right {
  right: 0;
  background: linear-gradient(-90deg, #e9f5ef 0%, rgba(233, 245, 239, 0) 100%);
}
.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-duration: 120s;
  }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem 0.4rem 0.45rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 77, 44, 0.1);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 77, 44, 0.04), 0 4px 12px rgba(0, 77, 44, 0.05);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #004d2c;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-item__ic {
  width: 1.65rem;
  height: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  line-height: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(0, 77, 44, 0.08));
  border: 1px solid rgba(0, 77, 44, 0.06);
}

/* ===== Counter animation ===== */
.count-up { display: inline-block; }

/* ===== Scroll Progress ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-500), var(--gold-500));
  z-index: 1001;
  transition: width 0.1s;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,61,10,0.97);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(26,107,26,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== Responsive ===== */
@media (max-width: 1023px) {
  #tentang .max-w-7xl.grid > .reveal-left {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  .about-image-wrapper--portrait {
    min-height: auto;
    padding-top: clamp(1.75rem, 5vw, 2.75rem);
    padding-bottom: clamp(1.75rem, 5vw, 2.75rem);
  }
}
@media (max-width: 768px) {
  .desktop-nav { display: none !important; }
  .mobile-toggle { display: flex !important; }
  .process-connector { display: none; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-8px); }
  .about-floating-card { position: relative; bottom: 0; right: 0; margin-top: 1rem; }
  .about-photo-ring {
    width: min(300px, 100%);
  }
  .product-grid,
  .our-service-grid,
  .contact-grid {
    min-width: 0;
  }
  .product-card {
    max-width: 100%;
    min-width: 0;
  }
  .service-icon-strip {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.35rem;
  }
}
@media (min-width: 769px) {
  .mobile-toggle { display: none !important; }
}

#produk-packaging {
  padding-bottom: 40px;
}