/* LPOD Academy embeddable widget — scoped under .lpod-widget */
.lpod-widget * { box-sizing: border-box; }
.lpod-widget {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 460px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 22px 18px;
  color: #0f172a;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.lpod-widget .lpod-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2ea0d6;
  margin: 0 0 12px;
  text-align: center;
}
.lpod-widget .lpod-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.lpod-widget .lpod-progress span {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #e5e7eb;
  transition: background 0.3s;
}
.lpod-widget .lpod-progress span.lpod-on { background: #2ea0d6; }

.lpod-widget .lpod-stage-wrap { position: relative; min-height: 220px; }
.lpod-widget .lpod-stage {
  animation: lpod-slide 0.32s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes lpod-slide {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.lpod-widget h2 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #0f172a;
}
.lpod-widget p.lpod-sub {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 14px;
}
.lpod-widget label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0 6px;
  color: #1e293b;
}
.lpod-widget input,
.lpod-widget select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  font-family: inherit;
}
.lpod-widget input:focus,
.lpod-widget select:focus {
  outline: none;
  border-color: #2ea0d6;
  box-shadow: 0 0 0 3px rgba(46, 160, 214, 0.18);
}
.lpod-widget .lpod-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.lpod-widget .lpod-cards {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.lpod-widget .lpod-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: all 0.15s;
  text-align: left;
  font-family: inherit;
  font-size: 14px;
  color: #0f172a;
  width: 100%;
}
.lpod-widget .lpod-card:hover {
  border-color: #2ea0d6;
  background: rgba(46, 160, 214, 0.04);
}
.lpod-widget .lpod-card .lpod-card-title { font-weight: 600; display: block; }
.lpod-widget .lpod-card .lpod-card-meta { font-size: 12px; color: #64748b; margin-top: 2px; display: block; }
.lpod-widget .lpod-card .lpod-arrow { color: #2ea0d6; font-size: 18px; }
.lpod-widget .lpod-card .lpod-card-price { color: #2ea0d6; font-weight: 700; font-size: 15px; }
.lpod-widget .lpod-card.lpod-card-selected { border-color: #2ea0d6; background: #f0f9ff; box-shadow: 0 0 0 2px rgba(46,160,214,0.2); }
.lpod-widget .lpod-card.lpod-card-selected .lpod-card-title::before { content: "✓ "; color: #2ea0d6; }

.lpod-widget .lpod-error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 6px;
  display: block;
  min-height: 14px;
}
.lpod-widget .lpod-price-box {
  margin: 14px 0 4px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(46, 160, 214, 0.08), rgba(255, 140, 50, 0.06));
  border: 1px solid rgba(46, 160, 214, 0.25);
  border-radius: 10px;
}
.lpod-widget .lpod-price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: #475569;
  margin: 2px 0;
}
.lpod-widget .lpod-price-line.lpod-deposit {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed rgba(46, 160, 214, 0.4);
}
.lpod-widget .lpod-price-line .lpod-amount { color: #2ea0d6; font-weight: 700; font-size: 17px; }

.lpod-widget .lpod-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.lpod-widget .lpod-btn {
  flex: 1;
  height: 46px;
  background: linear-gradient(135deg, #2ea0d6, #1e88c2);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.15s;
  font-family: inherit;
}
.lpod-widget .lpod-btn:hover:not(:disabled) {
  box-shadow: 0 6px 18px rgba(46, 160, 214, 0.35);
  transform: translateY(-1px);
}
.lpod-widget .lpod-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.lpod-widget .lpod-btn-back {
  flex: 0 0 auto;
  width: 80px;
  background: transparent;
  color: #475569;
  border: 1px solid #cbd5e1;
}
.lpod-widget .lpod-btn-back:hover:not(:disabled) {
  background: #f1f5f9;
  box-shadow: none;
  transform: none;
}
.lpod-widget .lpod-trust {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 12px;
}
.lpod-widget .lpod-loading { text-align: center; padding: 40px 0; color: #64748b; font-size: 14px; }
