/* ================================================================
   TRANSACTION RECONCILIATION PAGE — tr3-*
   Design language: Oswald + Montserrat, consistent with site typography,
   asymmetric layouts, restrained gold palette, minimal iconography.
   ================================================================ */

.tr3-page .page-content.bg-white {
  background-color: #0d0610 !important;
  background-image: none !important;
}

.tr3-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.tr3-rel {
  position: relative;
}

.tr3-overline-sm {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(229, 189, 122, 0.65);
}
.tr3-overline-gold {
  color: rgba(229, 189, 122, 0.8);
}
.tr3-overline-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.tr3-or-line {
  width: 40px;
  height: 1px;
  background: rgba(229, 189, 122, 0.4);
  flex-shrink: 0;
}
.tr3-or-line-dark {
  background: rgba(229, 189, 122, 0.25);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.tr3-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #0d0610;
}

.tr3-hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.tr3-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 75% 20%,
      rgba(229, 189, 122, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 80% at 10% 80%,
      rgba(161, 117, 60, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

.tr3-hero-breadcrumb {
  position: absolute;
  top: 120px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  opacity: 0;
  animation: tr3Up 0.8s ease forwards 0.2s;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(229, 189, 122, 0.45);
}
.tr3-bc-line {
  width: 30px;
  height: 1px;
  background: rgba(229, 189, 122, 0.4);
}
.tr3-bc-sep {
  color: rgba(229, 189, 122, 0.25);
}
.tr3-bc-active {
  color: rgba(229, 189, 122, 0.65);
}

.tr3-hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 100%;
  padding: 0 40px;
}
.tr3-hero-overline {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0;
  animation: tr3Fade 1s ease forwards 0.4s;
}
.tr3-hero-title {
  margin: 0;
  line-height: 0.9;
}
.tr3-ht-l1,
.tr3-ht-l2,
.tr3-ht-l3 {
  display: block;
  opacity: 0;
  animation: tr3Up 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.tr3-ht-l1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 500;
  color: #efefef;
  letter-spacing: 0;
}
.tr3-ht-l2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 500;
  color: var(--primary);
  font-style: normal;
  letter-spacing: 0;
}
.tr3-ht-l2 em {
  font-style: italic;
}
.tr3-ht-l3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.35);
  margin-top: 16px;
}

.tr3-hero-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 40px 50px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  opacity: 0;
  animation: tr3Fade 1s ease forwards 1.1s;
}
.tr3-hero-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(239, 239, 239, 0.5);
  max-width: 500px;
  margin: 0;
}
.tr3-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 189, 122, 0.3);
  padding-bottom: 4px;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.tr3-hero-cta:hover {
  border-color: var(--primary);
  color: #fff;
}
.tr3-cta-arrow {
  font-size: 16px;
  transition: transform 0.3s;
}
.tr3-hero-cta:hover .tr3-cta-arrow {
  transform: translateX(4px);
}

.tr3-scroll-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(229, 189, 122, 0.4));
  z-index: 3;
  transform-origin: top;
  animation: tr3ScrollLine 2s ease-in-out infinite 1.5s;
}
@keyframes tr3ScrollLine {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes tr3Up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tr3Fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ═══════════════════════════════════
   MARQUEE
═══════════════════════════════════ */
.tr3-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(229, 189, 122, 0.1);
  border-bottom: 1px solid rgba(229, 189, 122, 0.1);
  background: #0a040e;
  padding: 18px 0;
}
.tr3-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: tr3Marquee 28s linear infinite;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.35);
}
.tr3-sep {
  color: var(--primary);
  font-size: 8px;
}
@keyframes tr3Marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════
   SHARED SECTION
═══════════════════════════════════ */
.tr3-section {
  padding: 110px 0;
}

.tr3-section-h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 500;
  color: #efefef;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: 0;
}
.tr3-section-h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

/* ═══════════════════════════════════
   S1 — INTRO STATEMENT
═══════════════════════════════════ */
.tr3-intro-statement {
  padding: 100px 0;
}

.tr3-intro-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 60px;
  align-items: start;
}
.tr3-intro-label {
  padding-top: 12px;
  border-top: 1px solid rgba(229, 189, 122, 0.2);
}
.tr3-large-p {
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 400;
  color: rgba(239, 239, 239, 0.85);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0;
}
.tr3-large-p em {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}

.tr3-content-list {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(239, 239, 239, 0.6);
  padding-left: 20px;
  margin: 0 0 20px;
}
.tr3-content-list li {
  margin-bottom: 12px;
  padding-left: 6px;
}
.tr3-content-list li::marker {
  color: var(--primary);
}

