:root {
  --site-header-height: 7.75rem;
  --bg-primary: #F7F6F3;
  --bg-secondary: #EFECE7;
  --card-bg: #FFFFFF;
  --text-primary: #1F1F1F;
  --text-secondary: #6B6B6B;
  --border-soft: #E4E1DB;
  --accent-soft: #D6C7B2;
  --brand-logo-color-rgb: 214, 199, 178;
  --brand-logo-color: rgb(var(--brand-logo-color-rgb));
  --btn-dark: #1F1F1F;
  --btn-text: #FFFFFF;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 2px 10px rgba(0,0,0,0.03);
  --shadow-card: 0 4px 18px rgba(0,0,0,0.03);
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
}

.hero-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25), rgba(0,0,0,0.15));
}

.glass-nav {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.72);
  transition: all 0.35s ease;
}

.glass-nav.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-soft);
}

/* Mobile menu */
.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 0.75rem;
  z-index: 60;
}

.mobile-menu-panel.is-open {
  display: block;
  animation: mobileMenuIn 0.25s ease;
}

@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
}

.mobile-menu-link:hover,
.mobile-menu-link.is-active {
  background: var(--bg-secondary);
  font-weight: 600;
}

.mobile-menu-panel__footer {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-soft);
}

.mobile-menu-link--login {
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  margin-inline: auto;
  border-radius: 9999px;
  background: var(--btn-dark);
  color: var(--btn-text);
  justify-content: center;
  font-weight: 600;
}

.mobile-menu-link--login:hover {
  background: #333;
  color: #fff;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 45;
}

.mobile-menu-backdrop.is-open {
  display: block;
}

body.mobile-menu-open {
  overflow: hidden;
}

