:root {
  color-scheme: dark;
  --bg: #060913;
  --panel: rgba(15, 22, 42, 0.65);
  --panel-hover: rgba(15, 22, 42, 0.8);
  --line: rgba(255, 255, 255, 0.08);
  --line-active: rgba(37, 99, 235, 0.4);
  --text: #f8fafc;
  --muted: #94a3b8;
  --primary: #2563eb; /* Blue */
  --primary-hover: #1d4ed8;
  --primary-glow: rgba(37, 99, 235, 0.15);
  --secondary: #10b981; /* Emerald */
  --secondary-hover: #059669;
  
  --green: #10b981;
  --green-glow: rgba(16, 185, 129, 0.1);
  --amber: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.1);
  --red: #f43f5e;
  --red-glow: rgba(244, 63, 94, 0.1);
  --blue: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.1);

  --font: 'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --radius: 12px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font);
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #090e1a 0%, var(--bg) 100%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Header & Navigation */
.topbar {
  max-width: 1200px;
  width: calc(100% - 32px);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border: 1px solid var(--line);
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.admin-link, .lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.admin-link:hover, .lang-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-link svg, .lang-btn svg {
  transition: var(--transition);
}

.admin-link:hover svg, .lang-btn:hover svg {
  transform: rotate(-10deg);
}

/* Shell Layout */
.shell {
  max-width: 1200px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 40px 0 80px;
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.hero-text {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 30%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.features-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* Pricing Card */
.price-card {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.1);
}

.price-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.price-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: rgba(37, 99, 235, 0.15);
  color: #93c5fd;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.price-amount {
  display: flex;
  align-items: baseline;
  margin-bottom: 16px;
}

.price-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-right: 4px;
}

.price-amount .number {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-amount .period {
  font-size: 0.875rem;
  color: var(--muted);
  margin-left: 8px;
  font-weight: 500;
}

.price-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Workspace Panels */
.workspace {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.panel-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.panel-card:hover {
  background: var(--panel-hover);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-header {
  margin-bottom: 28px;
}

.card-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Forms & Inputs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #cbd5e1;
}

input, select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 30, 0.6);
  color: var(--text);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  font-family: var(--font);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

input:focus, select:focus {
  border-color: var(--primary);
  background: rgba(10, 15, 30, 0.8);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.input-helper {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Custom Select Dropdown Styling */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Interactive QR Code Section */
.qr-reveal-section {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0px;
}

.qr-reveal-section.show {
  max-height: 400px;
  opacity: 1;
  margin-bottom: 24px;
}

.qr-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.qr-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: var(--primary);
  opacity: 0.12;
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
}

.qr-image-wrapper {
  background: white;
  padding: 12px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 12px;
  transition: var(--transition);
  cursor: zoom-in;
}

.qr-image-wrapper:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.qr-image-wrapper img {
  display: block;
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.qr-caption {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

.qr-caption span {
  font-weight: 700;
  color: var(--text);
}

/* File Drag & Drop Zone */
.file-drop-zone {
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.01);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
}

.file-drop-zone:hover, .file-drop-zone.dragover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.03);
}

.file-drop-zone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.drop-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.upload-icon {
  width: 36px;
  height: 36px;
  color: var(--muted);
  margin-bottom: 12px;
  transition: var(--transition);
}

.file-drop-zone:hover .upload-icon {
  color: var(--primary);
  transform: translateY(-2px);
}

.drop-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 4px;
}

.drop-subtext {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Screenshot Preview Container */
.preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.preview-container img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}

.preview-filename {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.remove-file-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(244, 63, 94, 0.5);
  transition: var(--transition);
  z-index: 5;
}

.remove-file-btn:hover {
  transform: scale(1.1);
  background: #e11d48;
}

/* Buttons */
.submit-btn, .query-btn {
  width: 100%;
  border: none;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover, .query-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.submit-btn:active, .query-btn:active {
  transform: translateY(1px);
}

.query-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
  margin-top: 8px;
}

.query-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

/* Result Screen Message */
.result-message {
  margin-top: 24px;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.925rem;
  line-height: 1.6;
  white-space: pre-wrap;
  animation: slideDown 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 15, 30, 0.5);
}

.result-message.success {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
  color: #a7f3d0;
}

.result-message.error {
  border-color: rgba(244, 63, 94, 0.3);
  background: rgba(244, 63, 94, 0.05);
  color: #fecdd3;
}

/* Query Tabs */
.query-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
}

.tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--muted);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Query Results Styling */
.query-results-wrapper {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.3s ease;
}

.order-item-card {
  border: 1px solid var(--line);
  background: rgba(10, 15, 30, 0.4);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
}

.order-item-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(10, 15, 30, 0.6);
}

.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

.order-card-id {
  font-family: monospace;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.status-badge {
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.status-badge.pending {
  background: var(--amber-glow);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-badge.approved {
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.rejected {
  background: var(--red-glow);
  color: var(--red);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.status-badge.failed {
  background: var(--red-glow);
  color: var(--red);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.order-card-body {
  font-size: 0.85rem;
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 8px;
  column-gap: 16px;
  color: #cbd5e1;
}

.field-label {
  color: var(--muted);
  font-weight: 500;
}

.field-value {
  font-weight: 600;
}

.order-card-message {
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--primary);
  padding: 8px 12px;
  border-radius: 0 4px 4px 0;
  color: #cbd5e1;
}

.license-key-box {
  background: rgba(37, 99, 235, 0.05);
  border: 1px dashed rgba(37, 99, 235, 0.3);
  padding: 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.license-key-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #93c5fd;
}

.license-key-code {
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #bfdbfe;
  user-select: all;
  word-break: break-all;
}

.copy-btn {
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #bfdbfe;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.copy-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.copy-btn:active {
  transform: scale(0.95);
}

.no-results {
  text-align: center;
  padding: 32px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Admin Styles (retained and enhanced) */
.admin-shell {
  max-width: 1000px;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 40px 0 80px;
}

.admin-shell h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.orders {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 22, 42, 0.4);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.order:hover {
  background: rgba(15, 22, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.12);
}

.order h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  font-family: monospace;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.meta span {
  display: inline-flex;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  border: 1px solid var(--line);
}

.pill.pending { background: var(--amber-glow); color: var(--amber); border-color: rgba(245, 158, 11, 0.2); }
.pill.approved { background: var(--green-glow); color: var(--green); border-color: rgba(16, 185, 129, 0.2); }
.pill.rejected, .pill.failed { background: var(--red-glow); color: var(--red); border-color: rgba(244, 63, 94, 0.2); }

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

button.mini {
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-approve {
  background: var(--green);
  color: #030712;
}

.btn-approve:hover {
  background: #34d399;
}

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

.danger:hover {
  background: #fb7185;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .price-card {
    max-width: 450px;
  }

  .workspace {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .order {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Developer Sincere Note */
.developer-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 18px;
  border-radius: 8px;
  margin-top: 24px;
  margin-bottom: 28px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.developer-note strong {
  color: var(--text);
}

.info-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Lightbox for QR Code Zoom */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox.show .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 380px;
  max-height: 70vh;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  background: white;
  padding: 16px;
  display: block;
}

.lightbox-caption {
  color: #94a3b8;
  font-size: 0.875rem;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.promise-banner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.promise-icon {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.promise-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 2px;
}

.promise-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.hidden {
  display: none !important;
}
