.report-section .section-desc em {
  font-style: normal;
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}
.report-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 72px;
}
.rc-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.rc-lbl {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.rc-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
}
.rc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.rc-item {
  background: white;
  border: 1px solid var(--line-soft);
  padding: 24px 22px;
  transition: all 250ms;
  position: relative;
}
.rc-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.rci-num {
  font-size: 10px;
  color: var(--gold-soft);
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.rci-k {
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}
.rci-v {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--ink-3);
  font-style: italic;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.rci-desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* A4 doc stack */
.doc-stack {
  position: relative;
  aspect-ratio: 1 / 1.15;
}
.doc {
  position: absolute;
  background: white;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
}
.doc-3 {
  inset: 24px -24px -24px 24px;
  background: var(--paper-2);
}
.doc-2 {
  inset: 12px -12px -12px 12px;
  background: white;
}
.doc-1 {
  inset: 0;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.doc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.doc-brand {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.db-mark {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 20px;
}
.db-name {
  font-size: 14px;
  color: var(--navy);
}
.doc-code {
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.doc-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 4px;
  font-weight: 500;
}
.doc-sub {
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.doc-rule {
  height: 1px;
  background: var(--line);
  position: relative;
  margin-bottom: 24px;
}
.doc-rule::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.doc-section {
  margin-bottom: 16px;
}
.ds-lbl {
  font-size: 11px;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.ds-bar {
  height: 6px;
  background: var(--paper-2);
  overflow: hidden;
}
.dsb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.doc-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.dl {
  height: 4px;
  background: var(--paper-2);
  border-radius: 2px;
}
.dl.short { width: 60%; }
.doc-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.df-sig {
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy);
  font-size: 14px;
}
.df-seal svg { width: 32px; height: 32px; }

.report-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .report-layout { grid-template-columns: 1fr; gap: 40px; }
  .rc-grid { grid-template-columns: 1fr; }
}
