@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #f6f8ff;
  --surface: #fff;
  --surface2: #f1f5ff;
  --text: #0b1220;
  --muted: #526073;
  --brand: #1f5fbf;
  --brand2: #c04f77;
  --warn: #d4a13a;
  --line: rgba(11, 18, 32, .10);
  --line2: rgba(11, 18, 32, .06);
  --shadow: 0 14px 40px rgba(11, 18, 32, .08);
  --radius: 18px;
  --radius2: 26px;
  --max: 1240px;
  --maxWide: 1440px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1000px 720px at 8% 10%, rgba(31, 95, 191, .14), transparent 60%),
    radial-gradient(900px 680px at 92% 18%, rgba(192, 79, 119, .14), transparent 62%),
    radial-gradient(900px 520px at 50% 95%, rgba(212, 161, 58, .10), transparent 65%),
    linear-gradient(180deg, #fff 0%, var(--bg) 42%, #fff 100%);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px
}

.container-wide {
  max-width: var(--maxWide);
  margin: 0 auto;
  padding: 0 14px
}

.section {
  padding: 64px 0
}

@media(min-width:992px) {
  .section {
    padding: 72px 0
  }
}

.section.alt {
  background: linear-gradient(180deg, rgba(31, 95, 191, .05), rgba(192, 79, 119, .03));
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pad {
  padding: 18px
}

@media(min-width:992px) {
  .pad {
    padding: 22px
  }
}

.muted {
  color: var(--muted)
}

.m-0 {
  margin: 0
}

.lp-mt-10 {
  margin-top: 10px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, .12);
  background: rgba(255, 255, 255, .85);
  color: var(--text);
  font-weight: 800;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(11, 18, 32, .18);
  box-shadow: 0 10px 26px rgba(11, 18, 32, .10)
}

.btn.primary {
  background: linear-gradient(135deg, rgba(31, 95, 191, .96), rgba(192, 79, 119, .92));
  border-color: transparent;
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, .55)
}

.btn.sm {
  padding: 9px 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px
}

/* ===== NAVBAR ===== */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid var(--line2);
}

.lp-nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: .2px
}

.lp-brand-text {
  font-size: 15px
}

.lp-logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(31, 95, 191, .12);
}

.lp-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px
}

.lp-link {
  padding: 8px 10px;
  border-radius: 10px
}

.lp-link:hover {
  background: rgba(11, 18, 32, .04);
  color: var(--text)
}

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

.lp-hamburger {
  display: none
}

/* ===== MOBILE DRAWER ===== */
.lp-drawer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 90
}

.lp-drawer.is-open {
  display: block
}

.lp-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45)
}

.lp-drawer-panel {
  position: absolute;
  right: 12px;
  left: 12px;
  top: 12px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lp-drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid var(--line2)
}

.lp-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 10px 14px 14px;
  gap: 6px
}

.lp-drawer-link {
  padding: 12px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 850
}

.lp-drawer-link:hover {
  background: rgba(11, 18, 32, .04);
  color: var(--text)
}

.lp-drawer-cta {
  margin-top: 8px;
  justify-content: center
}

@media(max-width:980px) {
  .lp-menu {
    display: none
  }

  .lp-hamburger {
    display: inline-flex
  }
}

/* ===== HERO ===== */
.lp-hero {
  padding: 54px 0 26px
}

.lp-pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.lp-h1 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -.03em;
  margin: 12px 0 10px;
  font-weight: 950;
}

.lp-lead {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 14px;
  max-width: 980px
}

.lp-hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px
}

.lp-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px
}

.lp-kpi {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .88);
  border-radius: 14px;
  min-width: 240px;
}

.lp-kpi-ico {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 95, 191, .12), rgba(192, 79, 119, .10));
  border: 1px solid rgba(11, 18, 32, .08);
  font-weight: 950;
}

.lp-kpi-title {
  font-weight: 900;
  line-height: 1.15
}

.lp-kpi-sub {
  font-size: 12.5px;
  color: var(--muted)
}

