:root {
  --lp-ink: #071326;
  --lp-muted: #5e6a7d;
  --lp-line: #dfe8e3;
  --lp-paper: #ffffff;
  --lp-soft: #f4faf7;
  --lp-green: #087a4b;
  --lp-green-2: #13a56d;
  --lp-teal: #0f8a8f;
  --lp-gold: #c99532;
  --lp-blue: #183b73;
  --lp-shadow: 0 18px 45px rgba(7, 19, 38, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  color: var(--lp-ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 42%, #ffffff 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.lp-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 232, 227, 0.8);
  backdrop-filter: blur(16px);
}

.lp-navbar {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.lp-brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(7, 19, 38, 0.14);
  background: #fff;
}

.lp-brand-title {
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--lp-green);
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-brand-subtitle {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 800;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  color: #415066;
}

.lp-nav a,
.lp-footer a {
  color: inherit;
  text-decoration: none;
}

.lp-nav a:hover,
.lp-footer a:hover {
  color: var(--lp-green);
}

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

.lp-btn {
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  color: var(--lp-ink);
  background: var(--lp-paper);
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.lp-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--lp-green), var(--lp-green-2));
  box-shadow: 0 15px 32px rgba(8, 122, 75, 0.26);
}

.lp-btn-outline {
  color: var(--lp-green);
  border: 1px solid rgba(8, 122, 75, 0.36);
  background: #fff;
}

.lp-btn-quiet {
  color: var(--lp-blue);
  border: 1px solid var(--lp-line);
  background: #fff;
}

.lp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.lp-mobile-toggle {
  display: none;
}

.lp-hero {
  padding: 78px 0 88px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 62px;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--lp-green);
  background: #ecf8f1;
  border: 1px solid #d6f0df;
  font-size: 13px;
  font-weight: 900;
}

.lp-hero h1 {
  margin: 22px 0 20px;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0;
}

.lp-hero h1 span {
  color: var(--lp-green);
}

.lp-hero-text {
  margin: 0 0 28px;
  max-width: 610px;
  color: var(--lp-muted);
  font-size: 17px;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 38px;
}

.lp-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
}

.lp-stat {
  padding: 18px 18px 17px;
  border-left: 1px solid var(--lp-line);
}

.lp-stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.lp-stat-icon {
  color: var(--lp-green);
  margin-bottom: 8px;
}

.lp-stat strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.lp-stat span {
  display: block;
  margin-top: 5px;
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 700;
}

.lp-hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
}

.lp-photo-panel {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(7, 19, 38, 0.12), rgba(8, 122, 75, 0.18)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1100&q=82");
  background-position: center;
  background-size: cover;
  box-shadow: var(--lp-shadow);
}

.lp-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(7, 19, 38, 0.42), rgba(7, 19, 38, 0.04) 52%),
    linear-gradient(120deg, rgba(8, 122, 75, 0.34), transparent 54%);
}

.lp-visual-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  color: #fff;
}

.lp-visual-label span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.86;
}

.lp-visual-label strong {
  display: block;
  margin-top: 4px;
  font-size: 23px;
}

.lp-floating-card {
  position: absolute;
  z-index: 2;
  width: 214px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(223, 232, 227, 0.9);
  box-shadow: var(--lp-shadow);
}

.lp-floating-card.is-top {
  top: 42px;
  left: -24px;
}

.lp-floating-card.is-middle {
  right: -20px;
  top: 218px;
}

.lp-floating-card.is-bottom {
  left: 42px;
  bottom: 18px;
}

.lp-floating-card span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 800;
}

.lp-floating-card strong {
  display: block;
  margin-top: 8px;
  color: var(--lp-ink);
  font-size: 22px;
  line-height: 1.2;
}

.lp-floating-card small {
  display: block;
  margin-top: 5px;
  color: var(--lp-green);
  font-weight: 900;
}

.lp-section {
  padding: 74px 0;
  scroll-margin-top: 96px;
}

