:root {
  --bg-main: #09090b;
  --bg-card: rgba(18, 16, 26, 0.85);
  --bg-card-hover: rgba(24, 21, 35, 0.95);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-purple: rgba(139, 92, 246, 0.35);
  --border-purple-glow: rgba(139, 92, 246, 0.6);
  --accent-purple: #8b5cf6;
  --accent-purple-light: #a78bfa;
  --accent-purple-dark: #7c3aed;
  --accent-green: #22c55e;
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Ambient glow */
.ambient-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.22;
}

.glow-top {
  width: 550px;
  height: 550px;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #8b5cf6 0%, rgba(124, 58, 237, 0) 70%);
}

.glow-bottom {
  width: 450px;
  height: 450px;
  bottom: -150px;
  right: -50px;
  background: radial-gradient(circle, #6366f1 0%, rgba(99, 102, 241, 0) 70%);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(9, 9, 11, 0.75);
  border-bottom: 1px solid var(--border-subtle);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

.brand-symbol {
  width: 32px;
  height: 32px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-text {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 40%, #c4b5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 30px;
  font-size: 12px;
  color: #4ade80;
}

.live-pulse {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.nav-btn-bot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm);
  color: #c4b5fd;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-btn-bot:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--accent-purple);
  color: #ffffff;
}

/* Wizard Progress Bar */
.wizard-progress-bar {
  max-width: 650px;
  margin: 30px auto 10px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
  transition: var(--transition);
}

.progress-step.active {
  opacity: 1;
}

.progress-step.completed {
  opacity: 0.9;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #18181b;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: var(--transition);
}

.progress-step.active .step-dot {
  background: var(--accent-purple);
  border-color: var(--accent-purple-light);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.6);
}

.progress-step.completed .step-dot {
  background: #22c55e;
  border-color: #4ade80;
  color: #ffffff;
}

.step-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.progress-step.active .step-label {
  color: var(--text-primary);
}

.step-connector {
  flex: 1;
  height: 2px;
  background: var(--border-subtle);
  margin: 0 8px 18px;
  transition: var(--transition);
}

.step-connector.active {
  background: linear-gradient(90deg, var(--accent-purple), var(--border-subtle));
}

/* Wizard Main */
.wizard-main {
  max-width: 780px;
  width: 100%;
  margin: 0 auto 50px;
  padding: 0 20px;
  flex: 1;
  position: relative;
  z-index: 10;
}

.wizard-view {
  display: none;
  animation: fadeInView 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.wizard-view.active {
  display: block;
}

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

/* View Headers */
.view-header {
  text-align: center;
  margin-bottom: 28px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid var(--border-purple);
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 14px;
}

.chip-badge {
  background: var(--accent-purple);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.5px;
}

.chip-date {
  color: var(--accent-purple-light);
  font-weight: 500;
}

.view-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.view-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 12px;
  transition: var(--transition);
}

.btn-back:hover {
  color: var(--text-primary);
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.card-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.product-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-gemini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--border-purple);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #c4b5fd;
}

.badge-stock {
  font-size: 12px;
  color: #4ade80;
  font-weight: 600;
}

.pricing-badge {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-badge .currency {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-badge .amount {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
}

.pricing-badge .period {
  font-size: 13px;
  color: var(--text-muted);
}

.product-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.gemini-icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.product-meta {
  font-size: 12px;
  color: var(--accent-purple-light);
  font-weight: 500;
}

.product-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-description strong {
  color: #ffffff;
}

/* Feature Pills */
.feature-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-primary);
}

.feature-pill svg {
  color: var(--accent-purple);
  flex-shrink: 0;
}

/* Buttons */
.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark));
  color: #ffffff;
  border: 1px solid var(--accent-purple-light);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 25px rgba(139, 92, 246, 0.45);
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.65);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-block {
  width: 100%;
}

/* Form Styles */
.form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 30px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.label-hint {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
}

.form-input {
  width: 100%;
  background: #0f0e17;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px 12px 42px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font-sans);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.pkg-card {
  position: relative;
  background: #0f0e17;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.pkg-card:hover {
  background: #141320;
  border-color: rgba(139, 92, 246, 0.4);
}

