:root {
  --bg: #0b1220;
  --text: #eaf0ff;
  --muted: #9bb0d1;
  --card: #0f1a30;
  --brand: #22c55e;
  --brand-600: #16a34a;
  --ring: rgba(34, 197, 94, .45);
  --shadow: 0 20px 40px rgba(0, 0, 0, .35);
  --radius: 14px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: #f0f0f0;
  color: var(--text);
}

a {
  color: #b2d6ff;
  text-decoration: none
}

.container {
  max-width: 1100px;
  margin-inline: auto;
  padding: 24px
}

@media (max-width:480px) {
  .container {
    padding: 16px
  }
}


.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, .6);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700
}

.brand .logo {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background:
    conic-gradient(from 40deg, #2dd4bf, #22c55e, #60a5fa, #2dd4bf);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .1) inset;
}

.menu-toggle {
  margin-left: auto;
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(7, 16, 30, .6);
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle:focus {
  outline: 2px solid var(--ring);
  outline-offset: 2px
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width:900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 58px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: rgba(11, 18, 32, .95);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
  }
}


.hero {
  padding-top: 8px
}

.btn {
  appearance: none;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(180deg, var(--brand), var(--brand-600));
  color: #fff;
  box-shadow: 0 8px 16px rgba(34, 197, 94, .32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.1;
  font-size: clamp(13px, 3.2vw, 15px);
}

.btn.full {
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

@media (max-width:420px) {
  .btn {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .btn.full {
    max-width: 100%
  }
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, .18);
  border-top-color: #07101e;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: none;
}

.loading .spinner {
  display: inline-block
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.slider-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
}

.icon-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 16, 30, .6);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 8px;
  display: flex;
  gap: 6px
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35)
}

.dot.active {
  background: #fff;
  width: 18px
}


section {
  margin-top: 28px
}

.grid {
  display: grid;
  gap: 20px
}

.grid-2 {
  grid-template-columns: 1.14fr .86fr
}

@media(max-width:900px) {
  .grid-2 {
    grid-template-columns: 1fr
  }
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.card h3 {
  margin-top: 0
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(34, 197, 94, .15);
  border: 1px solid rgba(34, 197, 94, .25);
  color: #c7ffd6;
}


.stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px
}

.step {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, .12);
  border-radius: 999px;
  position: relative;
  overflow: hidden
}

.step::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), #86efac);
  transition: width .35s ease
}

.step.active::after {
  width: 100%
}

.label-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between
}

.hint {
  font-size: 12px;
  color: #a4b8da
}

form .row {
  display: grid;
  gap: 10px
}

@media(min-width:640px) {
  form .row.cols-2 {
    grid-template-columns: 1fr 1fr
  }
}

label {
  font-size: 14px;
  color: #cfe2ff
}

.actions {
  display: flex;
  justify-content: center;
  margin-top: 10px
}


.otp {
  display: flex;
  gap: 8px;
  justify-content: center
}

.otp input {
  width: 44px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 2px;
  border-radius: 10px
}

.otp input.is-invalid {
    border-color: red;
}

@media(min-width:420px) {
  .otp input {
    width: 50px
  }
}


.success {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 12px;
  background: rgba(34, 197, 94, .12);
  border: 1px solid rgba(34, 197, 94, .25);
  color: #d1ffe2;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-600));
  display: grid;
  place-items: center;
  color: #07101e;
  font-weight: 900;
  font-size: 14px
}


.t-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(1, 1fr)
}

@media(min-width:600px) {
  .t-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:900px) {
  .t-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.t-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 14px;
  background: #0b1426;
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.t-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .35)
}

.t-card.float {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .5)
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .15)
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.t-body .name {
  font-weight: 700;
  margin-bottom: 3px
}

.t-body .txt {
  color: var(--muted);
  font-size: 14px
}


.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px
}

.b-card {
  border-radius: 16px;
  padding: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  transform: perspective(700px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  cursor: pointer;
  user-select: none;
  will-change: transform;
}

.b-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px
}

.b-card h4 {
  margin: 0 0 6px 0
}