@media(max-width:980px) {
  .lp-kpi {
    min-width: unset;
    width: 100%
  }
}

/* ===== SLIDER FULL WIDTH ===== */
.lp-big-slider {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .88);
  overflow: hidden;
}

.lp-slides {
  display: flex;
  width: calc(100% * var(--lp-slide-count, 1));
  transition: transform .5s ease;
  will-change: transform;
}

.lp-slide {
  width: calc(100% / var(--lp-slide-count, 1));
  padding: 14px;
  min-height: 420px;
}

@media(min-width:992px) {
  .lp-slide {
    padding: 16px;
    min-height: 560px
  }
}

.lp-slide-media {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface2);
}

.lp-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}

.lp-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, .05), rgba(11, 18, 32, .42));
}

.lp-slide-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  max-width: 1080px;
}

.lp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12.5px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
}

.lp-h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.01em
}

.lp-slide-text {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .92);
  font-weight: 600
}

.lp-slide-muted {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 13.5px
}

.lp-slider-controls {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.lp-arrow {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(11, 18, 32, .12);
}

.lp-dots {
  display: flex;
  gap: 8px;
  align-items: center
}

.lp-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .18);
  background: rgba(255, 255, 255, .92);
  cursor: pointer;
}

.lp-dot.is-active {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: transparent
}

/* ===== SECTION HEAD ===== */
.lp-section-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 18px
}

.lp-h2 {
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 10px;
  font-weight: 950;
}

.lp-sub {
  color: var(--muted);
  margin: 0;
  font-size: 15.5px
}

/* ===== ABOUT (ISI KEGIATAN) ===== */
.lp-about-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.35fr .95fr
}

@media(max-width:980px) {
  .lp-about-grid {
    grid-template-columns: 1fr
  }
}

.lp-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px
}

.lp-card-title {
  display: flex;
  align-items: center;
  gap: 10px
}

.lp-ico {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(31, 95, 191, .14), rgba(192, 79, 119, .10));
  border: 1px solid rgba(11, 18, 32, .08);
}

.lp-chip {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 900;
  background: rgba(31, 95, 191, .10);
  border: 1px solid rgba(31, 95, 191, .18);
  color: rgba(11, 18, 32, .86);
}

.lp-text {
  color: var(--muted);
  margin: 0
}

.lp-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.lp-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255, 255, 255, .86);
}

.lp-bullets li:before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(31, 95, 191, .10);
  flex: 0 0 auto;
}

.lp-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px
}

.lp-audience .lp-pill2 {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 900;
  border: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255, 255, 255, .90);
  color: rgba(11, 18, 32, .86);
}

.lp-timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px
}

.lp-time-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255, 255, 255, .86);
}

.lp-badge {
  min-width: 66px;
  text-align: center;
  font-weight: 950;
  font-size: 12.5px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 95, 191, .10);
  border: 1px solid rgba(31, 95, 191, .18);
}

.lp-time-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35
}

.lp-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  opacity: .9
}

/* ===== PRICING (CARD LIKE IMAGE 3, SAME HEIGHT) ===== */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch
}

@media(max-width:980px) {
  .lp-pricing-grid {
    grid-template-columns: 1fr
  }
}

.lp-pricing-grid>.card {
  height: 100%
}

.lp-pricing-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px
}

.lp-price-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px
}

.lp-price-ico {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(31, 95, 191, .16), rgba(192, 79, 119, .10));
  border: 1px solid rgba(11, 18, 32, .08);
  font-weight: 950;
}

.lp-price-title {
  margin: 0;
  font-size: 20px;
  font-weight: 950
}

.lp-table-wrap {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  overflow: auto;
  background: rgba(255, 255, 255, .86)
}

.lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 520px
}

.lp-table th,
.lp-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line2);
  text-align: left
}

.lp-table th {
  color: var(--text);
  font-weight: 950;
  background: rgba(31, 95, 191, .06)
}

.lp-table td {
  color: var(--muted)
}