.lp-section-soft {
  background: linear-gradient(180deg, #f6fbf8, #ffffff);
}

.lp-section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.lp-section-kicker {
  margin: 0 0 8px;
  color: var(--lp-green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-section-head h2 {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.16;
}

.lp-section-head p {
  margin: 0;
  color: var(--lp-muted);
}

.lp-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lp-service-card,
.lp-partner-card,
.lp-member-card,
.lp-info-card,
.lp-contact-card {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7, 19, 38, 0.06);
}

.lp-service-card {
  min-height: 250px;
  padding: 26px 22px;
}

.lp-service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: var(--lp-green);
  background: #ecf8f1;
}

.lp-service-card:nth-child(2) .lp-service-icon {
  color: var(--lp-blue);
  background: #eef4ff;
}

.lp-service-card:nth-child(3) .lp-service-icon {
  color: var(--lp-teal);
  background: #ebfafa;
}

.lp-service-card:nth-child(4) .lp-service-icon {
  color: var(--lp-gold);
  background: #fff7e7;
}

.lp-service-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.lp-service-card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
}

.lp-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--lp-green);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
}

.lp-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.lp-info-stack {
  display: grid;
  gap: 14px;
}

.lp-info-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 18px;
}

.lp-info-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--lp-green);
  background: #ecf8f1;
}

.lp-info-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.lp-info-card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
}

.lp-about-copy h2 {
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.18;
}

.lp-about-copy p {
  margin: 0 0 18px;
  color: var(--lp-muted);
}

.lp-check-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 800;
}

.lp-check-list .lp-icon {
  color: var(--lp-green);
  margin-top: 3px;
}

.lp-member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lp-partner-section {
  padding-top: 58px;
  padding-bottom: 62px;
}

.lp-partner-head {
  margin-bottom: 24px;
}

.lp-partner-head h2 {
  font-size: 34px;
}

.lp-partner-slider {
  --partner-gap: 8px;
  --partner-visible: 6;
}

.lp-partner-viewport {
  overflow: hidden;
  padding: 2px 0 4px;
}

.lp-partner-track {
  display: flex;
  gap: var(--partner-gap);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.lp-partner-card {
  flex: 0 0 calc((100% - (var(--partner-gap) * (var(--partner-visible) - 1))) / var(--partner-visible));
  height: 108px;
  min-height: 108px;
  display: grid;
  place-items: center;
  padding: 16px;
}

.lp-partner-logo {
  width: 100%;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--lp-green);
  background: transparent;
  border: 0;
}

.lp-partner-logo-img {
  display: block;
  width: 132px;
  height: 54px;
  object-fit: contain;
}

.lp-logo-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 54px;
  color: var(--lp-green);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-align: center;
}

.lp-partner-logo.bsi .lp-logo-wordmark {
  color: #14a99a;
  font-size: 38px;
}

.lp-partner-logo.pegadaian .lp-logo-wordmark {
  color: var(--lp-green);
  font-size: 22px;
}

.lp-partner-logo.pos .lp-logo-wordmark {
  color: #f27a1a;
  font-size: 16px;
  text-transform: uppercase;
}

.lp-partner-logo.alfamart .lp-logo-wordmark {
  color: #136cc7;
  font-size: 23px;
}

.lp-partner-logo.bpjs .lp-logo-wordmark {
  color: #16835d;
  font-size: 17px;
}

.lp-partner-logo.pertamina .lp-logo-wordmark {
  color: #111827;
  font-size: 19px;
  text-transform: uppercase;
}

.lp-partner-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.lp-partner-dots button {
  width: 28px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #dce3e0;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.lp-partner-dots button.is-active {
  width: 32px;
  background: var(--lp-green);
}

.lp-member-card {
  padding: 24px;
}

.lp-quote-icon {
  color: #b7dfca;
  margin-bottom: 14px;
}

.lp-member-card p {
  margin: 0 0 22px;
  color: var(--lp-muted);
  font-size: 14px;
}