/* ═══════════════════════════════════
   S2 — ASYMMETRIC (matching, reporting)
═══════════════════════════════════ */
.tr3-s-matching,
.tr3-s-reporting {
  border-top: 1px solid rgba(229, 189, 122, 0.07);
}
.tr3-asym-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}
.tr3-asym-main p {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(239, 239, 239, 0.6);
  margin-bottom: 20px;
}
.tr3-asym-aside {
  padding-top: 80px;
}
.tr3-aside-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tr3-aside-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(229, 189, 122, 0.1);
}
.tr3-aside-item:first-child {
  border-top: 1px solid rgba(229, 189, 122, 0.1);
}
.tr3-aside-label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.tr3-aside-item p {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(239, 239, 239, 0.5);
  margin: 0;
}

/* ═══════════════════════════════════
   DARK SECTIONS
═══════════════════════════════════ */
.tr3-s-dark {
  background: #060309;
  position: relative;
  overflow: hidden;
}
.tr3-s-dark-texture {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 100% 100% at 50% 0%,
    rgba(229, 189, 122, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.tr3-dark-overline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.tr3-big-quote {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(24px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 60px;
  letter-spacing: 0;
  border: none;
  padding: 0;
}

.tr3-integrated-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.tr3-int-col h3 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  color: #efefef;
  line-height: 1.25;
  margin-bottom: 20px;
}
.tr3-int-col p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(239, 239, 239, 0.55);
  margin-bottom: 16px;
}
.tr3-int-col p:last-child {
  margin-bottom: 0;
}

.tr3-dark-divider {
  margin-top: 70px;
  border-top: 1px solid rgba(229, 189, 122, 0.1);
  padding-top: 28px;
  text-align: center;
}
.tr3-dark-divider span {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(229, 189, 122, 0.3);
}

/* ═══════════════════════════════════
   S4 — INGESTION (scale rows)
═══════════════════════════════════ */
.tr3-s-ingestion {
  border-top: 1px solid rgba(229, 189, 122, 0.07);
}

.tr3-scale-h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 500;
  color: #efefef;
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: 0;
}
.tr3-scale-intro {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(239, 239, 239, 0.55);
  max-width: 640px;
  margin-bottom: 70px;
}
.tr3-scale-rows {
  display: flex;
  flex-direction: column;
}
.tr3-scale-row {
  display: grid;
  grid-template-columns: 260px 1fr 200px;
  align-items: center;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(229, 189, 122, 0.08);
  transition: background 0.3s;
}
.tr3-scale-row:hover {
  background: rgba(229, 189, 122, 0.02);
}
.tr3-scale-row-label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(239, 239, 239, 0.85);
  letter-spacing: 0.3px;
}
.tr3-scale-row-text {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(239, 239, 239, 0.45);
}
.tr3-scale-row-bar {
  height: 2px;
  background: rgba(229, 189, 122, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.tr3-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-hover), var(--primary));
  border-radius: 2px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════
   S5 — REPORTING (pull-quote + right col)
═══════════════════════════════════ */
.tr3-risk-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.tr3-risk-left p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(239, 239, 239, 0.55);
  margin-bottom: 18px;
}
.tr3-pull-quote {
  border-left: 2px solid var(--primary);
  padding: 4px 0 4px 28px;
  margin-bottom: 48px;
}
.tr3-pull-quote p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: rgba(239, 239, 239, 0.7);
  line-height: 1.6;
  margin: 0;
}
.tr3-pull-quote em {
  color: var(--primary);
  font-style: italic;
}

.tr3-risk-points {
  display: flex;
  flex-direction: column;
}
.tr3-rp {
  padding: 22px 0;
  border-bottom: 1px solid rgba(229, 189, 122, 0.08);
}
.tr3-rp:first-child {
  border-top: 1px solid rgba(229, 189, 122, 0.08);
}
.tr3-rp-title {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.75);
  margin-bottom: 8px;
}
.tr3-rp-body {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(239, 239, 239, 0.45);
}

/* ═══════════════════════════════════
   S6 — WORKFLOW STRIP
═══════════════════════════════════ */
.tr3-wf-h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 500;
  color: #efefef;
  line-height: 1.1;
  margin-bottom: 60px;
  letter-spacing: 0;
}
.tr3-wf-h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
}
.tr3-wf-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.tr3-wf-item {
  padding: 0 32px 0 0;
  position: relative;
}
.tr3-wf-connector {
  width: 100%;
  height: 1px;
  background: rgba(229, 189, 122, 0.15);
  margin-bottom: 28px;
  position: relative;
}
.tr3-wf-connector::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(229, 189, 122, 0.5);
}
.tr3-wf-item--last {
  padding-right: 0;
}
.tr3-wf-item h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(239, 239, 239, 0.85);
  margin-bottom: 12px;
}
.tr3-wf-item p {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(239, 239, 239, 0.45);
  margin: 0;
}