.lp-table tbody tr:hover td {
  background: rgba(11, 18, 32, .02)
}

.lp-pricing-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px
}

/* Promo Alumni (gold) */
.lp-promo {
  margin: 0 auto 14px;
  border-radius: 22px
}

.lp-promo--alumni {
  background:
    radial-gradient(520px 240px at 18% 30%, rgba(212, 161, 58, .22), transparent 60%),
    radial-gradient(520px 240px at 80% 40%, rgba(31, 95, 191, .16), transparent 60%),
    rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
}

.lp-promo-pad {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px
}

.lp-promo-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0
}

.lp-promo-badge {
  flex: 0 0 auto;
  font-weight: 950;
  font-size: 12.5px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(212, 161, 58, .22);
  border: 1px solid rgba(212, 161, 58, .34);
  color: rgba(11, 18, 32, .88);
}

.lp-promo-title {
  font-weight: 950;
  font-size: 18px;
  line-height: 1.2
}

.lp-promo-sub {
  font-size: 13.5px;
  margin-top: 4px;
  color: var(--muted)
}

.lp-promo-note {
  display: inline-block;
  margin-left: 6px;
  opacity: .9;
  font-size: 12.5px
}

.lp-promo-cta {
  flex: 0 0 auto
}

@media(max-width:980px) {
  .lp-promo-pad {
    flex-direction: column;
    align-items: stretch
  }

  .lp-promo-cta {
    width: 100%
  }
}

/* ===== LOCATION ===== */
.lp-location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch
}

@media(max-width:980px) {
  .lp-location-grid {
    grid-template-columns: 1fr
  }
}

.lp-location-grid>.card {
  height: 100%
}

.lp-loc-card {
  border-radius: 22px
}

.lp-loc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px
}

.lp-loc-title {
  font-weight: 950;
  letter-spacing: .2px
}

.lp-loc-addr {
  margin: 8px 0 12px
}

.lp-loc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px
}

.lp-map {
  width: 100%;
  height: 340px;
  border: 0;
  border-top: 1px solid var(--line2);
  display: block;
  background: var(--surface2)
}

/* ===== FOOTER ===== */
.lp-footer {
  padding: 42px 0 34px;
  border-top: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(255, 255, 255, .65), rgba(255, 255, 255, .90));
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  align-items: start
}

@media(max-width:980px) {
  .lp-footer-grid {
    grid-template-columns: 1fr
  }
}

.lp-footer-card {
  box-shadow: none;
  background: rgba(255, 255, 255, .90);
  border: 1px solid var(--line2)
}

.lp-footer-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px
}

.lp-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px
}

.lp-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line2);
  background: rgba(255, 255, 255, .86);
  color: var(--muted);
  font-weight: 850;
}

.lp-contact:hover {
  color: var(--text);
  background: #fff
}

.lp-contact-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(31, 95, 191, .10);
  flex: 0 0 auto;
}

.lp-footer-hr {
  height: 1px;
  background: var(--line2);
  margin: 18px 0
}

.lp-footer-bottom {
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap
}

/* ===== PRICING TABLE (FLYER STYLE) ===== */
.lp-fee {
  border-radius: 26px
}

.lp-fee-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 14px
}

.lp-fee-title {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.01em
}

.lp-fee-sub {
  font-weight: 700;
  font-size: 13px
}

.lp-fee-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.lp-fee-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  align-items: stretch
}

@media(max-width:980px) {
  .lp-fee-head {
    align-items: flex-start
  }

  .lp-fee-grid {
    grid-template-columns: 1fr
  }
}

.lp-fee-box {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  overflow: hidden;
  height: 100%
}

.lp-fee-box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line2)
}

.lp-fee-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12.5px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .90)
}

.lp-fee-range {
  font-weight: 800;
  font-size: 12.5px;
  color: var(--muted)
}

.lp-fee-table {
  display: block
}

.lp-fee-row {
  display: grid;
  grid-template-columns: 1.25fr .9fr 1fr;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(11, 18, 32, .08);
  font-size: 14px
}