.pkg-card.active {
  background: rgba(139, 92, 246, 0.12);
  border-color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

.pkg-card.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.pkg-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.pkg-card.active .pkg-radio {
  border-color: var(--accent-purple);
  background: var(--accent-purple);
  box-shadow: inset 0 0 0 3px #0f0e17;
}

.pkg-info {
  flex: 1;
}

.pkg-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.pkg-desc {
  font-size: 11px;
  color: var(--text-muted);
}

.pkg-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-purple-light);
}

.pkg-badge {
  position: absolute;
  top: -8px;
  right: 10px;
  background: #22c55e;
  color: #000000;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Summary Box */
.summary-box {
  background: #0d0c14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 10px 0;
}

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

.total-amount {
  font-size: 18px;
  color: var(--accent-purple-light);
  font-weight: 800;
}

.text-success {
  color: #4ade80;
  font-weight: 600;
}

/* Payment Section */
.payment-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bank-card {
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.bank-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bank-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bank-icon {
  width: 38px;
  height: 38px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bank-name {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.bank-tag {
  font-size: 11px;
  color: var(--text-muted);
}

.order-id-pill {
  font-size: 13px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 4px 12px;
  border-radius: 20px;
  color: var(--text-secondary);
}

.order-id-pill strong {
  color: var(--accent-purple-light);
}

/* Bank Ledger */
.bank-ledger {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.ledger-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d0c14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.ledger-item.highlight-item {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--accent-purple);
}

.ledger-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ledger-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ledger-value {
  font-size: 15px;
  font-weight: 700;
}

.font-mono {
  font-family: var(--font-mono);
  letter-spacing: 0.5px;
}

.text-purple {
  color: var(--accent-purple-light);
}

.text-white {
  color: #ffffff;
}

.text-muted {
  color: var(--text-secondary);
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-copy:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-copy-primary {
  background: var(--accent-purple);
  border-color: var(--accent-purple-light);
  color: #ffffff;
}

.btn-copy-primary:hover {
  background: var(--accent-purple-dark);
}

/* Radar Status Box */
.radar-status-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.radar-indicator {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radar-core {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.radar-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.4);
  animation: radarPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes radarPing {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.radar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.radar-text strong {
  font-size: 13px;
  color: #4ade80;
}

.radar-text span {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Proof Upload Card */
.proof-upload-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.card-header-compact {
  margin-bottom: 16px;
}

.proof-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.proof-card-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

.dropzone {
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  background: #0d0c14;
  margin-bottom: 16px;
  transition: var(--transition);
}

.dropzone:hover, .dropzone.dragover {
  border-color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.05);
}

.file-input-hidden {
  display: none;
}

.dropzone-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--text-muted);
}

.dropzone-text {
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.dropzone-hint {
  font-size: 11px;
  color: var(--text-muted);
}

.dropzone-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.dropzone-preview img {
  max-height: 120px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.preview-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.btn-remove-file {
  background: transparent;
  border: none;
  color: #ef4444;
  font-weight: 600;
  cursor: pointer;
}

/* Success View */
.success-card {
  background: var(--bg-card);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.success-icon-wrapper {
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.success-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.success-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.order-recap-box {
  background: #0d0c14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  text-align: left;
}

.recap-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.recap-row:last-child {
  margin-bottom: 0;
}

.delivery-container {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.delivery-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #c4b5fd;
  margin-bottom: 14px;
}

.link-delivery-card {
  background: #070709;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 10px;
}

.link-delivery-card:last-child {
  margin-bottom: 0;
}

.link-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}

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

.link-url-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-purple-light);
  word-break: break-all;
}

.link-action-btns {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.success-instructions {
  background: #0d0c14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 28px;
  text-align: left;
}

.success-instructions h4 {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 8px;
}

.success-instructions ol {
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  background: rgba(9, 9, 11, 0.85);
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-brand {
  font-weight: 800;
  color: var(--text-primary);
  margin-right: 8px;
}

.footer-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4ade80;
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  transition: var(--transition);
}

.toast-container.hidden {
  opacity: 0;
  transform: translate(-50%, 15px);
  pointer-events: none;
}

.toast-content {
  background: #18181b;
  border: 1px solid var(--accent-purple);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 600px) {
  .product-card, .form-container, .bank-card, .success-card {
    padding: 20px 16px;
  }
  .view-title {
    font-size: 22px;
  }
  .pricing-badge .amount {
    font-size: 26px;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .feature-pills {
    grid-template-columns: 1fr;
  }
}