.lp-member-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-member-person {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.lp-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-green), var(--lp-blue));
  font-weight: 900;
}

.lp-member-person strong,
.lp-member-person span {
  display: block;
  max-width: 160px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-member-person strong {
  line-height: 1.2;
}

.lp-member-person span {
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 800;
}

.lp-stars {
  display: flex;
  gap: 2px;
  color: #f0b429;
  flex: 0 0 auto;
}

.lp-cta {
  padding: 78px 0;
}

.lp-cta-panel {
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 105, 65, 0.96), rgba(18, 145, 96, 0.94)),
    url("../img/blur-background04.jpg");
  background-size: cover;
  box-shadow: 0 24px 56px rgba(8, 122, 75, 0.22);
}

.lp-cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 44px;
}

.lp-cta h2 {
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.17;
}

.lp-cta p {
  margin: 0;
  opacity: 0.9;
}

.lp-cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-cta .lp-btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.lp-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-contact-card {
  min-height: 132px;
  padding: 20px;
}

.lp-contact-card .lp-icon {
  color: var(--lp-green);
  margin-bottom: 12px;
}

.lp-contact-card span {
  display: block;
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-contact-card strong {
  display: block;
  margin-top: 5px;
  line-height: 1.35;
}

.lp-footer {
  padding: 54px 0 0;
  background: #fff;
  border-top: 1px solid var(--lp-line);
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1.1fr;
  gap: 34px;
  padding-bottom: 42px;
}

.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.lp-footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-footer h3 {
  margin: 0 0 14px;
  font-size: 16px;
}

.lp-footer p,
.lp-footer li {
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
}

.lp-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-footer-bottom {
  padding: 18px 0;
  border-top: 1px solid var(--lp-line);
  color: var(--lp-muted);
  font-size: 13px;
  text-align: center;
}

.lp-back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--lp-line);
  border-radius: 50%;
  color: var(--lp-green);
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 19, 38, 0.12);
}

@media (max-width: 1080px) {
  .lp-nav {
    gap: 18px;
  }

  .lp-hero-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-visual {
    min-height: 470px;
  }

  .lp-service-grid,
  .lp-partner-grid,
  .lp-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .lp-container {
    width: min(100% - 28px, 1180px);
  }

  .lp-navbar {
    min-height: 76px;
  }

  .lp-nav {
    display: none;
  }

  .lp-nav-action .lp-btn-quiet {
    display: none;
  }

  .lp-mobile-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
  }

  .lp-brand-title {
    max-width: 190px;
    font-size: 15px;
  }

  .lp-brand-subtitle {
    font-size: 10px;
  }

  .lp-hero {
    padding: 42px 0 62px;
  }

  .lp-hero h1 {
    font-size: 38px;
  }

  .lp-hero-text {
    font-size: 15px;
  }

  .lp-stat-row,
  .lp-partner-grid,
  .lp-member-grid,
  .lp-about-grid,
  .lp-cta-inner,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-stat-row {
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    overflow: hidden;
  }

  .lp-stat,
  .lp-stat:first-child {
    border-left: 0;
    border-top: 1px solid var(--lp-line);
    padding: 16px;
  }

  .lp-stat:first-child {
    border-top: 0;
  }

  .lp-floating-card {
    position: relative;
    width: 100%;
    margin-top: 0;
  }

  .lp-floating-card.is-top,
  .lp-floating-card.is-middle,
  .lp-floating-card.is-bottom {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .lp-photo-panel {
    min-height: 330px;
  }

  .lp-hero-visual {
    min-height: 0;
    display: grid;
    gap: 12px;
    width: 100%;
    overflow: hidden;
  }

  .lp-section {
    padding: 56px 0;
  }

  .lp-section-head h2,
  .lp-about-copy h2,
  .lp-cta h2 {
    font-size: 30px;
  }

  .lp-cta-inner {
    padding: 28px;
  }

  .lp-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .lp-nav-action .lp-btn-primary {
    display: none;
  }

  .lp-hero-actions,
  .lp-cta-actions {
    display: grid;
  }

  .lp-btn {
    width: 100%;
  }

  .lp-navbar .lp-nav-action .lp-btn {
    width: 44px;
    min-height: 44px;
    padding: 0;
    overflow: hidden;
  }

  .lp-navbar .lp-nav-action .lp-btn-label {
    display: none;
  }

  .lp-navbar .lp-nav-action .lp-icon {
    margin: 0;
  }

.lp-back-top {
  width: 44px;
  min-height: 44px;
}

  .lp-service-grid,
  .lp-partner-grid,
  .lp-contact-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero h1 {
    font-size: 32px;
  }

  .lp-photo-panel {
    min-height: 270px;
  }

  .lp-floating-card {
    padding: 14px 16px;
  }

  .lp-floating-card strong {
    font-size: 21px;
  }

  .lp-visual-label strong {
    font-size: 18px;
  }
}