.lp-fee-row:last-child {
  border-bottom: 0
}

.lp-fee-row.head {
  font-weight: 950;
  background: rgba(31, 95, 191, .06);
  color: rgba(11, 18, 32, .92)
}

.lp-fee-row .label {
  font-weight: 850
}

.lp-fee-row .val {
  font-weight: 900
}

.lp-fee-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 700
}

/* tone */
.lp-fee-box.is-early {
  background: rgba(238, 231, 255, .60)
}

.lp-fee-box.is-early .lp-fee-row.head {
  background: rgba(192, 79, 119, .08)
}

.lp-fee-box.is-late {
  background: rgba(224, 255, 240, .58)
}

.lp-fee-box.is-late .lp-fee-row.head {
  background: rgba(31, 95, 191, .08)
}

/* ===== LOGO SLIDER STRIP ===== */
.lp-logo-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 12px
}

.lp-logo-title {
  font-weight: 900;
  color: var(--muted)
}

.lp-logo-strip {
  border-radius: 22px;
  overflow: hidden
}

.lp-logo-strip {
  background: #fff
}

.lp-logo-track {
  display: flex;
  gap: 34px;
  align-items: center;
  padding: 16px 18px;
  width: max-content;
  animation: lpMarquee 22s linear infinite;
}

.lp-logo-item {
  height: 34px;
  display: flex;
  align-items: center;
  opacity: .78;
  filter: saturate(.95)
}

.lp-logo-item img {
  height: 34px;
  width: auto;
  object-fit: contain
}

.lp-logo-strip:hover .lp-logo-track {
  animation-play-state: paused
}

@keyframes lpMarquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ===== BANNER SPOT ===== */
.lp-banner {
  border-radius: 26px;
  overflow: hidden
}

.lp-banner-media {
  position: relative;
  min-height: 200px
}

@media(min-width:992px) {
  .lp-banner-media {
    min-height: 260px
  }
}

.lp-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.lp-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 32, .55), rgba(11, 18, 32, .18))
}

.lp-banner-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  max-width: 980px
}

.lp-banner-title {
  font-size: 28px;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.02em
}

.lp-banner-sub {
  margin-top: 6px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .86);
  font-weight: 650
}


/* ===== GLOBAL WIDTH CONSISTENT ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px
}

.container-wide {
  max-width: var(--maxWide);
  margin: 0 auto;
  padding: 0 18px
}

@media(min-width:1400px) {
  .container-wide {
    padding: 0 22px
  }
}

.section {
  padding: 56px 0
}

@media(min-width:992px) {
  .section {
    padding: 64px 0
  }
}

.lp-section-head {
  margin: 0 auto 16px
}

@media(min-width:992px) {
  .lp-section-head {
    margin: 0 auto 18px
  }
}

.card {
  border-radius: 22px
}

.pad {
  padding: 18px
}

@media(min-width:992px) {
  .pad {
    padding: 22px
  }
}

/* ===== LOGOS: SAME WIDTH + NICER STRIP ===== */
.lp-logo-strip {
  max-width: var(--maxWide);
  margin: 0 auto;
  border-radius: 22px
}

.lp-logo-strip {
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.lp-logo-track {
  padding: 14px 18px
}

.lp-logo-item {
  height: 32px;
  opacity: .85;
  filter: saturate(1)
}

.lp-logo-item img {
  height: 32px
}

/* ===== PRICING TABLE: RED/BLUE HEADER, WHITE BODY, NOT BOLD ===== */
.lp-fee {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.lp-fee-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px
}

.lp-fee-box-top {
  background: #fff
}

.lp-fee-pill {
  font-weight: 800
}

.lp-fee-range {
  font-weight: 700
}

.lp-fee-table {
  background: #fff
}

.lp-fee-row {
  background: #fff;
  font-weight: 500;
}

.lp-fee-row .label {
  font-weight: 500
}

.lp-fee-row .val {
  font-weight: 500
}

.lp-fee-row.head {
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .20);
  background: linear-gradient(135deg, rgba(31, 95, 191, .96), rgba(192, 79, 119, .92));
}