.soft-card {
  background: var(--card-bg);
  border: 1px solid #E7E3DC;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.soft-card-sm {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.pill-btn {
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.pill-btn:hover { transform: translateY(-2px); }

.pill-btn-dark { background: var(--btn-dark); color: var(--btn-text); }

.header-login-btn,
.header-subscribe-btn {
  padding: 10px 20px;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
}

.header-login-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.header-login-btn__logo {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.header-login-btn__fallback {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.pill-btn-light { background: white; color: var(--text-primary); border: 1px solid var(--border-soft); }
.pill-btn-ghost { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(8px); }

.pill-btn-gold {
  background: linear-gradient(145deg, #E8CF72 0%, #C9A227 48%, #A8841A 100%);
  color: #1F1F1F;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 4px 16px rgba(168, 132, 26, 0.45),
    0 8px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pill-btn-gold:hover {
  background: linear-gradient(145deg, #F2DA82 0%, #D4AF37 48%, #B8922E 100%);
  color: #1F1F1F;
  border-color: #fff;
  box-shadow:
    0 6px 22px rgba(201, 162, 39, 0.55),
    0 12px 32px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.section-space { padding-top: 110px; padding-bottom: 110px; }
.section-space-sm { padding-top: 80px; padding-bottom: 80px; }

.label-caps {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

.label-caps-light {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.divider-line {
  width: 48px;
  height: 2px;
  background: var(--text-primary);
  margin: 20px auto;
}

.hero-full {
  position: relative;
  min-height: 78vh;
  width: 100%;
  overflow: hidden;
}

.hero-full .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content-wrap {
  position: relative;
  z-index: 10;
  min-height: 78vh;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--site-header-height) + 1.25rem);
  padding-left: 7vw;
  padding-right: 7vw;
  padding-bottom: 3rem;
  box-sizing: border-box;
}

.hero-headline {
  font-size: clamp(1.75rem, 4.2vw, 3.85rem);
  line-height: 1.08;
  font-weight: 800;
}

.hero-headline-dark {
  font-size: clamp(1.75rem, 3.5vw, 3.15rem);
  line-height: 1.1;
  font-weight: 800;
}

/* Footer — kolom tengah & kanan */
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.footer-col-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 0.75rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .footer-col-title {
    font-size: 1.5rem;
  }
}

.footer-col-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
}

.footer-social-icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
}

.footer-social-icons .social-icon {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .footer-social-icons {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.625rem;
  }

  .footer-social-icons .social-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 767px) {
  .footer-main-grid .footer-offering {
    order: 2;
  }

  .footer-main-grid .footer-social {
    order: 3;
  }
}

/* Footer — persembahan */
.footer-qris-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.footer-qris-btn:hover {
  background: var(--bg-secondary);
  border-color: #D6C7B2;
  transform: translateY(-1px);
}

.lpg-modal__panel--qris {
  max-width: 340px;
  text-align: center;
}

.lpg-qris-modal__body {
  display: flex;
  justify-content: center;
  padding: 0.25rem 0 0.5rem;
}

.lpg-qris-modal__img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 8px;
}

body.qris-modal-open {
  overflow: hidden;
}

/* Lokasi — tombol arah di atas gambar */
.location-image-wrap {
  position: relative;
}

.location-directions-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.location-directions-overlay .location-directions-btn {
  pointer-events: auto;
  padding: 16px 34px;
  font-size: 15px;
  min-width: 11.5rem;
  justify-content: center;
  color: #fff;
  background: rgba(var(--brand-logo-color-rgb), 0.14);
  border: 2px solid rgba(var(--brand-logo-color-rgb), 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.location-directions-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  background: rgba(var(--brand-logo-color-rgb), 0.24);
  border-color: var(--brand-logo-color);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(var(--brand-logo-color-rgb), 0.35);
}

/* Alamat beranda — ikon pin sejajar baris pertama */
.location-address {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  column-gap: 0.5rem;
  row-gap: 0.125rem;
  align-items: start;
}

.location-address__icon {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 1.25rem;
  height: 1.375rem;
  color: var(--lpg-muted, #6B6B6B);
}

.location-address__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: block;
}

.location-address__line1 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  line-height: 1.375rem;
}

.location-address__more {
  grid-column: 2;
  grid-row: 2;
  line-height: 1.5;
}

.location-address strong {
  word-break: break-word;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
}

.hero-cta-row__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.hero-cta-row__main .pill-btn {
  padding: 11px 18px;
  font-size: 13px;
}

@media (min-width: 521px) {
  .hero-cta-row__main {
    flex-wrap: nowrap;
  }
}

.hero-cta-row__secondary {
  width: 100%;
}

.hero-cta-row .pill-btn {
  flex: 0 1 auto;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .hero-cta-row {
    gap: 0.625rem;
  }

  .hero-cta-row__main {
    gap: 0.625rem;
  }

  .hero-cta-row__main .pill-btn {
    flex: 1 1 calc(50% - 0.3125rem);
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
    white-space: normal;
    text-align: center;
    min-height: 48px;
  }

  .hero-cta-row__main .pill-btn.pill-btn-dark {
    flex: 1 1 100%;
  }

  .hero-cta-row__secondary .pill-btn {
    width: 100%;
    justify-content: center;
  }
}

.nav-link {
  position: relative;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text-primary); }

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text-primary);
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  font-size: 15px;
  background: #FAFAF8;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(214,199,178,0.2);
}

.form-textarea { min-height: 140px; resize: vertical; }

.tab-pill {
  display: inline-flex;
  background: white;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  padding: 4px;
  gap: 4px;
}

.tab-pill button {
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  font-family: inherit;
}

.tab-pill button.active {
  background: var(--btn-dark);
  color: white;
}

.swiper-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.swiper-btn:hover { background: var(--bg-secondary); }

/* Kartu carousel — tinggi seragam (mengikuti slide tertinggi) */
.swiper-community,
.swiper-events,
.swiper-sermons,
.swiper-devotionals,
.swiper-cards {
  overflow: hidden;
  padding-bottom: 4px;
}

