/* ============================================================
   RingzU Checkout Pipeline — checkout.css
   Right-side fixed slideout panel
   Brand: #0021F7 blue · #FE5000 orange · #141722 dark
   Fonts: Poppins headings · Open Sans body
   Font Awesome: v6 (fa-solid / fas both supported)
   ============================================================ */

/* ── OVERLAY ── */
.rzu-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 12, 20, 0.70);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.rzu-modal-overlay.rzu-modal-active {
  display: block;
}

/* ── PANEL — slides in from right, stays attached ── */
.rzu-modal-box {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(720px, 100vw);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 48px rgba(0, 0, 0, 0.30);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
  border-radius: 0;
}

.rzu-modal-overlay.rzu-modal-active .rzu-modal-box {
  transform: translateX(0);
}

/* ── HEADER ── */
.rzu-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  height: 64px;
  min-height: 64px;
  flex-shrink: 0;
  background: #141722;
  background-image: url(images/background/pattern-4.png);
  background-size: cover;
}

.rzu-modal-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rzu-modal-brand img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

.rzu-modal-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.rzu-modal-plan-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.rzu-modal-plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.rzu-modal-plan-price {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #FE5000;
}

.rzu-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 8px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.rzu-modal-close:hover { color: #FE5000; }

/* ── PROGRESS BAR ── */
.rzu-progress-bar {
  background: #f4f6f8;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 22px 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rzu-prog-dots {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.rzu-prog-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.rzu-dot-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.25s, color 0.25s;
}

.rzu-prog-dot.active .rzu-dot-circle {
  background: #FE5000;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(254,80,0,0.18);
}

.rzu-prog-dot.complete .rzu-dot-circle {
  background: #0021F7;
  color: #ffffff;
}

.rzu-dot-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  white-space: nowrap;
}