.lp-fee-box.is-early .lp-fee-row.head {
  background: #c81e3a
}

/* merah */
.lp-fee-box.is-late .lp-fee-row.head {
  background: #1f5fbf
}

/* biru */

.lp-fee-box.is-early .lp-fee-box-top .lp-fee-pill {
  border-color: rgba(200, 30, 58, .22);
  background: rgba(200, 30, 58, .08);
}

.lp-fee-box.is-late .lp-fee-box-top .lp-fee-pill {
  border-color: rgba(31, 95, 191, .22);
  background: rgba(31, 95, 191, .08);
}

.lp-fee-row.head>div {
  font-weight: 700
}

.lp-fee-row:not(.head) {
  border-bottom: 1px solid var(--line2)
}

.lp-fee-row:not(.head):hover {
  background: rgba(11, 18, 32, .02)
}

/* biar table rapi & readable */
.lp-fee-row {
  font-size: 14px
}

@media(max-width:520px) {
  .lp-fee-row {
    grid-template-columns: 1.25fr 1fr 1fr
  }
}

/* ===== BANNER: FIXED HEIGHT, IMAGE ONLY, NO OVERLAY ===== */
.lp-banner {
  max-width: var(--maxWide);
  margin: 0 auto;
  border-radius: 22px
}

.lp-banner {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff
}

.lp-banner-media {
  min-height: 0;
  height: 260px
}

@media(min-width:992px) {
  .lp-banner-media {
    height: 320px
  }
}

.lp-banner-overlay {
  display: none
}

.lp-banner-content {
  display: none
}

.lp-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

/* highlight ala google form banner */
.lp-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 22px;
  box-shadow: 0 10px 34px rgba(11, 18, 32, .10);
}

.lp-banner {
  position: relative;
  overflow: hidden
}

/* ===== SLIDER: PORTRAIT FIT MODE (flyer) ===== */
.lp-slide-media.is-portrait {
  background: #0b1220
}

.lp-slide-media.is-portrait .lp-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: blur(22px) saturate(1.05);
  opacity: .55;
}

.lp-slide-media.is-portrait .lp-slide-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 50% 45%, rgba(255, 255, 255, .08), rgba(0, 0, 0, .55));
}

.lp-slide-media.is-portrait .lp-slide-frame {
  position: absolute;
  inset: 14px;
  display: grid;
  place-items: center;
}

.lp-slide-media.is-portrait .lp-slide-img {
  width: auto;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .35);
}

@media(min-width:992px) {
  .lp-slide-media.is-portrait .lp-slide-frame {
    inset: 18px
  }
}

/* ===== SPACING: MORE COMPACT BUT ELEGANT ===== */
.section+.section {
  padding-top: 0
}

.section .card+.card {
  margin-top: 14px
}

.lp-promo {
  margin-bottom: 12px
}

.lp-fee {
  margin-top: 0
}

.lp-location-grid {
  gap: 14px
}

.lp-about-grid {
  gap: 14px
}

/* footer spacing */
.lp-footer {
  padding: 36px 0 30px
}

.lp-footer-hr {
  margin: 16px 0
}

/* ===== FIX GAP: PRICING -> LOCATION ===== */

/* jangan nolkan padding antar section (ini penyebab nempel) */
.section+.section {
  padding-top: 5px
}

@media(min-width:992px) {
  .section+.section {
    padding-top: 5px
  }
}

/* khusus: pricing (#harga) biar background alt tidak kebanyakan "sisa" */
#harga.section {
  padding-bottom: 25px
}

@media(min-width:992px) {
  #harga.section {
    padding-bottom: 25px
  }
}

/* khusus: lokasi (#lokasi) kasih jarak atas sedikit lebih lega */
#lokasi.section {
  padding-top: 5px
}

@media(min-width:992px) {
  #lokasi.section {
    padding-top: 5px
  }
}