.lp-payment-page {
  min-height: 100vh;
}

.lp-payment-main {
  overflow: hidden;
}

.lp-payment-hero {
  padding: 58px 0 46px;
  background:
    linear-gradient(135deg, rgba(236, 248, 241, 0.92), rgba(235, 250, 250, 0.9)),
    linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
}

.lp-payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: stretch;
  gap: 28px;
}

.lp-payment-grid > *,
.lp-payment-detail-grid > * {
  min-width: 0;
}

.lp-payment-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
}

.lp-payment-copy h1 {
  max-width: 760px;
  margin: 22px 0 16px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

.lp-payment-copy p {
  max-width: 700px;
  margin: 0;
  color: var(--lp-muted);
  font-size: 17px;
}

.lp-payment-status {
  width: fit-content;
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid rgba(8, 122, 75, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.lp-payment-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-payment-status strong {
  font-size: 18px;
}

.lp-payment-countdown,
.lp-payment-panel {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lp-shadow);
}

.lp-payment-countdown {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 30px;
}

.lp-countdown-label {
  color: var(--lp-green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-countdown-time {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  margin: 18px 0 8px;
}

.lp-countdown-time span {
  position: relative;
  min-width: 0;
  min-height: 76px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-green), var(--lp-teal));
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.lp-countdown-time i {
  display: none;
}

.lp-countdown-units {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  color: var(--lp-muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.lp-payment-countdown p {
  margin: 20px 0 0;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-payment-countdown.is-expired .lp-countdown-time span {
  background: linear-gradient(135deg, #8a2632, #c99532);
}

.lp-payment-lock-card {
  align-items: flex-start;
  gap: 16px;
}

.lp-payment-lock-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
}

.lp-payment-lock-card p {
  margin-top: 0;
}

.lp-lock-icon {
  width: 54px;
  height: 54px;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-green), #0f9f6f);
}

.lp-payment-lock-card.is-expired .lp-lock-icon {
  background: linear-gradient(135deg, #8a2632, #c99532);
}

.lp-payment-lock-card.is-pending .lp-lock-icon {
  background: linear-gradient(135deg, var(--lp-blue), var(--lp-teal));
}

.lp-lock-meta {
  width: 100%;
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #f8fbf9;
}

.lp-lock-meta span {
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-lock-meta strong {
  color: var(--lp-dark);
  font-size: 18px;
}

.lp-expired-panel {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.lp-expired-panel h2 {
  margin: 4px 0 8px;
  font-size: 28px;
  line-height: 1.16;
}

.lp-expired-panel p {
  margin: 0;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-expired-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--lp-green);
}

.lp-payment-section {
  padding-top: 44px;
}

.lp-payment-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 22px;
}

.lp-payment-panel {
  padding: 28px;
}

.lp-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.lp-panel-head h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.18;
}

.lp-panel-head > .lp-icon {
  width: 34px;
  height: 34px;
  color: var(--lp-green);
}

.lp-payment-total {
  display: grid;
  gap: 5px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 19, 38, 0.16), transparent),
    linear-gradient(135deg, var(--lp-green), var(--lp-teal));
}

.lp-payment-total strong {
  font-size: 38px;
  line-height: 1.05;
}

.lp-payment-total span {
  font-weight: 800;
  opacity: 0.9;
}

.lp-payment-lines {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  overflow: hidden;
}

.lp-payment-saved {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 122, 75, 0.2);
  border-radius: 8px;
  color: var(--lp-green);
  background: #ecf8f1;
  font-size: 13px;
  font-weight: 900;
}

.lp-payment-error {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(138, 38, 50, 0.2);
  border-radius: 8px;
  color: #8a2632;
  background: #fff4f5;
  font-size: 13px;
  font-weight: 900;
}

.lp-period-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(8, 122, 75, 0.2);
  border-radius: 8px;
  background: #f8fcfa;
}

.lp-period-form label {
  color: var(--lp-green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-period-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.lp-period-control select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  color: var(--lp-ink);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
}

.lp-payment-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 54px;
  padding: 13px 16px;
  border-top: 1px solid var(--lp-line);
}

.lp-payment-lines div:first-child {
  border-top: 0;
}

.lp-payment-lines span {
  color: var(--lp-muted);
  font-weight: 800;
}

.lp-payment-lines strong {
  white-space: nowrap;
}

.lp-bank-card {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 22px;
  border: 1px solid rgba(8, 122, 75, 0.2);
  border-radius: 8px;
  background: #f4faf7;
}

.lp-bank-choice {
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.lp-bank-choice:hover,
.lp-bank-choice.is-selected {
  border-color: rgba(8, 122, 75, 0.48);
  box-shadow: 0 14px 30px rgba(8, 122, 75, 0.1);
}

.lp-bank-choice.is-selected {
  background:
    linear-gradient(135deg, rgba(8, 122, 75, 0.09), rgba(15, 138, 143, 0.05)),
    #f4faf7;
  outline: 2px solid rgba(8, 122, 75, 0.18);
}

.lp-bank-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lp-bank-choice-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  color: rgba(8, 122, 75, 0.34);
}

.lp-bank-choice.is-selected .lp-bank-choice-icon {
  color: var(--lp-green);
}

.lp-bank-selected-badge {
  display: none;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-green), var(--lp-teal));
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-bank-selected-badge .lp-icon {
  width: 13px;
  height: 13px;
}

