/* Shared report CTA / contact footer (desktop, mobile, test-reports). */
.aifa-report-cta {
  margin: 28px 0 8px;
  padding: 28px 20px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #e8f3ff 0%, #dbeafe 100%);
  color: #0f172a;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}
.aifa-report-cta * {
  box-sizing: border-box;
}
.aifa-report-cta-inner {
  max-width: 960px;
  margin: 0 auto;
}
.aifa-report-cta-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
}
.aifa-report-cta-title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
  color: #0f172a;
  overflow-wrap: anywhere;
}
.aifa-report-cta-sub {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}
.aifa-report-cta-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 18px;
}
@media (min-width: 768px) {
  .aifa-report-cta-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}
.aifa-report-cta-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 12px;
  padding: 16px 14px;
  min-width: 0;
}
.aifa-report-cta-no {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 6px;
  letter-spacing: 0.06em;
}
.aifa-report-cta-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #0f172a;
}
.aifa-report-cta-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
  overflow-wrap: anywhere;
}
.aifa-report-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.aifa-report-cta-actions:empty {
  display: none;
}
.aifa-report-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #2563eb;
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.aifa-report-cta-btn.secondary {
  background: #fff;
  color: #1d4ed8;
}
.aifa-report-cta-btn:focus {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}
.aifa-report-cta-qr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 4px;
  width: 100%;
  max-width: 100%;
}
.aifa-report-cta-qr img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.2);
  cursor: zoom-in;
  max-width: 100%;
}
.aifa-report-cta-qr-hint {
  margin: 0;
  font-size: 12px;
  color: #475569;
}
.aifa-report-cta-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(15, 23, 42, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
}
.aifa-report-cta-lightbox[hidden] {
  display: none !important;
}
.aifa-report-cta-lightbox img {
  max-width: min(92vw, 420px);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