/* kalau pricing kamu pakai .section.alt, rapetin juga padding alt */
#harga.section.alt {
  padding-bottom: 5px
}

@media(min-width:992px) {
  #harga.section.alt {
    padding-bottom: 5px
  }
}

/* optional: rapihin jarak bawah note pricing (kalau ada) */
#harga .lp-note {
  margin: 5px 0 0
}

/* ===== LOGO STRIP: TALLER + AUTO FIT LOGO ===== */
.lp-logo-strip {
  border-radius: 22px
}

.lp-logo-track {
  padding: 22px 26px;
  /* tinggi strip naik */
  gap: 44px;
  /* jarak antar logo enak */
}

.lp-logo-item {
  height: 9rem;
  /* tinggi area logo (naik) */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .9;
}

.lp-logo-item img {
  height: 100%;
  /* ikuti tinggi container */
  width: auto;
  max-width: 220px;
  /* cegah logo kepanjangan */
  object-fit: contain;
  /* aman untuk semua logo */
}

/* mobile sedikit lebih kecil biar nggak makan ruang */
@media(max-width:980px) {
  .lp-logo-track {
    padding: 14px 16px;
    gap: 28px
  }

  .lp-logo-item {
    height: 40px
  }

  .lp-logo-item img {
    max-width: 170px
  }
}

/* ===== FIX: HERO TITLE SHOULD START BELOW SLIDER CONTROLS ===== */
.lp-big-slider {
  margin-bottom: 18px
}

@media(min-width:992px) {
  .lp-big-slider {
    margin-bottom: 22px
  }
}

/* kalau masih mepet karena element setelah slider punya margin negatif/0 */
.lp-big-slider+* {
  margin-top: 0
}

/* opsional: tambah ruang aman dalam slider biar caption/control nggak “nabrak” */
.lp-slide {
  padding-bottom: 18px
}

@media(min-width:992px) {
  .lp-slide {
    padding-bottom: 22px
  }
}

/* ===== TIGHTEN GAP: HERO -> LOGOS ===== */
#home.section {
  padding-bottom: 22px
}

@media(min-width:992px) {
  #home.section {
    padding-bottom: px
  }
}

/* kalau section logos punya id (mis: #partners / #logos), rapetin top padding */
#partners.section,
#logos.section {
  padding-top: 18px
}

@media(min-width:992px) {

  #partners.section,
  #logos.section {
    padding-top: 22px
  }
}

/* rapihin margin heading logos */
.lp-logo-head {
  margin-bottom: 10px
}

.lp-logo-title {
  margin: 0
}

/* fallback kalau logos section tepat setelah hero */
#home+.section {
  padding-top: 5px
}

@media(min-width:992px) {
  #home+.section {
    padding-top: 5px
  }
}

/* ===== ABOUT: AUDIENCE GRID (FULLER CARD) ===== */
.lp-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

@media(min-width:992px) {
  .lp-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

.lp-aud-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(11, 18, 32, .06);
}

.lp-aud-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 6px rgba(31, 95, 191, .10);
}

.lp-aud-text {
  font-weight: 800;
  color: rgba(11, 18, 32, .92);
  line-height: 1.2;
}

/* bikin card terasa “penuh” dengan tinggi minimum yang elegan */
#kegiatan .card .lp-audience-grid {
  min-height: 170px
}

@media(min-width:992px) {
  #kegiatan .card .lp-audience-grid {
    min-height: 190px
  }
}

/* ===== COUNTDOWN ===== */
.cd-box {
  background: linear-gradient(135deg, rgba(31, 95, 191, 0.05), rgba(192, 79, 119, 0.05));
  border: 1px solid rgba(192, 79, 119, 0.15);
  border-radius: 16px;
  padding: 16px;
  min-width: 90px;
  width: auto;
  flex: 0 0 auto;
  text-align: center;
  transition: transform 0.3s ease;
}

.cd-box:hover {
  transform: translateY(-5px);
}

.cd-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.cd-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}