.lp-bank-choice.is-selected .lp-bank-selected-badge {
  display: inline-flex;
}

.lp-copy-button {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(24, 59, 115, 0.18);
  border-radius: 999px;
  color: var(--lp-blue);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.lp-copy-button .lp-icon {
  width: 16px;
  height: 16px;
}

.lp-copy-button.is-copied {
  color: #fff;
  border-color: rgba(8, 122, 75, 0.2);
  background: linear-gradient(135deg, var(--lp-green), var(--lp-teal));
}

.lp-bank-list {
  display: grid;
  gap: 12px;
}

.lp-bank-card span,
.lp-bank-card small {
  color: var(--lp-muted);
  font-weight: 800;
}

.lp-bank-card strong {
  color: var(--lp-green);
  font-size: 32px;
  line-height: 1.1;
  word-break: break-word;
}

.lp-qris-button {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(8, 122, 75, 0.22);
  border-radius: 999px;
  color: var(--lp-green);
  background: #eef9f4;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.lp-qris-button .lp-icon {
  width: 16px;
  height: 16px;
}

.lp-modal-open {
  overflow: hidden;
}

.lp-qris-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lp-qris-modal.is-open {
  display: flex;
}

.lp-qris-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 38, 0.58);
  backdrop-filter: blur(8px);
}

.lp-qris-dialog {
  position: relative;
  width: min(430px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 19, 38, 0.28);
}

.lp-qris-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  color: var(--lp-muted);
  background: #fff;
  cursor: pointer;
}

