.dn-plan-report-stack {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
}

.dn-plan-report-stack > .dn-price,
.dn-plan-report-stack > .relative:first-child {
  flex: 1 1 auto;
}

.dn-card-report {
  --report-violet: #8b72ff;
  --report-blue: #438eff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 auto;
  margin-top: 0.75rem;
  padding: 0.8rem;
  border: 1px solid rgba(158, 143, 255, 0.2);
  border-radius: 1.15rem;
  color: #f7f8ff;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 83, 255, 0.13), transparent 40%),
    linear-gradient(155deg, rgba(11, 18, 51, 0.96), rgba(4, 9, 32, 0.98));
  box-shadow: 0 24px 52px -38px rgba(0, 0, 0, 0.95);
  content-visibility: auto;
  contain-intrinsic-size: auto 38rem;
}

.dn-card-report::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 114, 255, 0.7), rgba(67, 142, 255, 0.45), transparent);
}

.dn-card-report__head {
  display: flex;
  min-height: 4.1rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.1rem 0.1rem 0.7rem;
}

.dn-card-report__head > div { min-width: 0; }

.dn-card-report__head span {
  display: block;
  margin-bottom: 0.28rem;
  color: #a99bff;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
}

.dn-card-report__head h4 {
  overflow: hidden;
  margin: 0;
  color: #fff !important;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
}

.dn-card-report__head strong {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 0.28rem 0.42rem;
  border: 1px solid rgba(158, 143, 255, 0.14);
  border-radius: 999px;
  color: rgba(231, 235, 255, 0.48);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.52rem;
  font-weight: 650;
  white-space: nowrap;
}

.dn-card-report__viewer { position: relative; }

.dn-card-report__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0.7rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.dn-card-report__track::-webkit-scrollbar { display: none; }

.dn-card-report__track:focus-visible {
  outline: 2px solid rgba(158, 143, 255, 0.58);
  outline-offset: 0.2rem;
  border-radius: 0.85rem;
}

.dn-card-report__page {
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.dn-card-report__paper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 210 / 297;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.78rem;
  background: #fff;
  box-shadow: 0 16px 34px -22px rgba(0, 0, 0, 0.94);
}

.dn-card-report__paper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

.dn-card-report__paper img,
.dn-card-report__paper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #fff;
}

.dn-card-report__paper iframe { pointer-events: none; }

.dn-card-report__page figcaption {
  padding: 0.45rem 0.1rem 0;
  color: rgba(231, 235, 255, 0.4);
  font-size: 0.54rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.dn-card-report__arrow {
  position: absolute;
  z-index: 2;
  top: 43%;
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(174, 159, 255, 0.36);
  border-radius: 50%;
  color: #fff;
  background: rgba(6, 11, 36, 0.9);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.dn-card-report__arrow svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dn-card-report__arrow--prev { left: 0.38rem; }
.dn-card-report__arrow--next { right: 0.38rem; }

.dn-card-report__arrow:hover,
.dn-card-report__arrow:focus-visible {
  outline: none;
  border-color: rgba(195, 184, 255, 0.75);
  background: rgba(91, 72, 218, 0.94);
}

.dn-card-report__arrow:disabled {
  opacity: 0.24;
  cursor: default;
}

.dn-card-report__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin: 0.55rem 0 0.7rem;
}

.dn-card-report__dots {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.25rem;
}

.dn-card-report__dot {
  position: relative;
  display: inline-flex;
  width: 1rem;
  height: 1rem;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dn-card-report__dot::before {
  content: "";
  display: block;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(231, 235, 255, 0.24);
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.dn-card-report__dot:hover::before,
.dn-card-report__dot:focus-visible::before {
  background: rgba(189, 178, 255, 0.72);
}

.dn-card-report__dot:focus-visible {
  outline: 1px solid rgba(178, 164, 255, 0.58);
  outline-offset: 0;
}

.dn-card-report__dot.is-active::before {
  width: 0.78rem;
  background: linear-gradient(90deg, var(--report-violet), var(--report-blue));
  box-shadow: 0 0 0.55rem rgba(111, 88, 255, 0.7);
}

.dn-card-report__pagination b {
  flex: 0 0 auto;
  color: rgba(231, 235, 255, 0.44);
  font-size: 0.55rem;
  font-weight: 700;
}

.dn-card-report__full {
  display: inline-flex;
  width: 100%;
  min-height: 2.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.58rem 0.65rem;
  border: 1px solid rgba(178, 164, 255, 0.43);
  border-radius: 0.7rem;
  color: #fff !important;
  background: linear-gradient(120deg, rgba(109, 87, 255, 0.8), rgba(77, 113, 244, 0.76));
  box-shadow: 0 13px 28px -18px rgba(111, 88, 255, 0.95);
  font-size: 0.64rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.dn-card-report__full svg {
  width: 0.82rem;
  height: 0.82rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dn-card-report__full:hover,
.dn-card-report__full:focus-visible {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(205, 197, 255, 0.82);
  box-shadow: 0 17px 34px -18px rgba(111, 88, 255, 1);
}

@media (max-width: 700px) {
  .dn-card-report { padding: 1rem; }
  .dn-card-report__head h4 { font-size: 0.9rem; }
  .dn-card-report__head span,
  .dn-card-report__head strong { font-size: 0.6rem; }
  .dn-card-report__full { min-height: 2.8rem; font-size: 0.72rem; }
  .dn-card-report__dot { width: 1.25rem; height: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .dn-card-report__track { scroll-behavior: auto; }
  .dn-card-report__arrow,
  .dn-card-report__dot::before,
  .dn-card-report__full { transition: none; }
}