.rzu-prog-dot.active .rzu-dot-label  { color: #FE5000; }
.rzu-prog-dot.complete .rzu-dot-label { color: #0021F7; }

.rzu-prog-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 4px;
  margin-bottom: 18px;
  transition: background 0.25s;
}

.rzu-prog-line.done { background: #0021F7; }

.rzu-step-count {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin-left: 14px;
  flex-shrink: 0;
}

/* ── ERROR BAR ── */
.rzu-step-error {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  color: #dc2626;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  flex-shrink: 0;
}

/* ── MODAL BODY + SLIDE VIEWPORT ── */
.rzu-modal-body {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.rzu-slides-track {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.rzu-slides-track[data-step="1"] { transform: translateX(0%); }
.rzu-slides-track[data-step="2"] { transform: translateX(-25%); }
.rzu-slides-track[data-step="3"] { transform: translateX(-50%); }
.rzu-slides-track[data-step="4"] { transform: translateX(-75%); }

.rzu-slide {
  width: 25%;
  flex-shrink: 0;
  height: 100%;
  overflow-y: auto;
  padding: 24px 28px 20px;
  box-sizing: border-box;
}

.rzu-slide::-webkit-scrollbar { width: 4px; }
.rzu-slide::-webkit-scrollbar-track { background: #f4f6f8; }
.rzu-slide::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }

/* ── STEP TITLES ── */
.rzu-step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #141722;
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.rzu-step-title i { color: #FE5000; font-size: 15px; }

.rzu-step-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 18px;
  line-height: 1.5;
}

/* ── SECTION DIVIDER ── */
.rzu-section-divider {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0021F7;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 6px;
  margin: 18px 0 14px;
}

/* ── 2-COLUMN FIELD GRID ── */
.rzu-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rzu-field-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Full-width override for fields that need it */
.rzu-col-2 { grid-column: span 2; }

/* ── LABELS ── */
.rzu-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.rzu-req { color: #FE5000; }

.rzu-field-hint {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  color: #9ca3af;
  line-height: 1.4;
}

/* ── INPUTS ── */
.rzu-input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #1f2937;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 7px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.rzu-input:focus {
  border-color: #0021F7;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,33,247,0.10);
}

.rzu-input.rzu-field-error {
  border-color: #ef4444;
  background: #fef2f2;
}

select.rzu-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

textarea.rzu-input {
  height: auto;
  padding: 10px 12px;
  resize: vertical;
}

/* ── CHECKBOX ROWS ── */
.rzu-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.rzu-checkbox-row input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: #0021F7;
  cursor: pointer;
}

.rzu-checkbox-row span {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
}

.rzu-checkbox-row a { color: #0021F7; text-decoration: underline; }

/* ── NOTICES ── */
.rzu-info-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0,33,247,0.04);
  border: 1px solid rgba(0,33,247,0.15);
  border-radius: 7px;
  padding: 10px 13px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
}

.rzu-info-notice i { color: #0021F7; margin-top: 2px; flex-shrink: 0; font-size: 14px; }

.rzu-port-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(254,80,0,0.04);
  border: 1px solid rgba(254,80,0,0.20);
  border-radius: 7px;
  padding: 10px 13px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
}

.rzu-port-notice i { color: #FE5000; margin-top: 2px; flex-shrink: 0; font-size: 14px; }

/* ── DIGIT STRIP (number checker) ── */
.rzu-digit-strip {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.rzu-digit-group { display: flex; gap: 4px; }

.rzu-digit-box {
  width: 34px;
  height: 40px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #141722;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.rzu-digit-box:focus { border-color: #0021F7; background: #fff; }

.rzu-digit-sep {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #9ca3af;
  line-height: 40px;
}

.rzu-check-btn {
  height: 40px;
  padding: 0 16px;
  background: #FE5000;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.rzu-check-btn:hover { background: #d44400; }

/* ── NUMBER RESULTS ── */
.rzu-number-result {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 13px;
  border-radius: 7px;
  margin-top: 8px;
  line-height: 1.5;
}

.rzu-result-pass {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.30);
  color: #15803d;
}

.rzu-result-fail {
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.25);
  color: #dc2626;
}

/* ── PLAN CARD (Step 2) ── */
.rzu-plan-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #141722;
  background-image: url(images/background/pattern-4.png);
  background-size: cover;
  border-radius: 9px;
  padding: 16px 20px;
  margin-bottom: 18px;
  gap: 16px;
}

.rzu-plan-badge {
  font-family: 'Open Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}

.rzu-plan-card-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.rzu-plan-card-price {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FE5000;
}

.rzu-plan-card-includes {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}

.rzu-plan-card-right { font-size: 28px; color: #FE5000; opacity: 0.8; }

/* ── ADDON TOGGLE ROW ── */
.rzu-addon-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

.rzu-addon-toggle-name {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #141722;
}

.rzu-addon-toggle-price {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #FE5000;
}

.rzu-addon-toggle-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
  margin-top: 2px;
}

/* ── TOGGLE SWITCH ── */
.rzu-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.rzu-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }

.rzu-toggle-slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.25s;
}

.rzu-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.rzu-toggle input:checked + .rzu-toggle-slider { background: #FE5000; }
.rzu-toggle input:checked + .rzu-toggle-slider::before { transform: translateX(20px); }

/* ── QTY CONTROL ── */
.rzu-qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.rzu-qty-btn {
  width: 30px;
  height: 30px;
  background: #e8ebff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #0021F7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
}

.rzu-qty-btn:hover { background: #0021F7; color: #ffffff; }

.rzu-qty-input {
  width: 48px;
  text-align: center;
  border: 1.5px solid #e8ebff;
  border-radius: 0;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  font-family: 'Poppins', sans-serif;
  -moz-appearance: textfield;
  background: #fff;
}

.rzu-qty-input::-webkit-inner-spin-button,
.rzu-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.rzu-qty-input:focus { outline: none; border-color: #0021F7; }

/* ── TERMS ── */
.rzu-terms-scroll {
  max-height: 180px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  padding: 14px 16px;
  font-size: 12px;
  color: #374151;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background: #fafafa;
}

.rzu-terms-scroll::-webkit-scrollbar { width: 4px; }
.rzu-terms-scroll::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 2px; }

.rzu-terms-scroll h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.rzu-terms-scroll p { margin-bottom: 8px; }
.rzu-terms-scroll a { color: #FE5000; text-decoration: none; }

.rzu-terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  font-size: 12px;
  line-height: 1.5;
  font-family: 'Open Sans', sans-serif;
  color: #374151;
  cursor: pointer;
  margin-bottom: 8px;
}

.rzu-terms-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: #0021F7;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.rzu-terms-check a { color: #0021F7; text-decoration: underline; }

/* ── IDENTITY NOTICE ── */
.rzu-identity-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #141722;
  background-image: url(images/background/pattern-4.png);
  background-size: cover;
  border-radius: 9px;
  padding: 16px 18px;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.rzu-identity-notice i {
  font-size: 20px;
  color: #FE5000;
  flex-shrink: 0;
  margin-top: 2px;
}

.rzu-identity-notice strong {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #ffffff;
  display: block;
  margin-bottom: 4px;
}

/* ── SIGNATURE ── */
.rzu-signature-block {
  background: #f8f9ff;
  border: 1.5px solid #e8ebff;
  border-radius: 9px;
  padding: 16px 18px;
  margin-top: 16px;
}

.rzu-signature-input {
  font-family: 'Poppins', sans-serif !important;
  font-style: italic;
  font-size: 16px !important;
  color: #0021F7 !important;
  border-color: #0021F7 !important;
  background: #ffffff !important;
}

.rzu-signature-input:focus {
  box-shadow: 0 0 0 3px rgba(0,33,247,0.12) !important;
}

/* ── SUBMIT ── */
.rzu-submit-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #FE5000 0%, #d94400 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 16px rgba(254,80,0,0.35);
  margin-top: 18px;
}

.rzu-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(254,80,0,0.42);
}

.rzu-submit-btn:active { transform: translateY(0); }
.rzu-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── SPINNER ── */
.rzu-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: rzuSpin 0.7s linear infinite;
  flex-shrink: 0;
}

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

/* ── FOOTER NAV ── */
.rzu-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 28px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  flex-shrink: 0;
}