/* ═══════════════════════════════════
   S7 — FAQ
═══════════════════════════════════ */
.tr3-s-faq {
  border-top: 1px solid rgba(229, 189, 122, 0.07);
}

.tr3-faq-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.tr3-faq-h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  color: #efefef;
  line-height: 1.1;
  margin-bottom: 20px;
}
.tr3-faq-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(239, 239, 239, 0.45);
  margin-bottom: 32px;
}
.tr3-faq-link {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 189, 122, 0.25);
  padding-bottom: 3px;
  transition: border-color 0.3s;
}
.tr3-faq-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.tr3-faq-link span {
  transition: transform 0.3s;
  display: inline-block;
}
.tr3-faq-link:hover span {
  transform: translateX(4px);
}

.tr3-acc {
  display: flex;
  flex-direction: column;
}
.tr3-acc-item {
  border-bottom: 1px solid rgba(229, 189, 122, 0.1);
  transition: background 0.2s;
}
.tr3-acc-item:first-child {
  border-top: 1px solid rgba(229, 189, 122, 0.1);
}
.tr3-acc-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
}
.tr3-acc-btn > span {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(239, 239, 239, 0.8);
  line-height: 1.5;
  transition: color 0.2s;
}
.tr3-acc-btn:hover > span {
  color: var(--primary);
}
.tr3-acc-ico {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.tr3-acc-ico span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  background: rgba(229, 189, 122, 0.5);
  border-radius: 2px;
  transition:
    transform 0.35s,
    opacity 0.35s,
    background 0.2s;
}
.tr3-acc-ico span:first-child {
  width: 14px;
  height: 1px;
}
.tr3-acc-ico span:last-child {
  width: 1px;
  height: 14px;
}
.tr3-acc-item.open .tr3-acc-ico span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.tr3-acc-item.open .tr3-acc-ico span {
  background: var(--primary);
}
.tr3-acc-btn:hover .tr3-acc-ico span {
  background: var(--primary);
}
.tr3-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.tr3-acc-body p {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(239, 239, 239, 0.5);
  padding: 0 0 24px;
  margin: 0;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media only screen and (max-width: 1100px) {
  .tr3-scale-row {
    grid-template-columns: 200px 1fr 160px;
    gap: 28px;
  }
}

@media only screen and (max-width: 991px) {
  .tr3-container {
    padding: 0 24px;
  }
  .tr3-section {
    padding: 80px 0;
  }
  .tr3-intro-statement {
    padding: 70px 0;
  }

  .tr3-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tr3-intro-label {
    padding-top: 0;
    border-top: none;
    border-left: 2px solid rgba(229, 189, 122, 0.3);
    padding-left: 12px;
  }
  .tr3-asym-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .tr3-asym-aside {
    padding-top: 0;
  }
  .tr3-integrated-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tr3-scale-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tr3-scale-row-bar {
    display: none;
  }
  .tr3-risk-editorial {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .tr3-wf-strip {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .tr3-wf-connector {
    display: none;
  }
  .tr3-wf-item {
    padding: 0;
    border-top: 1px solid rgba(229, 189, 122, 0.1);
    padding-top: 24px;
  }
  .tr3-faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .tr3-hero-breadcrumb {
    left: 24px;
  }
  .tr3-hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 24px 40px;
  }
  .tr3-hero-center {
    padding: 0 24px;
  }
  .tr3-ht-l1,
  .tr3-ht-l2 {
    letter-spacing: -1px;
  }
  .tr3-wf-strip {
    grid-template-columns: 1fr;
  }
  .tr3-scale-h2 {
    font-size: clamp(34px, 8vw, 60px);
  }
}

/* ═══════════════════════════════════
   VISUAL ENHANCEMENTS
═══════════════════════════════════ */

.tr3-section-num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(80px, 12vw, 150px);
  font-weight: 700;
  color: rgba(229, 189, 122, 0.08);
  line-height: 0.85;
  letter-spacing: -4px;
  margin-bottom: -28px;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.tr3-stats-strip {
  background: #0a040e;
  border-top: 1px solid rgba(229, 189, 122, 0.12);
  border-bottom: 1px solid rgba(229, 189, 122, 0.12);
  padding: 56px 0;
}
.tr3-stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}
.tr3-stat {
  text-align: center;
  padding: 8px 32px;
}
.tr3-stat-num {
  font-family: "Oswald", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.tr3-stat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(239, 239, 239, 0.28);
}
.tr3-stat-div {
  width: 1px;
  height: 52px;
  background: rgba(229, 189, 122, 0.12);
  flex-shrink: 0;
}

.tr3-feat-list {
  margin: 28px 0 24px;
}
.tr3-feat-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(229, 189, 122, 0.07);
  transition: background 0.25s;
}
.tr3-feat-item:first-child {
  border-top: 1px solid rgba(229, 189, 122, 0.07);
}
.tr3-feat-item:hover {
  background: rgba(229, 189, 122, 0.025);
}
.tr3-feat-num {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(229, 189, 122, 0.45);
  letter-spacing: 1px;
  padding-top: 2px;
}
.tr3-feat-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(239, 239, 239, 0.6);
  margin: 0;
}

