@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
}

/* ===== CHECKOUT CARD ===== */
#checkout-3 {
  max-width: 820px;
  margin: 60px auto;
  padding: 36px 32px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.08);
  color: #1f2937;
}

/* ===== TITLE ===== */
#checkout-3 h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

/* ===== DIVIDER ===== */
#checkout-3 hr {
  border: none;
  border-top: 1px dashed #e5e7eb;
  margin: 26px 0;
}

/* ===== TEXT ===== */
#checkout-3 p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}

/* ===== ITEM ===== */
.checkout-item p:first-child {
  font-weight: 600;
  color: #111827;
}

.checkout-item p:last-child {
  font-weight: 700;
  font-size: 16px;
}

/* ===== BENEFIT ===== */
.checkout-benefit ul {
  list-style: none;
  margin-top: 14px;
}

.checkout-benefit li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  margin-bottom: 10px;
  color: #374151;
}

.checkout-benefit li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: 700;
}

/* ===== PRICE ROW ===== */
.checkout-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-normal {
  font-weight: 700;
  font-size: 20px;
  color: #ef4444;
}

/* ===== VOUCHER ===== */
.checkout-voucher label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.checkout-voucher input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid #d1d5db;
  background: #f9fafb;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  transition: 0.25s ease;
}

.checkout-voucher input:focus {
  outline: none;
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.discount-info {
  margin-top: 10px;
  font-size: 13px;
  color: #16a34a;
  font-weight: 600;
}

/* ===== TOTAL ===== */
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-total p {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.price-total {
  font-size: 26px;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: -0.5px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  #checkout-3 {
    padding: 26px 20px;
    margin: 40px 14px;
  }

  #checkout-3 h2 {
    font-size: 22px;
  }

  .checkout-price,
  .checkout-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .price-total {
    font-size: 22px;
  }
}
/* ===== FORM DATA USAHA ===== */
#checkout-3 h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0f172a;
}

/* Label */
#checkout-3 p strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #334155;
}

/* Input & Select */
#checkout-3 input,
#checkout-3 select {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #0f172a;
  transition: all 0.25s ease;
}

/* Placeholder */
#checkout-3 input::placeholder {
  color: #94a3b8;
}

/* Focus */
#checkout-3 input:focus,
#checkout-3 select:focus {
  outline: none;
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
}

/* HR */
#checkout-3 hr {
  border: none;
  border-top: 1px dashed #e5e7eb;
  margin: 18px 0;
}

/* Agreement */
.agreement {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 16px 0;
}

.agreement input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #2563eb;
  margin-top: 3px;
}

.agreement label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #475569;
}

.agreement a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.agreement a:hover {
  text-decoration: underline;
}

/* Button WhatsApp */
.btn-wa {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  transition: all 0.25s ease;
  margin-top: 10px;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34,197,94,0.35);
}

.btn-wa:active {
  transform: scale(0.98);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  #checkout-3 h3 {
    font-size: 1.2rem;
  }

  #checkout-3 input,
  #checkout-3 select {
    font-size: 0.9rem;
    padding: 13px 14px;
  }

  .btn-wa {
    font-size: 0.95rem;
  }
}