* {
  box-sizing: border-box;
}

:root {
  --blue: #087fc2;
  --blue-dark: #045d94;
  --cyan: #30c7ef;
  --white: #ffffff;
  --text: #08253b;
  --muted: #4e6b7d;
  --glass: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 70px rgba(0, 74, 126, 0.24);
  --green: #25d366;
  --green-dark: #16b957;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(48, 199, 239, 0.38), transparent 34%),
    linear-gradient(135deg, #e8f8ff 0%, #ffffff 44%, #d7f5ff 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.45;
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
  width: 360px;
  height: 360px;
  background: #27bce8;
  top: -110px;
  left: -80px;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #ffffff;
  bottom: -90px;
  right: 8%;
  animation-delay: 1.5s;
}

.orb-3 {
  width: 220px;
  height: 220px;
  background: #0c89ca;
  right: -70px;
  top: 28%;
  animation-delay: 3s;
}

.page-shell {
  position: relative;
  width: min(1180px, 94%);
  margin: 0 auto;
  padding: 32px 0;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 34px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: fadeUp 0.8s ease both;
}

.brand-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.logo {
  width: min(300px, 50vw);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.15));
}

.banner {
  width: min(500px, 46vw);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(8, 127, 194, 0.18);
  animation: pulseSoft 2.4s ease-in-out infinite;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 89, 138, 0.15);
  backdrop-filter: blur(16px);
}

.main-card {
  padding: 48px 36px;
}

.status-pill {
  display: flex;
  width: fit-content;
  margin: 0 0 16px 0;
  justify-content: center;
  align-items: center;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(8, 127, 194, 0.13);
  color: var(--blue-dark);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.main-card h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  color: #063958;
}

p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
  color: var(--muted);
}

.billing-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.billing-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(8, 127, 194, 0.28);
  outline: none;
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
}

.billing-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 127, 194, 0.14);
}

.billing-form button,
.billing-form .cek-button {
  border: 0;
  border-radius: 16px;
  padding: 0 34px;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(8, 127, 194, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.billing-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(8, 127, 194, 0.38);
}

.form-note {
  margin-top: 14px;
  font-size: 14px;
}

.side-card {
  padding: 20px;
  overflow: hidden;
}

.info-image {
  width: 100%;
  display: block;
  border-radius: 22px;
  margin-bottom: 18px;
  box-shadow: 0 18px 40px rgba(0, 90, 140, 0.18);
}

.help-box h2 {
  margin: 0 0 14px;
  font-size: 22px;
  color: #063958;
}

.wa-help-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  margin-top: 12px;
  padding: 15px 18px;

  border-radius: 16px;
  text-decoration: none;

  color: #ffffff;
  background: linear-gradient(135deg, #25D366, #16b957);

  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.3px;

  box-shadow:
    0 0 12px rgba(37, 211, 102, 0.45),
    0 12px 28px rgba(37, 211, 102, 0.28);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-help-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 0 18px rgba(37, 211, 102, 0.68),
    0 16px 34px rgba(37, 211, 102, 0.42);
}

.wa-icon,
.wa-icon img {
  width: 24px;
  height: 24px;
  display: block;
    filter:
        drop-shadow(0 0 1px rgba(255,255,255,.95))
        drop-shadow(0 0 2px rgba(255,255,255,.90));
}


.footer-note {
  text-align: center;
  margin-top: 22px;
  font-weight: 700;
  color: #35677f;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatOrb {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(22px) scale(1.04);
  }
}

@keyframes pulseSoft {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

/* DESKTOP */
@media (min-width: 901px) {
  .logo {
    width: 300px;
    transform: translateX(80px);
  }

  .banner {
    width: 500px;
    transform: translateX(-20px);
  }
}

/* TABLET DAN HP */
@media (max-width: 900px) {
  .page-shell {
    width: 96%;
    padding: 14px 0;
  }

  .hero-card {
    padding: 18px;
    border-radius: 26px;
  }

  .brand-area {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .logo {
    width: 60%;
    max-width: 260px;
  }

  .banner {
    width: 98%;
    max-width: 780px;
    transform: none;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .main-card {
    padding: 28px 24px;
  }
}

/* HP KECIL */
@media (max-width: 560px) {
  .page-shell {
    width: 96%;
    padding: 10px 0;
  }

  .hero-card {
    padding: 12px;
    border-radius: 22px;
  }

  .brand-area {
    gap: 10px;
    margin-bottom: 14px;
  }

  .logo {
    width: 58%;
    max-width: 190px;
  }

  .banner {
    width: 98%;
    max-width: 380px;
  }

  .main-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .status-pill {
    font-size: 10px;
    padding: 7px 12px;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
  }

  .main-card h1 {
    font-size: 25px;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .billing-form {
    flex-direction: row;
    gap: 8px;
  }

  .billing-form input {
    padding: 13px 12px;
    font-size: 13px;
    border-radius: 13px;
  }

 .billing-form button,
 .billing-form .cek-button {
    padding: 0 18px;
    font-size: 13px;
    border-radius: 13px;
  }

  .side-card {
    padding: 14px;
    border-radius: 22px;
  }

  .info-image {
    border-radius: 18px;
  }

  .help-box h2 {
    font-size: 19px;
  }

  .wa-help-button {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .footer-note {
    margin-top: 16px;
    font-size: 12px;
  }
  /* ==========================
   Keterangan Form
========================== */

.info-note{
    margin-top:20px;
    padding:16px 18px;

    background:rgba(8,127,194,.06);

    border:1px solid rgba(8,127,194,.12);

    border-radius:16px;
}

.info-note h4{
    margin:0 0 10px;
    font-size:16px;
    color:#063958;
}

.info-note ul{
    margin:0;
    padding-left:18px;
}

.info-note li{
    margin-bottom:12px;
    color:#4e6b7d;
    font-size:14px;
    line-height:1.7;
}

.info-note li:last-child{
    margin-bottom:0;
}

.info-note b{
    color:#063958;
}
.hidden-submit {
  display: none;
}
}