.lp-qris-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 42px;
  margin-bottom: 18px;
}

.lp-qris-head > .lp-icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-green), var(--lp-teal));
}

.lp-qris-head span {
  color: var(--lp-green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-qris-head h2 {
  margin: 2px 0 0;
  font-size: 22px;
  line-height: 1.15;
}

.lp-qris-dialog img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #f8fbf9;
}

.lp-qris-dialog p {
  margin: 14px 0 0;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-payment-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--lp-blue);
  font-size: 14px;
  font-weight: 800;
}

.lp-payment-note .lp-icon {
  margin-top: 2px;
  color: var(--lp-gold);
}

.lp-upload-panel {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7, 19, 38, 0.06);
}

.lp-upload-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.lp-upload-form label {
  color: var(--lp-green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-upload-form input[type="file"] {
  width: 100%;
  min-height: 48px;
  padding: 11px;
  border: 1px dashed rgba(8, 122, 75, 0.35);
  border-radius: 8px;
  background: #f8fcfa;
  color: var(--lp-muted);
  font-family: inherit;
  font-weight: 800;
}

.lp-upload-rules {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--lp-muted);
  font-size: 13px;
  font-weight: 700;
}

.lp-payment-steps-section {
  padding-top: 54px;
}

.lp-payment-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-payment-steps article {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(7, 19, 38, 0.06);
}

.lp-payment-steps .lp-icon {
  width: 34px;
  height: 34px;
  color: var(--lp-green);
}

.lp-payment-steps strong {
  font-size: 18px;
}

.lp-payment-steps span {
  color: var(--lp-muted);
  font-size: 14px;
}

.lp-payment-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.lp-registration-page {
  min-height: 100vh;
}

.lp-registration-main {
  overflow: hidden;
}

.lp-registration-hero {
  padding: 58px 0 48px;
  background:
    linear-gradient(135deg, rgba(236, 248, 241, 0.94), rgba(237, 249, 250, 0.9)),
    linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
}

.lp-registration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  align-items: stretch;
  gap: 28px;
}

.lp-registration-copy {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-registration-copy h1 {
  max-width: 760px;
  margin: 22px 0 16px;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: 0;
}

.lp-registration-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--lp-muted);
  font-size: 17px;
}

.lp-registration-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
}

.lp-registration-steps div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(8, 122, 75, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.lp-registration-steps .lp-icon {
  color: var(--lp-green);
}

.lp-registration-steps span {
  font-weight: 900;
}

.lp-registration-note,
.lp-registration-form,
.lp-registration-summary {
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lp-shadow);
}

.lp-registration-note {
  min-height: 330px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 30px;
}

.lp-note-icon {
  width: 56px;
  height: 56px;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--lp-green), var(--lp-teal));
}

.lp-registration-note h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.lp-registration-note p {
  margin: 0;
  color: var(--lp-muted);
  font-weight: 700;
}

.lp-registration-section {
  padding-top: 46px;
}

.lp-registration-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 22px;
  align-items: start;
}

.lp-registration-form,
.lp-registration-summary {
  padding: 28px;
}

.lp-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.lp-form-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
}

.lp-form-head > .lp-icon {
  color: var(--lp-green);
}

.lp-registration-errors {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 15px 16px;
  border: 1px solid rgba(194, 65, 12, 0.24);
  border-radius: 8px;
  color: #8a2632;
  background: #fff7ed;
}

.lp-registration-errors .lp-icon {
  flex: 0 0 auto;
  margin-top: 2px;
}

.lp-registration-errors strong {
  display: block;
  margin-bottom: 5px;
}

.lp-registration-errors ul {
  margin: 0;
  padding-left: 18px;
}

.lp-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lp-field {
  display: grid;
  gap: 7px;
}

.lp-field-wide {
  grid-column: 1 / -1;
}

.lp-field span {
  color: var(--lp-green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--lp-line);
  border-radius: 8px;
  color: var(--lp-ink);
  background: #fbfefd;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.lp-field textarea {
  resize: vertical;
}