.rzu-btn-back {
  height: 40px;
  padding: 0 20px;
  background: transparent;
  color: #6b7280;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid #e5e7eb;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color 0.2s, color 0.2s;
}

.rzu-btn-back:hover { border-color: #0021F7; color: #0021F7; }

.rzu-btn-next {
  height: 40px;
  padding: 0 28px;
  background: #0021F7;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, transform 0.15s;
  margin-left: auto;
}

.rzu-btn-next:hover { background: #001acc; transform: translateY(-1px); }

/* ── SIDEBAR — hidden, space returned to form ── */
.rzu-modal-sidebar { display: none !important; }

/* ── REVIEW / ORDER SUMMARY ── */
.rzu-review-summary {
  background: #f8f9ff;
  border: 1.5px solid #e8ebff;
  border-radius: 9px;
  padding: 16px;
  margin-bottom: 16px;
}

.rzu-review-header {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 10px;
}

.rzu-order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #eef0ff;
  font-size: 13px;
  color: #374151;
  font-family: 'Open Sans', sans-serif;
}

.rzu-order-line:last-child { border-bottom: none; }

.rzu-order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid #0021F7;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1f2937;
}

.rzu-order-total-row span:last-child { color: #FE5000; }

.rzu-order-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  color: #9ca3af;
  margin-top: 8px;
  line-height: 1.5;
}

/* ── SECTION DIVIDER MARGIN UTIL ── */
.rzu-mt { margin-top: 18px; }

/* ── THANK YOU OVERLAY ── */
.rzu-thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.80);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  animation: rzuFadeIn 0.4s ease both;
}

@keyframes rzuFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.rzu-thankyou-box {
  background: #ffffff;
  border-radius: 18px;
  max-width: 540px;
  width: 100%;
  padding: 44px 36px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.40);
  animation: rzuSlideUp 0.45s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes rzuSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.rzu-ty-icon {
  font-size: 60px;
  color: #22c55e;
  margin-bottom: 14px;
}

.rzu-ty-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 10px;
}

.rzu-ty-sub {
  font-size: 14px;
  color: #6b7280;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 24px;
  line-height: 1.6;
}

.rzu-ty-steps {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.rzu-ty-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8f9ff;
  border-left: 3px solid #0021F7;
  border-radius: 0 7px 7px 0;
  padding: 11px 13px;
  font-size: 13px;
  color: #374151;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
}

.rzu-ty-step i { color: #0021F7; font-size: 17px; flex-shrink: 0; margin-top: 2px; }

.rzu-ty-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.rzu-ty-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(90deg, #FE5000, #ff7a33);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rzu-ty-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(254,80,0,0.40);
  color: #fff;
  text-decoration: none;
}

.rzu-ty-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 50px;
  background: #f4f6f8;
  color: #374151;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  border: 1.5px solid #e5e7eb;
}

.rzu-ty-btn-secondary:hover { background: #e5e7eb; color: #1f2937; text-decoration: none; }

.rzu-ty-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  color: #9ca3af;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.rzu-ty-close:hover { background: #f4f6f8; color: #374151; }

/* ── MISC UTILITIES ── */
.rzu-field-hint { font-size: 11px; color: #9ca3af; font-family: 'Open Sans', sans-serif; line-height: 1.4; margin-top: 2px; }
.rzu-credit-cost { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: #0021F7; margin-top: 4px; min-height: 18px; }
.rzu-credit-cost-line { font-size: 12px; color: #0021F7; font-weight: 600; margin-top: 4px; }
.rzu-prog-line.done { background: #0021F7; }
.rzu-signature-block { border-top: 1px dashed #e5e7eb; padding-top: 14px; }

/* ── MOBILE ── */
@media (max-width: 640px) {
  .rzu-modal-box {
    width: 100vw;
    box-shadow: none;
  }

  .rzu-field-grid {
    grid-template-columns: 1fr;
  }

  .rzu-col-2 { grid-column: span 1; }

  .rzu-dot-label { display: none; }

  .rzu-prog-line { width: 14px; }

  .rzu-slide { padding: 18px 16px 16px; }

  .rzu-modal-footer { padding: 12px 16px; }

  .rzu-ty-actions { flex-direction: column; }

  .rzu-thankyou-box { padding: 36px 22px 28px; }

  .rzu-ty-title { font-size: 20px; }

  .rzu-step-title { white-space: normal; }
}