.swiper-community .swiper-wrapper,
.swiper-events .swiper-wrapper,
.swiper-sermons .swiper-wrapper,
.swiper-devotionals .swiper-wrapper,
.swiper-cards .swiper-wrapper {
  align-items: stretch;
}

.swiper-community .swiper-slide,
.swiper-events .swiper-slide,
.swiper-sermons .swiper-slide,
.swiper-devotionals .swiper-slide,
.swiper-cards .swiper-slide {
  height: auto;
  display: flex;
}

.lpg-carousel-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.lpg-carousel-card__media {
  flex-shrink: 0;
}

.lpg-carousel-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.lpg-carousel-card__grow {
  flex: 1 1 auto;
}

.lpg-carousel-card__foot {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 1.5rem;
}

.event-slide-card {
  width: 100%;
}

.event-slide-card__image {
  height: 9.5rem;
  overflow: hidden;
}

.slide-card-media-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.slide-card-media-link--cover {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-card-media-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.slide-card-media-link:hover img {
  transform: scale(1.03);
}

.slide-card-media-link:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.event-slide-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.event-slide-card__title {
  font-size: 1rem;
  line-height: 1.35;
}

@media (min-width: 1024px) {
  .event-slide-card__image {
    height: 10.5rem;
  }

  .event-slide-card__title {
    font-size: 1.0625rem;
  }
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Detail page image gallery (sermon / event) */
.detail-gallery {
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
  max-width: 100%;
}

.swiper-gallery {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-gallery .swiper-wrapper {
  height: 100%;
}

.swiper-gallery .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.swiper-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sermon-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sermon-media-preview,
.sermon-media-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sermon-media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sermon-media-player iframe,
.sermon-media-player video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

.sermon-media-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.sermon-media-play:hover {
  background: rgba(0, 0, 0, 0.38);
}

.sermon-media-play__icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #1F1F1F;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.sermon-media-play__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 0.15rem;
}

.sermon-media-preview.is-hidden,
.sermon-media-player.is-hidden {
  display: none !important;
}

.sermon-slide-card {
  width: 100%;
}

.sermon-slide-card__image {
  height: 9.5rem;
  overflow: hidden;
}

.sermon-slide-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.sermon-slide-card__title {
  font-size: 1rem;
  line-height: 1.35;
}

@media (min-width: 1024px) {
  .sermon-slide-card__image {
    height: 10.5rem;
  }

  .sermon-slide-card__title {
    font-size: 1.0625rem;
  }
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.2s;
  text-decoration: none;
}

.social-icon:hover { background: var(--bg-secondary); }

.social-icon__logo {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  display: block;
}

.bg-section-alt { background: var(--bg-secondary); }

.map-grayscale iframe,
.map-grayscale .lpg-osm-map .leaflet-tile-pane {
  filter: grayscale(30%);
  border-radius: var(--radius-lg);
}

.lpg-osm-map {
  z-index: 0;
}

.lpg-map-marker-wrap {
  background: transparent;
  border: none;
}

.lpg-map-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 44px;
  pointer-events: none;
}

.lpg-map-marker__body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #1F1F1F;
  border: 2.5px solid #fff;
  box-shadow:
    0 0 0 1px rgba(31, 31, 31, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.35);
}

.lpg-map-marker__body--fallback {
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.lpg-map-marker__logo {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.lpg-map-marker__point {
  width: 0;
  height: 0;
  margin-top: -1px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #1F1F1F;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.28));
}

.lpg-map-marker__body--fallback + .lpg-map-marker__point {
  border-top-color: #1F1F1F;
}

.lpg-osm-map .leaflet-control-attribution {
  font-size: 10px;
}

.lazy-img { opacity: 0; transition: opacity 0.4s; }
.lazy-img.loaded { opacity: 1; }

/* Logo siluet — halaman Dukungan (desktop saja, lihat hidden lg:flex di komponen) */
.support-logo-panel {
  background: transparent;
}

.support-logo-silhouette {
  filter: brightness(0);
  opacity: 0.1;
  mix-blend-mode: multiply;
}

.support-logo-silhouette-placeholder {
  filter: grayscale(100%);
  color: #1F1F1F;
  opacity: 0.08;
}

@media (min-width: 1024px) {
  .support-logo-silhouette {
    opacity: 0.12;
    max-height: min(75vh, 560px);
  }
}

/* Share modal */
.lpg-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lpg-modal.hidden {
  display: none;
}

.lpg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.lpg-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
}

.lpg-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.lpg-modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.lpg-modal__close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--bg-primary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-secondary);
}