.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
  border-color: rgba(8, 122, 75, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(8, 122, 75, 0.09);
}

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

.lp-registration-summary {
  position: sticky;
  top: 106px;
}

.lp-summary-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.lp-summary-list div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px;
  border: 1px solid rgba(8, 122, 75, 0.14);
  border-radius: 8px;
  background: #f8fbf9;
}

.lp-summary-list .lp-icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--lp-green);
}

.lp-summary-list span {
  color: var(--lp-muted);
  font-weight: 800;
}

@media (max-width: 900px) {
  .lp-registration-grid,
  .lp-registration-layout {
    grid-template-columns: 1fr;
  }

  .lp-registration-copy,
  .lp-registration-note {
    min-height: 0;
  }

  .lp-registration-summary {
    position: static;
  }

  .lp-payment-grid,
  .lp-payment-detail-grid,
  .lp-payment-steps {
    grid-template-columns: 1fr;
  }

  .lp-payment-copy,
  .lp-payment-countdown {
    min-height: 0;
  }

  .lp-payment-copy h1 {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .lp-registration-page,
  .lp-registration-main,
  .lp-registration-hero {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .lp-registration-hero {
    padding: 36px 0 34px;
  }

  .lp-registration-copy h1 {
    font-size: 32px;
  }

  .lp-registration-copy p {
    font-size: 15px;
  }

  .lp-registration-steps,
  .lp-field-grid {
    grid-template-columns: 1fr;
  }

  .lp-registration-form,
  .lp-registration-summary,
  .lp-registration-note {
    padding: 20px;
  }

  .lp-form-head h2,
  .lp-registration-note h2 {
    font-size: 24px;
  }

  .lp-form-actions {
    display: grid;
  }

  .lp-registration-page .lp-nav-action .lp-btn {
    width: 44px;
    min-height: 44px;
    padding: 0;
    overflow: hidden;
  }

  .lp-registration-page .lp-nav-action .lp-icon {
    margin: 0;
  }

  .lp-payment-page,
  .lp-payment-main,
  .lp-payment-hero {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .lp-payment-page .lp-navbar {
    gap: 12px;
  }

  .lp-payment-page .lp-nav-action .lp-btn {
    width: 44px;
    min-height: 44px;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .lp-payment-page .lp-nav-action .lp-icon {
    margin: 0;
  }

  .lp-payment-hero {
    padding: 36px 0 34px;
  }

  .lp-payment-grid {
    display: block;
    width: 100%;
  }

  .lp-payment-copy,
  .lp-payment-countdown {
    width: 100%;
    max-width: calc(100vw - 112px);
    margin-left: auto;
    margin-right: auto;
  }

  .lp-payment-copy h1 {
    max-width: calc(100vw - 112px);
    font-size: 22px;
    overflow-wrap: break-word;
  }

  .lp-payment-copy p {
    max-width: calc(100vw - 112px);
    font-size: 15px;
  }

  .lp-payment-countdown p {
    max-width: calc(100vw - 152px);
  }

  .lp-payment-countdown,
  .lp-payment-panel,
  .lp-upload-panel,
  .lp-payment-steps article {
    padding: 20px;
  }

  .lp-countdown-time {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 0;
  }

  .lp-countdown-time span {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px 24px;
    font-size: 26px;
    line-height: 1;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.14);
  }

  .lp-countdown-time span::after {
    content: attr(data-unit);
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0;
  }

  .lp-countdown-units {
    display: none;
  }

  .lp-payment-countdown p {
    max-width: none;
    margin-top: 26px;
    line-height: 1.55;
  }

  .lp-payment-total strong {
    font-size: 30px;
  }

  .lp-bank-card strong {
    font-size: 25px;
  }

  .lp-payment-lines div {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .lp-period-control {
    grid-template-columns: 1fr;
  }

  .lp-payment-lines strong {
    white-space: normal;
  }
}