.b-card p {
  margin: 0;
  color: #eef6ff;
  opacity: .92
}


.pkh {
  background: linear-gradient(135deg, #1b2845 0%, #2a6ebb 100%)
}

.bpnt {
  background: linear-gradient(135deg, #1d3a2d 0%, #1aa36a 100%)
}

.bst {
  background: linear-gradient(135deg, #3b1a3f 0%, #b463d6 100%)
}

.blt {
  background: linear-gradient(135deg, #45271b 0%, #e37b3f 100%)
}

.bsu {
  background: linear-gradient(135deg, #26223a 0%, #6b5cff 100%)
}

.prk {
  background: linear-gradient(135deg, #193b4d 0%, #1fb6ff 100%)
}

.pip {
  background: linear-gradient(135deg, #2a2a2a 0%, #8d8d8d 100%)
}

.kis {
  background: linear-gradient(135deg, #1f2a44 0%, #34c6eb 100%)
}


.b-card.is-press {
  --ty: -6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .55);
  filter: saturate(1.08) contrast(1.03);
}


.about-card {
  background: radial-gradient(600px 300px at 10% -10%, rgba(96, 165, 250, .18), rgba(255, 255, 255, .02)),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border-color: rgba(96, 165, 250, .35);
}

.testi-card {
  background: radial-gradient(600px 300px at 90% -10%, rgba(244, 114, 182, .18), rgba(255, 255, 255, .02)),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border-color: rgba(244, 114, 182, .35);
}

.alamat-card {
  background: radial-gradient(600px 300px at 50% -10%, rgba(52, 211, 153, .18), rgba(255, 255, 255, .02)),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
  border-color: rgba(52, 211, 153, .35);
}


footer {
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .08)
}


:root {
  --bg: #ffffff;
  --text: #222222;
  --muted: #555555;
  --card: #ffffff;
}

body {
  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%) !important;
  color: #444444;
}

h1,
h2,
h3,
h4 {
  color: #222222;
}

a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.card {
  background: #ffffff !important;
  border: 1px solid #e6e6e6 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .08) !important;
}


.nav {
  background: rgba(255, 255, 255, .85) !important;
  border-bottom: 1px solid rgba(0, 0, 0, .06) !important;
  backdrop-filter: blur(10px);
}

.nav-links a {
  color: #222222;
}

.brand {
  color: #222222;
}


.badge {
  background: rgba(34, 197, 94, .12) !important;
  border-color: rgba(34, 197, 94, .25) !important;
  color: #16784a !important;
}

.muted,
.hint {
  color: #666f7a !important;
}

.success {
  background: rgba(34, 197, 94, .10) !important;
  border-color: rgba(34, 197, 94, .25) !important;
  color: #165b37 !important;
}


.t-card {
  background: #ffffff !important;
  border: 1px solid #ebeff4 !important;
}


.b-card h4 {
  color: #ffffff;
}

.b-card p {
  color: #f7fbff;
  opacity: .98;
}


.alamat-responsive {
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  padding: 18px;
}

.alamat-responsive h3 {
  margin-bottom: 12px;
  text-align: center;
}

.alamat-responsive p {
  margin: 6px 0;
}

@media (max-width: 900px) {
  .alamat-responsive {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .alamat-responsive {
    text-align: center;
    font-size: 15px;
    padding: 14px 12px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    background: rgba(12, 18, 28, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .nav-links a {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 10px;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
  }
}

@media (min-width: 901px) {
  .nav-links a {
    color: #222222 !important;
  }
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.carousel-inner {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  border-top: unset;
  border-bottom: unset;
  transition: width .35s ease;
}

.carousel-indicators .active {
  background: #fff;
  width: 21px;
}

.carousel-control-next, .carousel-control-prev {
width: 36px;
    height: 36px;
    background: rgba(7, 16, 30, .6);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    top: calc(50% - 18px);
    backdrop-filter: blur(6px);
}

.carousel-control-next {
  right: 10px;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-caption {
    width: 100%;
    height: 100%;
    left: 0;
    right: unset;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, 0));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}