  /* =========================================================
   Stripe-like 2-Column Checkout – Full Styles
   ========================================================= */

  /* ========== Design Tokens ========== */
  :root {
    --bg: #f5f6fa;
    --card: #ffffff;
    --muted: #64748b;
    --text: #0f172a;
    --border: #e5e7eb;
    --ring: #191919;
    --ring-hover: #191919;
    --ring-weak: rgba(25, 25, 25, .10);
    --ring-glow: rgba(25, 25, 25, .18);
    --accent-warm: #f59e0b;
    --success: #16a34a;
    --danger: #dc2626;
    --radius: 12px;
    --radius-sm: 10px;
    --shadow-card: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 16px rgba(15, 23, 42, .06);
    --shadow-card-hover: 0 8px 32px rgba(15, 23, 42, .10);
    --shadow-focus: 0 0 0 3px var(--ring-weak);
  }

  /* ========== Reset ========== */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html,
  body {
    height: 100%;
  }

  body {
    margin: 0;
    background: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font: 400 15px/1.6 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    overflow-x: clip;
  }

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

  button {
    font: inherit;
    cursor: pointer;
  }

  :focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--ring), var(--shadow-focus);
  }

  /* ========== Page Container ========== */
  .checkout-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: -25px;
    overflow-x: clip;
    max-width: 100vw;
  }

  /* ========== Minimalist Header ========== */
  .checkout-header {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    border-bottom: 1px solid rgba(229, 231, 235, .7);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .checkout-header .container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .checkout-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
  }

  .checkout-logo-img {
    height: 43px;
    display: block;
    width: auto;
    max-width: 180px;
    object-fit: cover;
    width: 180px;
  }

  .checkout-secure {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 500;
  }

  .checkout-secure i {
    font-size: 13px;
    color: #94a3b8;
  }

  /* ========== Main Content Grid ========== */
  .checkout-container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 32px 24px 48px;
    flex: 1;
  }

  .checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: flex-start;
    max-width: 100%;
  }

  /* ========== Progress Stepper ========== */
  .checkout-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
    max-width: 100%;
    overflow: hidden;
    margin-top: 10px;
  }

  .stepper-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    min-width: 0;
    flex-shrink: 1;
  }

  .stepper-step.is-active {
    color: var(--ring);
  }

  .stepper-step.is-active .stepper-num {
    background: var(--ring);
    color: #fff;
    border-color: var(--ring);
    box-shadow: 0 2px 8px var(--ring-glow);
  }

  .stepper-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    transition: background .2s, border-color .2s, box-shadow .2s;
  }

  .stepper-line {
    flex: 0 0 48px;
    height: 2px;
    background: var(--border);
    margin: 0 12px;
  }

  /* ========== Left Column ========== */
  .checkout-form-col {}

  /* Form Card Wrapper (matches summary-card styling) */
  .form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 36px 36px;
    box-shadow: var(--shadow-card);
  }

  .checkout-title-group {
    margin-bottom: 32px;
  }

  .checkout-title-group h2 {
    display: block;
    margin: 0 0 20px 0;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.5;
  }

  .checkout-title-group p {
    display: block;
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }

  .checkout-title-group a {
    color: var(--ring);
    text-decoration: none;
    font-weight: 600;
  }

  .checkout-title-group a:hover {
    text-decoration: underline;
  }

  /* Form Section Labels */
  .form-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }

  /* Form Fields */
  .form-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
  }

  .form-field label {
    font-weight: 500;
    font-size: 13px;
    color: #1e293b;
    margin-bottom: 8px;
  }

  .form-field label .required {
    color: var(--danger);
    margin-left: 2px;
  }

  .platforms_bo-input {
    height: 46px;
    padding: 0 14px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--card);
    color: var(--text);
    font-size: 14px;
    transition: border-color .2s, box-shadow .2s, transform .15s;
  }

  .platforms_bo-input::placeholder {
    color: #94a3b8;
  }

  .platforms_bo-input:focus {
    border-color: var(--ring);
    box-shadow: var(--shadow-focus);
    transform: scale(1.005);
  }

  /* Password field */
  .password-input-wrapper {
    position: relative;
  }

  .password-input-wrapper .platforms_bo-input {
    width: 100%;
    padding-right: 48px;
  }

  .toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: transparent;
    border: none;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color .12s;
  }

  .toggle-password:hover {
    color: var(--ring);
  }

  .toggle-password i {
    font-size: 14px;
  }

  .info-input {
    font-size: 12px;
    color: var(--muted);
    margin-top: 5px;
  }

  .password-requirements {
    background: #f1f5f9;
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 8px 10px;
    margin-top: 6px;
    font-size: 11px;
    color: var(--muted);
  }

  /* WhatsApp Country Code + Input */
  .wa-input-group {
    display: flex;
    gap: 0;
    position: relative;
    width: 100%;
    min-width: 0;
  }

  .wa-country-select {
    flex: 0 0 auto;
    width: 110px;
    height: 46px;
    padding: 0 28px 0 12px;
    background: #f1f5f9;
    border: 1.5px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    transition: border-color .15s, box-shadow .15s;
  }

  .wa-country-select:focus {
    border-color: var(--ring);
    box-shadow: 0 0 0 3px var(--ring-weak);
    z-index: 2;
  }

  .wa-input-group .platforms_bo-input {
    border-radius: 0 var(--radius) var(--radius) 0;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }

  /* Primary CTA (inside summary-card) */
  .btn-primary-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 52px;
    margin-top: 18px;
    background: #009fd5;
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    cursor: pointer;
    transition: background .2s, box-shadow .2s, transform .15s;
    box-shadow: 0 4px 14px var(--ring-glow), 0 1px 2px rgba(0, 0, 0, .08);
  }

  .btn-primary-checkout:hover {
    background: #009fd5;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .35), 0 2px 4px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
  }

  .btn-primary-checkout:active {
    transform: translateY(0) scale(.99);
  }

  .btn-primary-checkout:disabled {
    opacity: .6;
    pointer-events: none;
  }

  .btn-primary-checkout i {
    font-size: 14px;
    transition: transform .2s;
  }

  .btn-primary-checkout:hover i {
    transform: translateX(3px);
  }

  .checkout-disclaimer {
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.5;
  }

  .checkout-disclaimer a {
    color: var(--muted);
    text-decoration: underline;
  }

  /* ========== Right Column – Sticky Summary ========== */
  .checkout-summary-col {
    position: sticky;
    top: 24px;
  }

  .summary-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), var(--shadow-card);
    padding: 24px;
    transition: box-shadow .3s;
  }

  .summary-card h3 {
    margin: 0 0 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
  }

  /* Plan info inside summary */
  .summary-plan {
    margin-bottom: 18px;
  }

  .summary-plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .summary-plan-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--ring);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--ring-glow);
  }

  .summary-plan-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--text);
  }

  .summary-plan-price {
    font-size: 13px;
    color: var(--muted);
    margin-top: 1px;
  }

  /* Feature bullets */
  .summary-features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }

  .summary-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: #334155;
  }

  .summary-features li i {
    color: var(--success);
    font-size: 13px;
    flex-shrink: 0;
  }

  /* Price breakdown */
  .summary-pricing {
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }

  .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 4px 0;
    font-size: 13px;
    color: var(--muted);
  }

  .summary-row span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .summary-row b {
    color: var(--text);
    font-weight: 600;
    text-align: right;
    flex: 0 0 auto;
    max-width: 58%;
    white-space: nowrap;
    overflow-wrap: anywhere;
  }

  .summary-row.red-text span,
  .summary-row.red-text b {
    color: var(--danger);
  }

  .summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
    padding: 14px 16px;
    border-top: none;
    background: #111827;
    border-radius: 10px;
    margin-left: -4px;
    margin-right: -4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  }

  .summary-total-row span {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
  }

  .summary-total-row b {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    flex: 0 0 auto;
    max-width: 52%;
    text-align: right;
    white-space: nowrap;
    overflow-wrap: anywhere;
  }

  .summary-total-row .str-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
  }

  .summary-total-row .str-savings {
    color: #86efac;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .01em;
  }

  /* ===== UMKM SUPPORT badge di summary ===== */
  .umkm-summary-badge {
    margin-top: 16px;
    padding: 14px 16px 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #b45309;
    border-radius: 12px;
    box-shadow: 3px 3px 0 0 #b45309;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: #451a03;
  }
  .umkm-summary-badge[hidden] { display: none; }
  .umkm-summary-badge__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #b45309;
    color: #fff;
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 0.08em;
    padding: 4px 9px;
    border-radius: 999px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .umkm-summary-badge__title {
    font-weight: 800;
    font-size: 15px;
    color: #78350f;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  .umkm-summary-badge__detail {
    font-size: 13px;
    color: #78350f;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .umkm-summary-badge__detail strong { color: #451a03; }
  .umkm-summary-badge__bonus {
    display: inline-block;
    margin-left: 4px;
    background: #fff;
    border: 1.5px solid #16a34a;
    color: #15803d;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11.5px;
    white-space: nowrap;
  }
  .umkm-summary-badge__total {
    font-size: 13px;
    color: #451a03;
    font-weight: 700;
    padding-top: 6px;
    border-top: 1px dashed #d97706;
  }

  /* Coupon inside summary */
  .summary-coupon {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
  }

  .trigger-coupon-code-input {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .trigger-coupon-code-input span {
    font-weight: 600;
    color: var(--ring);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .trigger-coupon-code-input span::before {
    content: "+";
    font-weight: 700;
  }

  .frame-voucher-input {
    margin-top: 10px;
  }

  .frame-coupon-code {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid var(--border);
  }

  .coupon_code {
    width: 100%;
    min-width: 0;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #dbe3ee;
    padding: 0 14px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    outline: none;
    letter-spacing: .02em;
  }

  .coupon_code::placeholder {
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 10px;
  }

  .coupon_code.success {
    border-color: var(--success);
    background: #f8fffb;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, .10);
  }

  .coupon_code.invalid {
    border-color: var(--danger);
    background: #fff8f8;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .10);
  }

  .coupon-button {
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--card);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: background .12s, border-color .12s, color .12s;
  }

  .coupon-button:hover {
    background: #eff6ff;
    border-color: var(--ring);
  }

  .coupon-apply-button {
    color: var(--ring);
  }

  .coupon-remove-button {
    color: var(--success);
    border-color: #dbe3ee;
  }

  .coupon-remove-button.invalid {
    color: var(--danger);
  }

  .err-message-coupon,
  .success-message-coupon {
    grid-column: 1 / -1;
    margin-top: 0;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
  }

  .err-message-coupon {
    color: var(--danger);
    background: #fff1f2;
    border: 1px solid #fecdd3;
  }

  .success-message-coupon {
    color: var(--success);
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
  }

  /* Trust Badges Row (Credential-based) */
  .trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
  }

  .trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 8px;
    line-height: 1.3;
    letter-spacing: .01em;
  }

  .trust-badge i {
    font-size: 16px;
    color: var(--ring);
    margin-bottom: 2px;
  }

  .trust-badge span {
    display: block;
    font-weight: 600;
    color: #334155;
  }

  /* Social Proof */
  .social-proof-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    justify-content: center;
  }

  .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(22, 163, 74, .5);
    }

    50% {
      box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
    }
  }

  /* ========== Footer ========== */
  .checkout-footer {
    padding: 20px 24px;
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer-meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .02em;
    opacity: .7;
  }

  .footer-meta-badge img {
    height: 16px;
    width: auto;
  }

  /* ========== Hidden Steps (Payment Step 3 preserved) ========== */
  .wizard-step {
    display: none;
  }

  .wizard-step.is-visible {
    display: block;
    animation: fadeSlideIn .35s ease-out;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

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

  /* Step 3 Payment Accordion (preserved from original) */
  .step3-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 18px;
    align-items: flex-start;
  }

  .step3-main {
    padding: 0;
  }

  .step3-summary {
    position: sticky;
    top: 90px;
  }

  .step3-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
  }

  .step3-subtitle {
    margin: 0 0 10px;
    font-size: 12px;
    color: var(--muted);
  }

  .required-select-payment {
    padding: 8px 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 12px;
    border: 1px solid #fee2e2;
    display: none;
  }

  .payment-accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
  }

  .payment-group+.payment-group {
    border-top: 1px solid var(--border);
  }

  .payment-group__header {
    width: 100%;
    border: 0;
    border-left: 3px solid transparent;
    background: #f9fafb;
    padding: 12px 16px;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: border-color .2s, background .2s;
  }

  .payment-group__header:hover {
    background: #f1f5f9;
  }

  .payment-group__header[aria-expanded="true"],
  .payment-group:has(.payment-group__body[style*="block"]) .payment-group__header {
    border-left-color: var(--ring);
    background: #eef2ff;
  }

  .payment-group__chev {
    font-size: 14px;
    opacity: .6;
  }

  .payment-group__body {
    background: var(--card);
    padding: 10px 12px 14px;
  }

  .payment-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .payment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color .12s, background .12s;
    position: relative;
  }

  .payment-item:hover {
    background: #f9fafb;
  }

  .payment-item.active {
    background: #eef2ff;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px var(--ring-glow);
  }

  .pm-badge-popular {
    position: absolute;
    top: 8px;
    right: 10px;
    background: #f59e0b;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .05em;
    box-shadow: 0 2px 6px rgba(245, 158, 11, .35);
  }

  .payment-item__logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .payment-item__text b {
    color: #111827;
    font-size: 13px;
  }

  .payment-item__text small {
    color: var(--muted);
    font-size: 11px;
  }

  /* Step 3 Summary Card (re-uses summary-card) */
  .step3-summary .summary-card {
    margin-top: 0;
  }

  .summary-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
    margin-bottom: 10px;
  }

  .summary-product img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .package_selected_name {
    font-size: 13px;
    line-height: 1.4;
  }

  .package_selected_name small {
    display: block;
    font-size: 9px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 2px;
  }

  .summary-table {
    margin: 6px 0;
  }

  .summary-table .row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    color: var(--muted);
    font-size: 13px;
  }

  .summary-table .row span,
  .summary-table .row b {
    flex: 1;
  }

  .summary-table .row b {
    text-align: right;
  }

  .summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }

  .grandtotal-text {
    font-weight: 700;
    letter-spacing: .03em;
    font-size: 13px;
  }

  .red-text {
    color: var(--danger);
  }

  /* Buttons */
  .platforms_bo-btn {
    appearance: none;
    border: 1px solid var(--border);
    background: var(--card);
    color: var(--text);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 1px 0 rgba(148, 163, 253, .18);
    transition: transform .12s, box-shadow .12s, border-color .12s, background .12s;
  }

  .platforms_bo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
  }

  .platforms_bo-btn:active {
    transform: translateY(0) scale(.98);
    box-shadow: none;
  }

  .platforms_bo-btn--primary {
    background: #009fd5;
    border-color: #009fd5;
    color: #fff;
  }

  .platforms_bo-btn--primary:hover {
    background: #009fd5;
    box-shadow: 0 0 0 6px var(--ring-weak), 0 10px 26px rgba(0, 0, 0, .24);
  }

  .platforms_bo-btn--ghost {
    background: transparent;
    color: var(--muted);
  }

  .btn-checkout-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .step-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
  }

  /* CyberWeek Banner (preserved) */
  .cyberweek-banner {
    display: none;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--ring);
    background: #eff6ff;
    color: #111827;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .cyberweek-banner .bf-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--ring);
    text-transform: uppercase;
  }

  .cyberweek-banner .bf-code {
    display: inline-block;
    margin-left: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    font-weight: 700;
  }

  .cyberweek-banner .bf-countdown {
    margin-left: auto;
    font-size: 12px;
    color: #374151;
  }

  .cyberweek-banner .bf-cta {
    margin-left: 8px;
  }

  /* ========== Responsive ========== */
  /* ========== TABLET (≤ 768px) — Stack to single column ========== */
  @media (max-width: 768px) {
    .checkout-grid {
      grid-template-columns: 1fr;
      gap: 0;
    }

    /* Form on top, summary below on mobile */
    .checkout-form-col {
      order: 1;
    }

    .checkout-summary-col {
      position: static;
      order: 2;
      margin-top: 24px;
    }

    .step3-layout {
      grid-template-columns: 1fr;
    }

    .step3-summary {
      position: static;
      top: auto;
      order: 2;
      margin-bottom: 20px;
    }

    .checkout-container {
      padding: 20px 20px 32px;
    }

    .summary-card {
      box-shadow: none;
      border: 1px solid var(--border);
    }

    /* Stepper: keep proportional */
    .checkout-stepper {
      margin-bottom: 20px;
    }

    /* Title group */
    .checkout-title-group h2 {
      font-size: 1.15rem;
    }

    .checkout-title-group p {
      font-size: 0.85rem;
    }

    /* Summary card proportions */
    .summary-card h3 {
      font-size: 1rem;
    }

    .summary-plan-name {
      font-size: 0.95rem;
    }

    .summary-plan-price {
      font-size: 0.82rem;
    }

    .summary-features li {
      font-size: 0.85rem;
      padding: 5px 0;
    }

    .summary-total-row {
      font-size: 1rem;
    }

    /* Trust badges horizontal on tablet */
    .trust-badges {
      flex-wrap: wrap;
      gap: 8px;
    }

    .trust-badge {
      font-size: 0.75rem;
      padding: 6px 10px;
    }

    /* Payment step */
    .step-actions {
      flex-direction: column;
      gap: 10px;
    }

    .step-actions .platforms_bo-btn {
      width: 100%;
      justify-content: center;
    }

    .platforms_bo-input:focus {
      transform: none;
    }
  }

  /* ========== MEDIUM PHONE (≤ 600px) ========== */
  @media (max-width: 600px) {
    .checkout-header {
      padding: 12px 0;
    }

    .checkout-header .container {
      padding: 0 16px;
    }

    .checkout-logo-img {
      height: 43px;
    }

    .checkout-secure {
      font-size: 0.7rem;
      gap: 4px;
    }

    .checkout-container {
      padding: 16px 16px 28px;
      max-width: 100% !important;
      margin: 0px !important;
      /* width: 95%; */
    }

    /* Form section labels */
    .form-section-label {
      font-size: 0.72rem;
    }

    /* Slightly smaller form inputs on phones */
    .form-field label {
      font-size: 0.82rem;
    }

    .platforms_bo-input {
      padding: 11px 14px;
      font-size: 0.9rem;
    }

    .info-input {
      font-size: 0.72rem;
    }

    /* CTA button full width */
    .btn-primary-checkout {
      font-size: 0.95rem;
      padding: 14px 20px;
    }

    .checkout-disclaimer {
      font-size: 0.72rem;
    }

    /* Summary compact */
    .summary-card {
      padding: 18px;
    }

    .summary-plan-header {
      gap: 10px;
    }

    .summary-plan-icon {
      width: 36px;
      height: 36px;
      font-size: 0.9rem;
    }

    .summary-pricing {
      gap: 6px;
    }

    .summary-row {
      font-size: 0.82rem;
      gap: 10px;
    }

    .summary-row b {
      max-width: 54%;
    }

    .summary-total-row {
      font-size: 0.95rem;
      padding-top: 10px;
    }

    .summary-total-row b {
      max-width: 50%;
    }

    /* Coupon area compact */
    .trigger-coupon-code-input {
      font-size: 0.8rem;
    }

    .coupon_code {
      font-size: 0.82rem;
    }

    /* Payment items */
    .payment-item {
      padding: 10px 12px;
    }

    .payment-item__logo {
      max-height: 24px;
    }

    .payment-item__text b {
      font-size: 0.85rem;
    }

    .payment-item__text small {
      font-size: 0.7rem;
    }

    .step3-layout {
      grid-template-columns: 1fr;
    }
  }

  /* ========== SMALL PHONE (≤ 480px) ========== */
  @media (max-width: 480px) {
    .checkout-secure span {
      display: none;
    }

    .checkout-header .container {
      padding: 0 12px;
    }

    .checkout-logo-img {
      height: 43px;
    }

    .checkout-page,
    .checkout-container,
    .checkout-grid,
    .checkout-form-col,
    .checkout-summary-col {
      max-width: 100vw;
      overflow-x: clip;
    }

    .checkout-container {
      max-width: 100% !important;
      margin: 0 !important;
    }

    .checkout-stepper {
      gap: 4px;
      margin-top: 25px;
    }

    .stepper-num {
      width: 22px;
      height: 22px;
      font-size: 0.65rem;
      flex-shrink: 0;
    }

    .stepper-step {
      font-size: 0;
      gap: 0;
    }

    .stepper-line {
      flex: 1;
      min-width: 16px;
      margin: 0 6px;
    }

    /* WA country selector compact on small phones */
    .wa-input-group {
      overflow: hidden;
      border-radius: var(--radius);
    }

    .wa-country-select {
      flex: 0 0 92px;
      width: 92px;
      padding: 0 24px 0 10px;
      font-size: 13px;
    }

    .wa-input-group .platforms_bo-input {
      min-width: 0;
      width: auto;
      padding-left: 12px;
      padding-right: 12px;
    }

    /* Trust badges: keep 3-column grid but tighter on small phones */
    .trust-badges {
      grid-template-columns: repeat(3, 1fr);
      gap: 6px;
    }

    .trust-badge {
      padding: 10px 4px;
      font-size: 9px;
    }

    .trust-badge i {
      font-size: 14px;
    }

    .summary-total-row {
      margin-left: 0;
      margin-right: 0;
    }

    /* Coupon code layout */
    .frame-coupon-code {
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 8px;
    }

    .frame-coupon-code .coupon-button {
      width: auto;
    }

    /* Password toggle */
    .password-input-wrapper .toggle-password {
      right: 10px;
    }

    /* Payment group accordion */
    .payment-group__header {
      padding: 10px 14px;
      font-size: 0.85rem;
    }

    .payment-list {
      gap: 6px;
      padding: 8px;
    }

    /* Summary product in Step 3 */
    .summary-product {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .summary-product img {
      width: 32px;
      height: 32px;
    }

    /* Footer compact */
    .checkout-footer {
      padding: 16px;
      font-size: 0.72rem;
    }
  }

  /* ========== VERY SMALL PHONE (≤ 380px) ========== */
  @media (max-width: 380px) {

    /* Global overflow containment */
    .checkout-page,
    .checkout-container,
    .checkout-grid,
    .checkout-form-col,
    .checkout-summary-col,
    .summary-card,
    .step3-layout,
    .step3-main {
      max-width: 100vw;
      overflow-x: clip;
    }

    .checkout-container {
      padding: 12px 10px 24px;
      max-width: 100% !important;
      margin: 0px !important;
      /* width: 95%; */
    }

    .checkout-header .container {
      padding: 0 10px;
    }

    .checkout-title-group h2 {
      font-size: 1rem;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .checkout-title-group p {
      font-size: 0.8rem;
      word-wrap: break-word;
    }

    /* Stepper: hide text labels, show only step numbers */
    .stepper-step {
      font-size: 0;
      gap: 0;
    }

    .stepper-num {
      font-size: 0.6rem;
      width: 22px;
      height: 22px;
    }

    .stepper-line {
      flex: 1;
      min-width: 12px;
      margin: 0 4px;
    }

    /* Form inputs compact */
    .platforms_bo-input {
      padding: 10px 12px;
      font-size: 0.85rem;
    }

    /* WA country selector smaller */
    .wa-country-select {
      flex-basis: 84px;
      width: 84px;
      padding: 0 20px 0 8px;
      font-size: 12px;
    }

    .wa-input-group .platforms_bo-input {
      padding-left: 10px;
      padding-right: 10px;
      font-size: 0.82rem;
    }

    .btn-primary-checkout {
      font-size: 0.88rem;
      padding: 13px 12px;
      border-radius: 10px;
    }

    .summary-card {
      padding: 14px 12px;
      border-radius: 10px;
    }

    .summary-features li {
      font-size: 0.78rem;
    }

    .summary-plan-name {
      font-size: 0.88rem;
      word-wrap: break-word;
    }

    .summary-plan-price {
      font-size: 0.75rem;
    }

    .summary-row {
      font-size: 0.78rem;
      gap: 8px;
    }

    .summary-row b {
      max-width: 52%;
      word-break: break-word;
    }

    .summary-total-row {
      margin-left: 0;
      margin-right: 0;
      padding: 12px 10px;
    }

    .summary-total-row b {
      font-size: 16px;
      max-width: 48%;
    }

    /* Coupon area */
    .frame-coupon-code {
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 8px;
      padding: 7px;
    }

    .coupon-button {
      width: auto;
      min-width: 46px;
      height: 46px;
      padding: 0 13px;
      justify-content: center;
    }

    /* Payment items compact */
    .payment-group__header {
      padding: 10px 10px;
      font-size: 0.82rem;
    }

    .payment-item {
      padding: 8px;
      gap: 8px;
    }

    .payment-item__logo {
      width: 24px;
      height: 24px;
    }

    .payment-item__text b {
      font-size: 0.8rem;
    }

    .payment-item__text small {
      font-size: 0.65rem;
    }

    /* Footer */
    .checkout-footer {
      padding: 14px 10px;
      font-size: 0.68rem;
    }

    /* Step actions */
    .step-actions {
      flex-direction: column;
    }

    .step-actions .platforms_bo-btn {
      width: 100%;
      text-align: center;
      justify-content: center;
    }

    /* Summary product in step 3 */
    .summary-product {
      flex-direction: column;
      gap: 6px;
    }

    /* General text wrapping */
    .form-section-label,
    .checkout-disclaimer,
    .info-input,
    .password-requirements {
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
  }

  /* ========== ULTRA SMALL PHONE (≤ 360px — covers 350px) ========== */
  @media (max-width: 360px) {
    .checkout-container {
      padding: 10px 8px 20px;
      max-width: 100% !important;
    }

    .checkout-header .container {
      padding: 0 8px;
    }

    .checkout-logo-img {
      height: 36px;
      max-width: 140px;
    }

    .checkout-title-group {
      margin-bottom: 18px;
    }

    .checkout-title-group h2 {
      font-size: 0.92rem;
    }

    .form-stack {
      gap: 14px;
    }

    .form-field label {
      font-size: 0.78rem;
    }

    .platforms_bo-input {
      height: 42px;
      padding: 8px 10px;
      font-size: 0.82rem;
    }

    .wa-country-select {
      width: 72px;
      height: 42px;
      padding: 0 20px 0 6px;
      font-size: 11px;
    }

    .password-input-wrapper .platforms_bo-input {
      padding-right: 40px;
    }

    .btn-primary-checkout {
      height: 44px;
      font-size: 0.84rem;
      padding: 0 10px;
      margin-top: 20px;
    }

    .summary-card {
      padding: 12px 10px;
    }

    .summary-card h3 {
      font-size: 0.88rem;
      margin-bottom: 12px;
    }

    .summary-plan-icon {
      width: 32px;
      height: 32px;
      font-size: 0.8rem;
    }

    .summary-plan-header {
      gap: 8px;
    }

    .summary-features li {
      font-size: 0.72rem;
      gap: 6px;
    }

    .summary-total-row {
      padding: 10px 8px;
      border-radius: 8px;
    }

    .summary-total-row span {
      font-size: 0.82rem;
    }

    .summary-total-row b {
      font-size: 14px;
    }

    .trust-badge {
      font-size: 0.62rem;
    }

    .social-proof-line {
      font-size: 0.7rem;
    }

    .checkout-disclaimer {
      font-size: 0.65rem;
    }
  }

  @media (max-width: 640px) {
    .cyberweek-banner {
      flex-direction: column;
      align-items: flex-start;
    }

    .cyberweek-banner .bf-countdown {
      margin-left: 0;
      margin-top: 6px;
    }

    .cyberweek-banner .bf-cta {
      width: 100%;
      margin-left: 0;
      margin-top: 8px;
    }
  }

  @media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
      animation: none !important;
      transition: none !important;
    }
  }

  /* Video Modal (preserved from original) */
  .bo-video-modal-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(9, 9, 11, .82);
    backdrop-filter: blur(14px);
    z-index: 9999;
    transition: opacity .18s;
    opacity: 0;
  }

  .bo-video-modal-backdrop.is-visible {
    display: flex;
    opacity: 1;
  }

  .bo-video-modal {
    width: 100%;
    max-width: 860px;
    background: radial-gradient(circle at top left, #111827, #020817);
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(15, 23, 42, .9), 0 0 0 1px rgba(148, 163, 253, .16);
    padding: 18px;
    position: relative;
    overflow: hidden;
  }

  .bo-video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 4px 10px;
  }

  .bo-video-modal-title {
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
  }

  .bo-video-modal-subtitle {
    font-size: 11px;
    color: #9ca3af;
  }

  .bo-video-modal-close {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(75, 85, 99, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9ca3af;
    background: rgba(9, 9, 11, .98);
    transition: all .14s;
  }

  .bo-video-modal-close i {
    font-size: 12px;
  }

  .bo-video-modal-close:hover {
    background: #111827;
    color: #f9fafb;
    border-color: #6b7280;
  }

  .bo-video-modal-body {
    border-radius: 18px;
    overflow: hidden;
    background: #020817;
  }

  .bo-video-modal-body-inner {
    position: relative;
    padding-top: 56.25%;
  }

  .bo-video-modal-body-inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  @media (max-width:640px) {
    .bo-video-modal {
      max-width: 94%;
      padding: 14px 12px;
      border-radius: 18px;
    }

    .bo-video-modal-title {
      font-size: 13px;
    }

    .bo-video-modal-subtitle {
      display: none;
    }
  }

  /* Hidden utility */
  .hidden-step {
    display: none !important;
  }

  /* ========== Inline Validation ========== */
  .form-field {
    position: relative;
  }

  .form-field.is-valid .platforms_bo-input {
    border-color: var(--success);
  }

  .form-field.is-valid .field-success-ic {
    display: flex;
  }

  .form-field.is-invalid .platforms_bo-input {
    border-color: var(--danger);
  }

  .form-field .field-error-msg {
    display: none;
    color: var(--danger);
    font-size: 12px;
    margin-top: 6px;
    line-height: 1.45;
    font-weight: 500;
  }

  .form-field.is-invalid .field-error-msg {
    display: block;
  }

  .form-field .field-success-ic {
    display: none;
    position: absolute;
    right: 14px;
    top: 38px;
    color: var(--success);
    font-size: 16px;
    pointer-events: none;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 20px;
    height: 20px;
  }

  /* Adjust success icon position for password field (has toggle button) */
  .form-field.is-valid .password-input-wrapper~.field-success-ic,
  .form-field .password-input-wrapper+.field-success-ic {
    right: 44px;
  }

  /* Adjust success icon position for WA input group */
  .form-field.is-valid .wa-input-group~.field-success-ic,
  .form-field .wa-input-group+.field-success-ic {
    right: 14px;
  }

  /* ========== Mobile Sticky Total Bar ========== */
  .mobile-sticky-total {
    display: none;
  }

  @media (max-width: 768px) {
    .mobile-sticky-total {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid var(--border);
      padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
      align-items: center;
      gap: 12px;
      z-index: 90;
      box-shadow: 0 -4px 16px rgba(15, 23, 42, .08);
    }

    .mobile-sticky-total .mst-info {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .mobile-sticky-total .mst-info small {
      display: block;
      font-size: 11px;
      color: var(--muted);
      line-height: 1.2;
    }

    .mobile-sticky-total .mst-info b {
      font-size: 16px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.3;
    }

    .mobile-sticky-total .mst-cta {
      background: #009fd5;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 159, 213, .25);
      white-space: nowrap;
    }

    .mobile-sticky-total .mst-cta:active {
      transform: scale(0.98);
    }

    .mobile-sticky-total.is-hidden {
      display: none;
    }

    .checkout-container {
      /* Sticky bar tinggi ~73px, kasih buffer ~12px = 85px total
         (sebelumnya 148px berlebihan, bikin gap besar sebelum footer) */
      padding-bottom: calc(85px + env(safe-area-inset-bottom)) !important;
    }

    /* Step 2 (data-step="3") hides the sticky bar via JS — drop the reserved
       space so the page doesn't have a tall empty gap above the footer. */
    .checkout-container.no-sticky-pad {
      padding-bottom: 24px !important;
    }

    .summary-coupon {
      margin-bottom: 18px;
    }

    .btn-primary-checkout {
      margin-bottom: 8px;
    }
  }

  /* ========== Real Testimonial Cards (full-width below grid) ========== */
  .checkout-testimonials {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }

  .ct-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

  .ct-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
  }

  .ct-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
  }

  .ct-stars-big {
    color: #fbbf24;
    font-size: 15px;
    letter-spacing: 1px;
  }

  .ct-rating-text b {
    color: #0f172a;
    font-weight: 700;
  }

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

  .ct-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .15s, transform .15s;
  }

  .ct-card:hover {
    box-shadow: 0 4px 16px rgba(15, 23, 42, .06);
    transform: translateY(-1px);
  }

  .ct-stars {
    color: #fbbf24;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1;
  }

  .ct-quote {
    font-size: 12px;
    line-height: 1.55;
    color: #334155;
    margin: 8px 0 12px;
    font-style: italic;
    flex: 1;
  }

  .ct-author {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .ct-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .ct-meta b {
    font-size: 11.5px;
    display: block;
    color: #0f172a;
    line-height: 1.3;
  }

  .ct-meta small {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.3;
    display: block;
  }

  .ct-result {
    font-size: 10.5px;
    color: var(--success);
    font-weight: 600;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.3;
  }

  .ct-result i {
    font-size: 10px;
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .form-card {
      padding: 24px 20px 28px;
    }

    .ct-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .checkout-testimonials {
      margin-top: 32px;
      padding-top: 24px;
    }

    .ct-card {
      padding: 14px 16px;
    }

    .ct-header {
      margin-bottom: 12px;
    }
  }

  /* ========== What Happens Next ========== */
  .whats-next {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .whats-next li {
    font-size: 11.5px;
    color: var(--muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.4;
  }

  .whats-next li i {
    color: var(--success);
    font-size: 11px;
    flex-shrink: 0;
  }

  @media (max-width: 480px) {
    .whats-next {
      gap: 5px;
      margin-top: 14px;
    }

    .whats-next li {
      font-size: 10.5px;
    }
  }

  /* ========== Password Strength Bar ========== */
  .pwd-strength-container {
    margin-top: 10px;
    display: none;
  }

  .pwd-strength-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
  }

  .pwd-strength-fill {
    height: 100%;
    width: 0%;
    transition: width .25s ease, background .25s ease;
    background: var(--danger);
    border-radius: 2px;
  }

  .pwd-strength-fill.medium {
    background: #f59e0b;
  }

  .pwd-strength-fill.strong {
    background: var(--success);
  }

  .pwd-strength-label {
    font-size: 11px;
    color: var(--muted);
    margin-top: 5px;
    display: block;
    font-weight: 500;
  }


/* ============================================================
   ===== CHECKOUT V2 — PLAYFUL UMKM THEME OVERRIDES ============
   ============================================================
   Append-only — di atas adalah baseline (clone dari wizard original).
   Below adalah override style biar tampilan playful UMKM consistent
   dengan landing page (newlp/index2.html), banner Support UMKM, dan
   theme keseluruhan brand.

   Strategy:
   - Reuse class hook yang sudah ada (.checkout-header, .summary-card,
     .platforms_bo-input, dll) — TIDAK rename apa pun.
   - Pakai descendant selector / higher specificity supaya override
     menang tanpa !important spam.
   - Palette match UMKM: cream bg, kuning hangat, merah-coklat accent,
     thick black borders, brutal offset shadows.
   ============================================================ */

/* ----- Body canvas — cream warm bg ----- */
body { background: #fffaf0; }

/* ----- Header — brutal bottom border + cream surface ----- */
.checkout-header {
  background: #fffaf0;
  border-bottom: 3px solid #1f2937;
  box-shadow: 0 2px 0 0 rgba(31, 41, 55, 0.04);
}
.checkout-logo-img {
  filter: contrast(1.05);
}
.checkout-secure {
  background: #fef3c7;
  border: 2px solid #b45309;
  border-radius: 999px;
  padding: 6px 14px;
  color: #78350f;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  box-shadow: 2px 2px 0 0 #b45309;
}
.checkout-secure i { color: #b45309; }

/* ----- Container backdrop ----- */
.checkout-container {
  padding-top: 28px;
}

/* ----- Form card wrapper (brutal cream card) ----- */
.checkout-form-col .summary-card,
.summary-card {
  background: #ffffff;
  border: 2.5px solid #1f2937 !important;
  border-radius: 18px !important;
  box-shadow: 5px 5px 0 0 #1f2937;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ----- Stepper — chips brutal (CORRECT class names) ----- */
.checkout-stepper {
  display: flex !important;
  gap: 10px !important;
  align-items: center !important;
  flex-wrap: wrap;
  margin-bottom: 18px !important;
}
.checkout-stepper .stepper-step {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #fff !important;
  border: 2.5px solid #1f2937 !important;
  border-radius: 999px !important;
  padding: 7px 14px 7px 8px !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  color: #4b5563 !important;
  box-shadow: 2px 2px 0 0 #1f2937 !important;
}
.checkout-stepper .stepper-num {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: #e5e7eb !important;
  color: #4b5563 !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  border: 2px solid #1f2937 !important;
  flex-shrink: 0 !important;
}
.checkout-stepper .stepper-step.is-active {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  color: #fff !important;
  border-color: #1f2937 !important;
  box-shadow: 3px 3px 0 0 #1f2937 !important;
}
.checkout-stepper .stepper-step.is-active .stepper-num {
  background: #fff !important;
  color: #dc2626 !important;
  border-color: #fff !important;
}
.checkout-stepper .stepper-line {
  flex: 0 0 24px !important;
  height: 2px !important;
  background: #1f2937 !important;
}

/* ----- Form card — brutal cream ----- */
.form-card {
  background: #fff !important;
  border: 2.5px solid #1f2937 !important;
  border-radius: 20px !important;
  box-shadow: 5px 5px 0 0 #1f2937 !important;
  padding: 24px !important;
  margin-bottom: 20px;
}

/* ----- Checkout title group — playful display -----
   No dashed border-bottom (terlihat aneh + bikin gap besar ke section
   label). Cukup margin-bottom kecil utk separation natural. */
.checkout-title-group {
  margin-bottom: 14px !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}
.checkout-title-group h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  color: #1f2937 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 8px !important;
}
.checkout-title-group p {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  color: #4b5563 !important;
  font-weight: 500 !important;
}
.checkout-title-group a {
  color: #dc2626 !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}
.checkout-title-group a:hover {
  color: #991b1b !important;
  text-decoration: underline !important;
}

/* Primary checkout CTA */
.btn-primary-checkout {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 20px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.005em !important;
  border: 2.5px solid #1f2937 !important;
  box-shadow: 4px 4px 0 0 #1f2937 !important;
  transition: transform 0.15s, box-shadow 0.15s !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  min-height: 52px !important;
}
.btn-primary-checkout span {
  white-space: nowrap !important;
}
.btn-primary-checkout i {
  flex-shrink: 0 !important;
}
.btn-primary-checkout:hover {
  transform: translate(-1px, -2px) !important;
  box-shadow: 5px 6px 0 0 #1f2937 !important;
  color: #fff !important;
}
.btn-primary-checkout:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 0 0 0 0 #1f2937 !important;
}
.btn-primary-checkout:disabled {
  background: #9ca3af !important;
  cursor: not-allowed !important;
  opacity: 0.7 !important;
}

/* Trust badges row */
.trust-badges {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 14px !important;
  justify-content: center;
}
.trust-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: #fef3c7 !important;
  border: 2px solid #b45309 !important;
  border-radius: 999px !important;
  padding: 5px 11px !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 11.5px !important;
  color: #78350f !important;
}
.trust-badge i { color: #b45309 !important; }

/* Popular badge on payment options */
.pm-badge-popular {
  display: inline-flex !important;
  background: #dc2626 !important;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 9.5px !important;
  letter-spacing: 0.1em !important;
  padding: 3px 8px !important;
  border-radius: 999px !important;
  border: 2px solid #1f2937 !important;
  box-shadow: 1.5px 1.5px 0 0 #1f2937 !important;
  text-transform: uppercase;
}

/* Password strength */
.pwd-strength-bar {
  background: #fef3c7 !important;
  border: 2px solid #1f2937 !important;
  border-radius: 999px !important;
  height: 10px !important;
  overflow: hidden;
}
.pwd-strength-fill {
  height: 100% !important;
  border-radius: 999px !important;
  transition: width 0.2s, background 0.2s;
}
.pwd-strength-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 11.5px !important;
}

/* Mobile sticky total */
.mobile-sticky-total {
  background: #1f2937 !important;
  border-top: 3px solid #b45309 !important;
  box-shadow: 0 -4px 0 0 #b45309 !important;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom)) !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.mobile-sticky-total .mst-info {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
/* Label "Total" — amber uppercase kecil biar contrast vs dark navy */
.mobile-sticky-total .mst-info small {
  color: #fde68a !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  margin-bottom: 2px !important;
}
/* Grand total "IDR 549.000,-" — putih besar biar visible vs dark navy */
.mobile-sticky-total .mst-info b,
.mobile-sticky-total .mst-info .grandtotal {
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  white-space: nowrap !important;
}
.mobile-sticky-total .mst-cta {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  padding: 10px 18px !important;
  border: 2px solid #fff !important;
  font-size: 14px !important;
}

/* Section labels (AKSES AKUN, etc) — find by text positioning above form rows */
.akses-akun,
[class*="section-label"] {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  color: #78350f !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  border-bottom: 1.5px solid #fde68a !important;
}

/* ----- Input fields — pill brutal ----- */
.platforms_bo-input {
  background: #fff7ed !important;
  border: 2px solid #d1d5db !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15px;
  color: #1f2937;
  font-weight: 600;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s !important;
}
.platforms_bo-input:focus {
  border-color: #dc2626 !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12) !important;
  outline: none !important;
}
.platforms_bo-input::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

/* Field group label */
.info-input {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #451a03;
  margin-bottom: 6px;
}

/* Password toggle wrapper */
.password-input-wrapper { position: relative; }

/* WA country select group */
.wa-input-group {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #d1d5db;
}
.wa-input-group:focus-within {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}
.wa-input-group .platforms_bo-input {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.wa-country-select {
  background: #fef3c7;
  border-right: 2px solid #d1d5db;
  padding: 12px 10px;
  font-weight: 700;
  font-size: 14px;
  color: #78350f;
  cursor: pointer;
}

/* ----- Primary buttons — pill brutal ----- */
.platforms_bo-btn,
.platforms_bo-btn--primary {
  border-radius: 999px !important;
  padding: 14px 24px !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800 !important;
  font-size: 15px !important;
  letter-spacing: 0.01em;
  border: 2.5px solid #1f2937 !important;
  box-shadow: 4px 4px 0 0 #1f2937 !important;
  transition: transform 0.15s, box-shadow 0.15s !important;
}
.platforms_bo-btn--primary {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  color: #fff !important;
}
.platforms_bo-btn--primary:hover {
  transform: translate(-1px, -2px) !important;
  box-shadow: 5px 6px 0 0 #1f2937 !important;
}
.platforms_bo-btn--primary:active {
  transform: translate(2px, 2px) !important;
  box-shadow: 0 0 0 0 #1f2937 !important;
}
.platforms_bo-btn--ghost {
  background: #fff !important;
  color: #1f2937 !important;
}
.platforms_bo-btn--ghost:hover {
  background: #fef3c7 !important;
  transform: translate(-1px, -2px) !important;
  box-shadow: 5px 6px 0 0 #1f2937 !important;
}

/* ----- Coupon trigger "Punya Kode Kupon?" - brutal CTA card ----- */
.trigger-coupon-code-input {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  background: #fef3c7 !important;
  border: 2.5px dashed #b45309 !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  margin: 0 0 12px !important;
  color: #78350f !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s !important;
  position: relative;
}
.trigger-coupon-code-input::before {
  content: '🎟️';
  font-size: 18px;
  margin-right: 4px;
  flex-shrink: 0;
}
.trigger-coupon-code-input:hover {
  background: #fde68a !important;
  border-color: #92400e !important;
  transform: translate(-1px, -1px);
}
.trigger-coupon-code-input span {
  background: #fff !important;
  color: #1f2937 !important;
  font-weight: 800 !important;
  font-size: 12.5px !important;
  text-decoration: none !important;
  padding: 6px 12px !important;
  border: 2px solid #1f2937 !important;
  border-radius: 999px !important;
  box-shadow: 2px 2px 0 0 #1f2937 !important;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s !important;
}
.trigger-coupon-code-input span:hover {
  background: #1f2937 !important;
  color: #fff !important;
  transform: translate(-1px, -1px);
}
.trigger-coupon-code-input span::before {
  display: none !important;
}

/* ----- Coupon input + apply/remove buttons -----
   NOTE: gak pakai display:flex !important di sini karena inline
   style="display:none" dari PHP harus bisa hide frame-coupon-code
   (default state pas $coupon_code kosong). Pakai :not() scope:
   apply flex layout hanya kalau gak ada inline display:none.
   Pakai flex-wrap:wrap + flex-basis:100% di message → buttons stay
   sebaris dengan input, message wrap ke baris baru di bawah. */
.frame-coupon-code {
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}
.frame-coupon-code:not([style*="display: none"]):not([style*="display:none"]) {
  display: flex !important;
}
.frame-coupon-code .err-message-coupon,
.frame-coupon-code .success-message-coupon {
  flex-basis: 100% !important;
  width: 100% !important;
  margin: 0 !important;
}
.coupon_code {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: 0 !important;
  background: #fff !important;
  border: 2.5px solid #1f2937 !important;
  border-radius: 12px !important;
  padding: 11px 14px !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  font-size: 14px !important;
  color: #1f2937 !important;
  text-transform: uppercase !important;
  box-shadow: 2px 2px 0 0 #1f2937 !important;
  transition: box-shadow 0.15s !important;
}
.coupon_code::placeholder {
  color: #9ca3af !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}
.coupon_code:focus {
  outline: none !important;
  box-shadow: 3px 3px 0 0 #b45309 !important;
  border-color: #b45309 !important;
}
.coupon_code.success {
  background: #d1fae5 !important;
  border-color: #16a34a !important;
  color: #065f46 !important;
  box-shadow: 2px 2px 0 0 #16a34a !important;
}
.coupon_code.invalid {
  background: #fee2e2 !important;
  border-color: #dc2626 !important;
  color: #7f1d1d !important;
  box-shadow: 2px 2px 0 0 #dc2626 !important;
}

.coupon-button {
  flex-shrink: 0 !important;
  border-radius: 12px !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  padding: 0 16px !important;
  min-width: 72px !important;
  border: 2.5px solid #1f2937 !important;
  box-shadow: 2px 2px 0 0 #1f2937 !important;
  transition: transform 0.15s, box-shadow 0.15s !important;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.coupon-button:hover {
  transform: translate(-1px, -1px) !important;
  box-shadow: 3px 3px 0 0 #1f2937 !important;
}
.coupon-apply-button {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
  color: #fff !important;
}
.coupon-remove-button {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  color: #fff !important;
}
.coupon-remove-button.invalid {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

/* Frame voucher wrapper - tambah subtle bg context */
.frame-voucher-input {
  margin-top: 4px;
}

.err-message-coupon {
  color: #7f1d1d;
  background: #fee2e2;
  border: 2px solid #dc2626;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 8px;
}
.success-message-coupon {
  color: #065f46;
  background: #d1fae5;
  border: 2px solid #16a34a;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 8px;
}

/* ----- Payment group cards — brutal hover lift ----- */
.payment-group {
  background: #fff;
  border: 2px solid #1f2937 !important;
  border-radius: 14px !important;
  margin-bottom: 12px;
  box-shadow: 3px 3px 0 0 #1f2937;
  transition: transform 0.15s, box-shadow 0.15s;
}
.payment-group:hover {
  transform: translate(-1px, -2px);
  box-shadow: 4px 5px 0 0 #1f2937;
}
.payment-group__header {
  background: transparent !important;
  border: 0 !important;
  padding: 14px 16px !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1f2937;
}
.payment-group__header[aria-expanded="true"],
.payment-group:has(.payment-group__body[style*="block"]) .payment-group__header {
  background: #fef3c7 !important;
  border-bottom: 2px solid #1f2937 !important;
}
.payment-group__chev {
  background: #fef3c7;
  border: 2px solid #1f2937;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #78350f;
}

/* ----- Summary plan icon ----- */
.summary-plan-icon {
  background: #fef3c7 !important;
  border: 2px solid #1f2937 !important;
  border-radius: 14px !important;
  color: #78350f !important;
  box-shadow: 2px 2px 0 0 #1f2937;
}

/* ----- Summary pricing rows ----- */
.summary-row {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
}
.summary-row .red-text {
  color: #dc2626 !important;
  font-weight: 700;
}

/* ----- Total dibayar — dark brutal card ----- */
/* ----- Total yang Dibayar card — vertical stack utk readability -----
   Card sempit (~340px) sering bikin text "Total yang Dibayar" wrap 2 baris
   kalau horizontal. Stack vertikal: label kecil uppercase di atas, angka
   gede di bawah. Cleaner hierarchy + gak kompetisi space. */
.summary-total-row {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
  background: #1f2937 !important;
  border: 2.5px solid #1f2937 !important;
  border-radius: 14px !important;
  padding: 16px 20px !important;
  margin-top: 14px !important;
  box-shadow: 4px 4px 0 0 #b45309 !important;
  max-width: 100% !important;
}
.summary-total-row .str-label {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  width: 100% !important;
}
.summary-total-row .str-label span {
  color: #fde68a !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}
.summary-total-row .str-savings {
  color: #86efac !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.summary-total-row .grandtotal {
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 26px !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  max-width: 100% !important;
  text-align: left !important;
  white-space: nowrap !important;
}

/* ----- Required indicator on payment ----- */
.required-select-payment {
  background: #fef3c7;
  border: 2px solid #dc2626;
  border-radius: 10px;
  padding: 8px 12px;
  color: #7f1d1d;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  box-shadow: 2px 2px 0 0 #dc2626;
}

/* ----- Mobile reflow ----- */
@media (max-width: 768px) {
  .checkout-header { padding: 10px 0; }
  .checkout-secure { font-size: 11px; padding: 4px 10px; }
  .checkout-secure span { display: none; }  /* icon-only mobile */
  .checkout-secure i { font-size: 14px; }
  .summary-card,
  .checkout-form-col .summary-card {
    box-shadow: 3px 3px 0 0 #1f2937 !important;
  }
  .platforms_bo-btn,
  .platforms_bo-btn--primary {
    box-shadow: 3px 3px 0 0 #1f2937 !important;
    font-size: 14px !important;
    padding: 12px 20px !important;
  }
  .summary-total-row .grandtotal { font-size: 19px !important; }
}

/* ============================================================
   ===== CHECKOUT V2 — FINAL POLISH ============================
   ============================================================
   User feedback: "jelek banget" + "gak usah ada navbar atas".
   Append final tweaks below — hide header, brutalize testimonials,
   trust badge circles, social proof, secondary elements.
   ============================================================ */

/* ----- HIDE NAVBAR/HEADER (per user request) ----- */
.checkout-header { display: none !important; }

/* Add top breathing room since header gone
   Baseline punya margin-top: -25px (pre-existing offset utk header).
   Override jadi 0 + padding-top yg cukup biar brutal shadow + thick border
   step indicator gak ke-clip viewport atas. */
.checkout-page {
  margin-top: 0 !important;
  padding-top: 40px !important;
}
@media (max-width: 768px) {
  .checkout-page { padding-top: 8px !important; }
  /* Container padding-top juga tighten di mobile biar step indicator
     gak terlalu jauh dari atas (user perception "jauh banget") */
  .checkout-container {
    padding-top: 8px !important;
  }
}

/* ----- Background — flat cream, no radial cutoff seam -----
   Sebelumnya pakai 2 radial gradients yang fade ke transparent di 35%
   radius — boundary radial-blob jadi seam visible horizontal di tengah
   page. Solusi: flat cream solid, no transition keras. */
html, body {
  background: #fff7ed !important;
}

/* ----- Bigger / playful stepper ----- */
.checkout-stepper {
  justify-content: flex-start !important;
  margin: 0 0 22px !important;
  /* overflow:hidden di baseline clip brutal box-shadow pill — pakai visible
     + padding utk akomodir shadow extent (3px right, 3px bottom, 2.5px border) */
  overflow: visible !important;
  padding: 6px 8px 8px 4px !important;
}
.checkout-stepper .stepper-step {
  padding: 9px 18px 9px 10px !important;
  font-size: 14px !important;
  box-shadow: 3px 3px 0 0 #1f2937 !important;
}
.checkout-stepper .stepper-num {
  width: 26px !important;
  height: 26px !important;
  font-size: 13px !important;
}

/* ----- Bigger form card with playful decoration ----- */
.form-card {
  position: relative;
  padding: 28px !important;
  border-radius: 22px !important;
}
.form-card::after {
  content: '✨';
  position: absolute;
  top: -16px;
  right: 24px;
  font-size: 28px;
  filter: drop-shadow(2px 2px 0 #1f2937);
  pointer-events: none;
}

/* ----- Title group with more punch ----- */
.checkout-title-group h2 {
  font-size: 26px !important;
  line-height: 1.2 !important;
}
.checkout-title-group p {
  font-size: 14px !important;
}

/* ----- Section labels (AKSES AKUN, CARA MENGHUBUNGI ANDA) -----
   Sebelumnya pakai gradient bg yellow stripe + underline → ugly
   wide horizontal stripe. Redesign: brutal inline pill amber +
   compact, gak full-width, gak nutupin layout. */
.checkout-form-col .form-section-label,
.checkout-form-col [class*="section-label"],
.form-card > h3,
.form-card > div > h3,
.form-card .akses-akun,
.form-card > .section-divider {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 10.5px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #78350f !important;
  background: #fef3c7 !important;
  border: 2px solid #1f2937 !important;
  border-radius: 999px !important;
  padding: 6px 14px !important;
  margin: 22px 0 16px !important;
  text-align: left;
  display: inline-block !important;
  width: auto !important;
  max-width: 100% !important;
  box-shadow: 2px 2px 0 0 #1f2937 !important;
}

/* ----- WhatsApp number input — playful & functional ----- */
.wa-input-group {
  background: #fff !important;
  border-radius: 14px !important;
  border-width: 2.5px !important;
  border-style: solid !important;
  border-color: #1f2937 !important;
  overflow: hidden !important;
  padding: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  height: 52px !important;
  box-shadow: 3px 3px 0 0 #1f2937;
}
.wa-input-group:focus-within {
  box-shadow: 4px 4px 0 0 #1f2937 !important;
}
.wa-country-select {
  background: #fef3c7 !important;
  color: #1f2937 !important;
  border: 0 !important;
  border-right: 2px solid #1f2937 !important;
  border-radius: 0 !important;
  padding: 0 30px 0 14px !important;
  margin: 0 !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  line-height: 1 !important;
  min-width: 96px !important;
  height: auto !important;
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  /* Custom chevron-down */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M3 5l4 4 4-4' stroke='%231f2937' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-color: #fef3c7 !important;
  display: flex !important;
  align-items: center !important;
}
.wa-country-select:hover {
  background-color: #fde68a !important;
}
.wa-country-select:focus {
  outline: none !important;
  background-color: #fde68a !important;
}
.wa-input-group .platforms_bo-input {
  flex: 1 !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 16px !important;
  margin: 0 !important;
  height: 100% !important;
  font-size: 15px !important;
  outline: none !important;
  box-shadow: none !important;
}
.wa-input-group .platforms_bo-input:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* ----- Coupon CTA chevron + "Klik di sini" ----- */
.trigger-coupon-code-input {
  background: #fef3c7 !important;
  border: 2px dashed #b45309 !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  text-align: center !important;
}

/* ----- Trust badges circles — brutal -----
   overflow:visible + padding extent biar brutal shadow + thick
   border (2.5px) gak ke-clip top/right oleh container boundary. */
.trust-badges,
.checkout-summary-col .trust-badges {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px !important;
  margin-top: 22px !important;
  overflow: visible !important;
  padding: 6px 6px 8px 0 !important;
}
.trust-badges .trust-badge,
.checkout-summary-col .trust-badge {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 8px !important;
  border-radius: 18px !important;
  background: #fff !important;
  border: 2.5px solid #1f2937 !important;
  box-shadow: 3px 3px 0 0 #1f2937 !important;
  text-align: center;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  color: #1f2937 !important;
  gap: 4px !important;
  line-height: 1.3 !important;
  min-height: 76px;
}
.trust-badges .trust-badge i,
.checkout-summary-col .trust-badge i {
  font-size: 22px !important;
  background: #fef3c7 !important;
  border: 2px solid #1f2937 !important;
  border-radius: 50% !important;
  padding: 6px !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #b45309 !important;
  margin-bottom: 2px;
}
.trust-badges .trust-badge:nth-child(2) i { background: #d1fae5 !important; color: #16a34a !important; }
.trust-badges .trust-badge:nth-child(3) i { background: #ffe4e6 !important; color: #dc2626 !important; }

/* ----- Social proof line ----- */
.social-proof-line {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%) !important;
  border: 2px solid #b45309 !important;
  border-radius: 999px !important;
  padding: 8px 16px !important;
  text-align: center !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: #78350f !important;
  margin-top: 14px !important;
  box-shadow: 2px 2px 0 0 #b45309 !important;
}
.social-proof-line strong { color: #451a03 !important; }

/* ============================================================
   ===== TESTIMONIALS SECTION — PLAYFUL BRUTAL =================
   ============================================================ */
.checkout-testimonials {
  padding: 32px 0 48px !important;
  border-top: 2px dashed #fde68a !important;
  margin-top: 32px !important;
}
.checkout-testimonials .ct-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px !important;
}
.checkout-testimonials .ct-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  color: #451a03 !important;
}
.checkout-testimonials .ct-rating {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #fff !important;
  border: 2.5px solid #1f2937 !important;
  border-radius: 999px !important;
  padding: 6px 14px !important;
  box-shadow: 3px 3px 0 0 #1f2937 !important;
}
.checkout-testimonials .ct-stars-big {
  color: #f59e0b !important;
  font-size: 14px !important;
}
.checkout-testimonials .ct-rating-text {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: #1f2937 !important;
}
.checkout-testimonials .ct-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}
.checkout-testimonials .ct-card {
  background: #fff !important;
  border: 2.5px solid #1f2937 !important;
  border-radius: 18px !important;
  padding: 20px !important;
  box-shadow: 5px 5px 0 0 #1f2937 !important;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.checkout-testimonials .ct-card:hover {
  transform: translate(-2px, -3px);
  box-shadow: 7px 8px 0 0 #1f2937 !important;
}
/* Cycling colors per testimonial */
.checkout-testimonials .ct-grid > .ct-card:nth-child(1) {
  border-color: #dc2626 !important;
  box-shadow: 5px 5px 0 0 #dc2626 !important;
}
.checkout-testimonials .ct-grid > .ct-card:nth-child(1):hover {
  box-shadow: 7px 8px 0 0 #dc2626 !important;
}
.checkout-testimonials .ct-grid > .ct-card:nth-child(2) {
  border-color: #f59e0b !important;
  box-shadow: 5px 5px 0 0 #f59e0b !important;
}
.checkout-testimonials .ct-grid > .ct-card:nth-child(2):hover {
  box-shadow: 7px 8px 0 0 #f59e0b !important;
}
.checkout-testimonials .ct-grid > .ct-card:nth-child(3) {
  border-color: #16a34a !important;
  box-shadow: 5px 5px 0 0 #16a34a !important;
}
.checkout-testimonials .ct-grid > .ct-card:nth-child(3):hover {
  box-shadow: 7px 8px 0 0 #16a34a !important;
}
.checkout-testimonials .ct-stars {
  color: #f59e0b !important;
  font-size: 14px !important;
  margin-bottom: 10px !important;
}
.checkout-testimonials .ct-quote {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 14px !important;
  color: #1f2937 !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
  font-style: normal !important;
  margin-bottom: 14px !important;
}
.checkout-testimonials .ct-author {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.checkout-testimonials .ct-avatar {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 2.5px solid #1f2937 !important;
  background: #dc2626 !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  box-shadow: 2px 2px 0 0 #1f2937 !important;
}
.checkout-testimonials .ct-grid > .ct-card:nth-child(2) .ct-avatar { background: #f59e0b !important; }
.checkout-testimonials .ct-grid > .ct-card:nth-child(3) .ct-avatar { background: #16a34a !important; }
.checkout-testimonials .ct-meta {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
.checkout-testimonials .ct-meta strong {
  font-weight: 800 !important;
  color: #1f2937 !important;
  font-size: 13.5px !important;
}
.checkout-testimonials .ct-meta small {
  display: block !important;
  font-size: 11.5px !important;
  color: #6b7280 !important;
}
.checkout-testimonials .ct-result {
  margin-top: 12px !important;
  padding: 6px 12px !important;
  background: #ecfccb !important;
  border: 2px solid #16a34a !important;
  border-radius: 999px !important;
  color: #14532d !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-weight: 800 !important;
  font-size: 11.5px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  box-shadow: 2px 2px 0 0 #16a34a !important;
}

/* ============================================================
   FOOTER — playful brutal, match theme
   ============================================================ */
.checkout-footer {
  margin-top: 48px !important;
  padding: 40px 20px 32px !important;
  text-align: center;
  border-top: 0 !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(251, 191, 36, 0.12) 0%, transparent 60%),
    #fff7ed !important;
  position: relative;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
}
/* Dashed wave divider di atas footer */
.checkout-footer::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 40px));
  height: 0;
  border-top: 3px dashed #fde68a;
}
.checkout-footer-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
/* Meta business partner badge — brutal pill */
.checkout-footer .footer-meta-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 18px !important;
  border: 2.5px solid #1f2937 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #1f2937 !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  box-shadow: 3px 3px 0 0 #1f2937 !important;
  letter-spacing: 0.01em;
}
.checkout-footer .footer-meta-badge i {
  color: #0866ff;
  font-size: 16px;
}
.checkout-footer .footer-meta-badge img {
  height: 16px !important;
  width: auto !important;
  margin: 0 !important;
}
/* Trust row — small brutal pills */
.checkout-footer .footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.checkout-footer .footer-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #fef3c7;
  border: 2px solid #1f2937;
  border-radius: 999px;
  color: #78350f;
  font-weight: 700;
  font-size: 11.5px;
  box-shadow: 2px 2px 0 0 #1f2937;
  white-space: nowrap;
}
.checkout-footer .footer-trust-pill i {
  color: #16a34a;
  font-size: 11px;
}
/* Affiliate name */
.checkout-footer .affiliate-name {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 2px dashed #dc2626;
  border-radius: 999px;
  color: #7f1d1d;
  font-weight: 600;
  font-size: 12.5px;
}
.checkout-footer .affiliate-name b {
  color: #dc2626;
  font-weight: 800;
}
.checkout-footer .affiliate-name i {
  color: #dc2626;
  font-size: 12px;
}
/* Copyright line */
.checkout-footer .footer-copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12.5px;
  color: #78350f;
  font-weight: 600;
  line-height: 1.6;
}
.checkout-footer .footer-copyright b {
  color: #1f2937;
  font-weight: 800;
}
.checkout-footer .footer-sep {
  color: #d97706;
  font-weight: 800;
  opacity: 0.6;
}
.checkout-footer .footer-heart {
  display: inline-block;
  animation: footerHeartBeat 1.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes footerHeartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
@media (max-width: 640px) {
  .checkout-footer {
    margin-top: 16px !important;
    padding: 28px 16px 24px !important;
  }
  .checkout-footer-inner { gap: 14px; }
  .checkout-footer .footer-trust-row { gap: 6px; }
  .checkout-footer .footer-trust-pill { font-size: 10.5px; padding: 5px 10px; }
  .checkout-footer .footer-copyright { font-size: 11.5px; }
  .checkout-footer .footer-sep { display: none; }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .checkout-page { padding-top: 16px; }
  .form-card::after { font-size: 22px; top: -12px; right: 16px; }
  .form-card { padding: 20px !important; }
  .checkout-title-group h2 { font-size: 20px !important; }
  .checkout-testimonials .ct-grid { grid-template-columns: 1fr !important; }
  .checkout-testimonials .ct-card { box-shadow: 3px 3px 0 0 #1f2937 !important; }
  .checkout-testimonials .ct-grid > .ct-card:nth-child(1) { box-shadow: 3px 3px 0 0 #dc2626 !important; }
  .checkout-testimonials .ct-grid > .ct-card:nth-child(2) { box-shadow: 3px 3px 0 0 #f59e0b !important; }
  .checkout-testimonials .ct-grid > .ct-card:nth-child(3) { box-shadow: 3px 3px 0 0 #16a34a !important; }
  .trust-badges { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .trust-badges .trust-badge { font-size: 9px !important; padding: 10px 6px !important; }
  .trust-badges .trust-badge i { width: 30px !important; height: 30px !important; font-size: 18px !important; }
}

/* ============================================================
   TESTIMONI MARQUEE + VIDEO LIGHTBOX (porting dari LP / index2.html)
   Match UI/UX dengan LP — brutal cards, cycling color, scroll auto,
   pause on hover, YouTube lightbox.
   ============================================================ */

/* Hide old .checkout-testimonials (replaced by .testi-wz LP-style) */
.checkout-testimonials { display: none !important; }

/* ---------- Section wrapper — brutal box dengan bg playful ---------- */
.testi-wz {
  background:
    radial-gradient(circle at 15% 25%, rgba(254, 215, 170, 0.5) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(254, 202, 202, 0.4) 0%, transparent 45%),
    linear-gradient(180deg, #fffaf0 0%, #fff7ed 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  border-radius: 24px;
  border: 2.5px solid #1f2937;
  box-shadow: 6px 6px 0 0 #1f2937;
}
.testi-wz::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.testi-wz::after {
  content: '❤️';
  position: absolute;
  bottom: 20px; left: 30px;
  font-size: 28px;
  opacity: 0.35;
  transform: rotate(-15deg);
  pointer-events: none;
}
.testi-wz .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.testi-wz .section__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.4vw, 32px);
  color: #451a03;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 auto 8px;
}
.testi-wz .section__title .hl {
  background: linear-gradient(180deg, transparent 60%, #fde68a 60%);
  padding: 0 4px;
  color: inherit;
}
.testi-wz .section__sub {
  text-align: center;
  font-size: 15px;
  color: #78350f;
  font-weight: 600;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ---------- Marquee track + animation ---------- */
@keyframes testiScroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.testi-wz .testi-marquee {
  margin: 32px 0 0;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}
.testi-wz .testi-marquee__track {
  display: flex;
  width: max-content;
  animation: testiScroll 35s linear infinite;
}
.testi-wz .testi-marquee:hover .testi-marquee__track,
.testi-wz .testi-marquee.is-paused .testi-marquee__track {
  animation-play-state: paused;
}
.testi-wz .testi-marquee__group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

/* ---------- Card (brutal cycling color) ---------- */
.testi-wz .testi-card {
  background: #fff;
  border: 2.5px solid #1f2937;
  border-radius: 18px;
  padding: 20px 22px 22px;
  box-shadow: 5px 5px 0 0 #1f2937;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 320px;
  flex-shrink: 0;
  position: relative;
}
.testi-wz .testi-card:hover {
  transform: translate(-2px, -3px);
  box-shadow: 7px 8px 0 0 #1f2937;
}
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+1) {
  border-color: #dc2626;
  box-shadow: 5px 5px 0 0 #dc2626;
}
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+1):hover { box-shadow: 7px 8px 0 0 #dc2626; }
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+2) {
  border-color: #f59e0b;
  box-shadow: 5px 5px 0 0 #f59e0b;
}
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+2):hover { box-shadow: 7px 8px 0 0 #f59e0b; }
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+3) {
  border-color: #16a34a;
  box-shadow: 5px 5px 0 0 #16a34a;
}
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+3):hover { box-shadow: 7px 8px 0 0 #16a34a; }
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+4) {
  border-color: #7c3aed;
  box-shadow: 5px 5px 0 0 #7c3aed;
}
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+4):hover { box-shadow: 7px 8px 0 0 #7c3aed; }

.testi-wz .testi-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 80px;
  line-height: 1;
  color: #fde68a;
  font-weight: 800;
  z-index: 1;
  text-shadow: 2px 2px 0 #1f2937;
}

/* ---------- Card: Video thumb ---------- */
.testi-wz .testi-card__thumb {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #1f2937;
  margin-bottom: 14px;
  box-shadow: 2px 2px 0 0 #1f2937;
  position: relative;
  cursor: pointer;
  background: #000;
  aspect-ratio: 4 / 3;
}
.testi-wz .testi-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-wz .testi-card__thumb-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  transition: transform 0.2s;
}
.testi-wz .testi-card__thumb:hover .testi-card__thumb-play { transform: translate(-50%, -50%) scale(1.1); }

/* ---------- Card: Stars / quote / author / result ---------- */
.testi-wz .testi-card__stars {
  font-size: 18px;
  color: #f59e0b;
  margin-bottom: 12px;
  text-shadow: 1px 1px 0 #fbbf24;
}
.testi-wz .testi-card:hover .testi-card__stars { animation: testiStarsJiggle 0.5s ease; }
@keyframes testiStarsJiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}
.testi-wz .testi-card__quote {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15px;
  color: #1f2937;
  line-height: 1.65;
  font-weight: 500;
  margin: 0 0 16px;
  position: relative;
  z-index: 2;
}
.testi-wz .testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-wz .testi-card__avatar {
  width: 44px;
  height: 44px;
  border: 2.5px solid #1f2937;
  border-radius: 50%;
  color: #fff;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 2px 2px 0 0 #1f2937;
  background: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+2) .testi-card__avatar { background: #f59e0b; }
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+3) .testi-card__avatar { background: #16a34a; }
.testi-wz .testi-marquee__group > .testi-card:nth-child(4n+4) .testi-card__avatar { background: #7c3aed; }
.testi-wz .testi-card__name {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 14.5px;
  color: #1f2937;
}
.testi-wz .testi-card__role {
  font-size: 12.5px;
  color: #6b7280;
  font-weight: 500;
}
.testi-wz .testi-card__result {
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ecfccb;
  border: 2px solid #16a34a;
  color: #14532d;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  box-shadow: 2px 2px 0 0 #16a34a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}
.testi-wz .testi-card__result i { color: #16a34a; }

/* ---------- Tonton Cerita button ---------- */
.testi-wz .testi-card .btn.btn--ghost {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 2px solid #1f2937;
  color: #1f2937;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 2px 2px 0 0 #1f2937;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.testi-wz .testi-card .btn.btn--ghost:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 0 #1f2937;
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 640px) {
  .testi-wz { padding: 40px 0 28px; margin-top: 16px; border-radius: 18px; }
  .testi-wz .testi-card { width: 280px; padding: 18px 18px 20px; }
  .testi-wz .testi-card::before { font-size: 64px; top: -14px; }
}

/* ============================================================
   VIDEO LIGHTBOX MODAL — YouTube iframe overlay
   ============================================================ */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 18, 32, 0.70);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal-overlay--active { display: flex; }
.video-modal {
  background: #fff;
  border: 2.5px solid #1f2937;
  border-radius: 20px;
  padding: 28px;
  max-width: 720px;
  width: 100%;
  position: relative;
  box-shadow: 6px 6px 0 0 #1f2937;
  animation: testiModalFadeIn 0.25s ease;
}
@keyframes testiModalFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.video-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 32px;
  color: #6b7280;
  cursor: pointer;
  padding: 4px 10px;
  line-height: 1;
  font-weight: 700;
}
.video-modal__close:hover { color: #111827; }
.video-modal__title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1f2937;
  margin: 0 32px 14px 0;
  line-height: 1.3;
}
.video-modal__frame-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  border: 2px solid #1f2937;
}
.video-modal__frame-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