.lpg-modal__subtitle {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  line-height: 1.4;
}

.share-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  background: var(--bg-primary);
  text-decoration: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.share-option:hover {
  background: var(--bg-secondary);
  transform: translateY(-1px);
}

.share-option__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.share-option--wa .share-option__icon {
  background: rgba(37, 211, 102, 0.15);
  color: #128c7e;
}

.share-option--fb .share-option__icon {
  background: rgba(24, 119, 242, 0.12);
  color: #1877f2;
}

.share-option--x .share-option__icon {
  background: rgba(0, 0, 0, 0.08);
  color: #111;
}

.share-option--email .share-option__icon {
  background: rgba(214, 199, 178, 0.35);
  color: #5c5348;
}

.share-option--ig .share-option__icon {
  background: linear-gradient(135deg, rgba(253, 29, 29, 0.12), rgba(131, 58, 180, 0.12), rgba(252, 176, 69, 0.12));
  color: #c13584;
}

.share-option--tiktok .share-option__icon {
  background: rgba(0, 0, 0, 0.08);
  color: #111;
}

.share-option--copy .share-option__icon {
  background: rgba(31, 31, 31, 0.08);
  color: #1f1f1f;
}

.share-option--copy {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
}

.lpg-share-toast {
  margin: 1rem 0 0;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: #ecfdf3;
  color: #166534;
  font-size: 0.8125rem;
  text-align: center;
}

.lpg-share-toast.hidden {
  display: none;
}

/* Konten rich text HTML di halaman publik */
.lpg-rich-content,
.lpg-text-body,
.soft-card p.text-lpg-muted,
p.text-lpg-muted.leading-relaxed,
p.text-lg.leading-relaxed {
  text-align: justify;
  text-justify: inter-word;
}

.lpg-rich-content p {
  margin: 0 0 1em;
}

.lpg-rich-content p:last-child {
  margin-bottom: 0;
}

.lpg-rich-content ul,
.lpg-rich-content ol {
  margin: 0.75em 0;
  padding-left: 1.5em;
}

.lpg-rich-content h2,
.lpg-rich-content h3,
.lpg-rich-content h4 {
  font-weight: 700;
  margin: 1.25em 0 0.5em;
  line-height: 1.3;
  text-align: left;
}

.lpg-rich-content h2 { font-size: 1.35em; }
.lpg-rich-content h3 { font-size: 1.15em; }

.lpg-rich-content blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 3px solid var(--accent-soft);
  color: inherit;
  opacity: 0.9;
}

.lpg-rich-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lpg-rich-content .ql-align-right,
.lpg-rich-content [style*="text-align: right"],
.lpg-rich-content [style*="text-align:right"] {
  text-align: right;
}

.lpg-rich-content .ql-align-justify,
.lpg-rich-content [style*="text-align: justify"],
.lpg-rich-content [style*="text-align:justify"] {
  text-align: justify;
}

.lpg-rich-content .ql-align-center,
.lpg-rich-content [style*="text-align: center"],
.lpg-rich-content [style*="text-align:center"] {
  text-align: center;
}

@media (max-width: 768px) {
  .section-space { padding-top: 70px; padding-bottom: 70px; }
  .hero-content-wrap { padding-left: 5vw; padding-right: 5vw; }
}