.tr3-method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.tr3-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(229, 189, 122, 0.5);
  border: 1px solid rgba(229, 189, 122, 0.16);
  padding: 7px 14px;
  display: inline-block;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
  cursor: default;
}
.tr3-tag:hover {
  border-color: rgba(229, 189, 122, 0.4);
  color: var(--primary);
  background: rgba(229, 189, 122, 0.04);
}

.tr3-rp {
  position: relative;
  padding: 22px 0 22px 20px;
  border-bottom: 1px solid rgba(229, 189, 122, 0.08);
  transition: background 0.25s;
}
.tr3-rp:first-child {
  border-top: 1px solid rgba(229, 189, 122, 0.08);
}
.tr3-rp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: rgba(229, 189, 122, 0.15);
  transition: background 0.3s;
}
.tr3-rp:hover {
  background: rgba(229, 189, 122, 0.02);
}
.tr3-rp:hover::before {
  background: var(--primary);
}

.tr3-wf-num {
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: rgba(229, 189, 122, 0.07);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: -10px;
  user-select: none;
  pointer-events: none;
}

.tr3-close-strip {
  background: rgba(229, 189, 122, 0.04);
  border-top: 1px solid rgba(229, 189, 122, 0.15);
  padding: 72px 0;
}
.tr3-close-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.tr3-close-text {
  font-family: "Oswald", sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 500;
  color: #efefef;
  letter-spacing: 0;
  line-height: 1.15;
}
.tr3-close-text em {
  font-style: normal;
  color: var(--primary);
}
.tr3-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0d0610;
  background: var(--primary);
  padding: 20px 40px;
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s;
  white-space: nowrap;
}
.tr3-close-btn:hover {
  background: #efefef;
  color: #0d0610;
}
.tr3-close-btn span {
  transition: transform 0.3s;
  display: inline-block;
  font-size: 15px;
}
.tr3-close-btn:hover span {
  transform: translateX(5px);
}

@media only screen and (max-width: 991px) {
  .tr3-stats-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
  }
  .tr3-stat-div {
    display: none;
  }
  .tr3-feat-item {
    grid-template-columns: 36px 1fr;
  }
  .tr3-close-inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }
  .tr3-section-num {
    font-size: clamp(64px, 10vw, 100px);
  }
}

@media only screen and (max-width: 767px) {
  .tr3-stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tr3-stats-strip {
    padding: 44px 0;
  }
  .tr3-method-tags {
    gap: 6px;
  }
}

.tr3-monitoring-details .tr3-section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  text-transform: uppercase;
  color: #efefef;
  line-height: 1.1;
}

.tr3-monitoring-details .tr3-section-title em {
  font-style: normal;
  color: var(--primary);
}

.tr3-list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tr3-list-clean li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: rgba(239, 239, 239, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tr3-list-clean li::before {
  content: "";
  width: 6px;
  min-width: 6px;
  height: 6px;
  background: var(--primary);
  display: inline-block;
}

@media (max-width: 991px) {
  .tr3-content-box {
    border-left: none !important;
    border-top: 1px solid rgba(229, 189, 122, 0.3);
    padding-left: 0 !important;
    padding-top: 30px;
    margin-top: 40px;
  }
}

/* ── Modern body text scale ── */
.tr3-asym-main p,
.tr3-scale-intro {
  font-size: 17px;
}

.tr3-content-list,
.tr3-int-col p,
.tr3-risk-left p,
.tr3-feat-text {
  font-size: 16px;
}

.tr3-hero-desc,
.tr3-aside-item p,
.tr3-scale-row-text,
.tr3-rp-body,
.tr3-wf-item h4,
.tr3-wf-item p,
.tr3-faq-sub,
.tr3-acc-body p {
  font-size: 15px;
}
