#report-generating {
  display: none;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeIn 0.3s ease;
}

.rg-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.rg-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
}

.rg-checkmark {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rg-checkmark svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.payment-success-msg {
  font-size: 0.9rem;
  font-weight: 600;
  color: #16a34a;
  margin: 0;
}

.rg-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  min-width: 0;
}

.rg-right .brand-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.progress-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: inherit;
}

.progress-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50%      { opacity: 1;    transform: scale(1); }
}

.rg-info {
  font-family: 'Lora', serif;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
}

.rg-timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  padding: 14px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.rg-timer-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.rg-timer-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  line-height: 1;
}

.rg-timer {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: center;
}

.info-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.info-card {
  flex: 0 0 260px;
  max-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.info-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.info-card-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card-img svg {
  width: 44px;
  height: 44px;
}

.info-card:nth-child(1) .info-card-img { color: #3b82f6; background: #eff6ff; }
.info-card:nth-child(2) .info-card-img { color: #8b5cf6; background: #f5f3ff; }
.info-card:nth-child(3) .info-card-img { color: #10b981; background: #ecfdf5; }

.info-card-body {
  padding: 16px 18px 20px;
}

.info-card-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}

.info-card-body p {
  font-family: 'Lora', serif;
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 640px) {
  .rg-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .rg-left {
    align-items: center;
  }

  .rg-right {
    align-items: center;
    text-align: center;
  }

  .rg-right .brand-name {
    font-size: 1.6rem;
  }

  .info-cards {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .rg-info {
    font-size: 0.85rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .rg-timer {
    font-size: 0.78rem;
  }

  .rg-timer-box {
    padding: 12px 20px;
  }

  .rg-timer-value {
    font-size: 1.4rem;
  }
}
