/* Solution detail pages — 5 distinct layouts, content centered (~960px) */
.sol-wrap {
  --sol-max: 960px;
  --sol-purple: #5b2c91;
  --sol-purple-deep: #2a1e43;
  --sol-sky: #3d9be9;
  --sol-muted: #6b7280;
  --sol-border: #e5e7eb;
  --sol-soft: #f5f3f8;
}
.sol-wrap .sol-inner {
  width: min(100% - 2rem, var(--sol-max));
  margin-inline: auto;
}
.sol-wrap .sol-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.35;
  background: rgba(61, 155, 233, 0.12);
  color: #1d6fad;
  border: 1px solid rgba(61, 155, 233, 0.28);
  margin-bottom: 0.9rem;
}
.sol-wrap .sol-cta {
  background: linear-gradient(135deg, #5b2c91, #2a1e43);
  padding: 3.5rem 0;
  text-align: center;
  color: #fff;
}
.sol-wrap .sol-cta h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  max-width: 40rem;
  margin-inline: auto;
}
.sol-wrap .sol-cta p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.65);
}
.sol-wrap .sol-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
}
.sol-wrap .sol-cta-actions > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  min-width: min(100%, 10.5rem);
  max-width: 100%;
  padding: 0.8rem 1.25rem;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
}
.sol-wrap .sol-cta .sol-btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}
.sol-wrap .sol-cta .sol-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}
.sol-wrap .sol-cta .sol-cta-footnotes {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}
.sol-wrap .sol-cta .sol-cta-note,
.sol-wrap .sol-cta .sol-legal {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 40rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
}
.sol-wrap .sol-cta .sol-cta-note {
  margin-bottom: 0.85rem;
}
.sol-wrap .sol-cta .sol-legal {
  margin-bottom: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}
.sol-wrap .sol-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sol-wrap .crumb {
  padding: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--sol-muted);
}
.sol-wrap .crumb a { color: inherit; }
.sol-wrap .check-ico {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #efe8f8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sol-wrap .accent { color: #7dd3fc; }

/* Shared SPA-style light hero (match localhost:3000 product pages) */
.sol-wrap .sol-hero-spa {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 4.5rem 0 3.25rem;
  background: #fafbff;
  color: #111827;
  text-align: left;
}
.sol-wrap .sol-hero-spa .sol-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, 1120px);
}
.sol-wrap .sol-hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.sol-wrap .sol-hero-blobs::before,
.sol-wrap .sol-hero-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.sol-wrap .sol-hero-blobs::before {
  top: 0;
  right: 0;
  width: min(800px, 90vw);
  height: min(800px, 90vw);
  background: rgba(237, 233, 254, 0.55);
  transform: translate(30%, -45%);
}
.sol-wrap .sol-hero-blobs::after {
  bottom: 0;
  left: 0;
  width: min(600px, 80vw);
  height: min(600px, 80vw);
  background: rgba(239, 246, 255, 0.7);
  transform: translate(-25%, 35%);
}
.sol-wrap .sol-hero-spa h1 {
  margin: 0 0 0.85rem;
  font-family: "Plus Jakarta Sans", "Noto Sans TC", "Noto Sans SC", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.55rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #111827;
  font-weight: 800;
}
.sol-wrap .tr-hero.sol-hero-spa {
  border-bottom: none;
}
.sol-wrap .sol-hero-spa .accent {
  background: linear-gradient(90deg, #0b1f3a 0%, #8e62cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sol-wrap .sol-hero-spa p {
  margin: 0 0 1.35rem;
  max-width: 38rem;
  color: #6b7280;
  line-height: 1.75;
  font-size: 1rem;
}
.sol-wrap .sol-hero-spa .sol-label {
  padding: 0.55rem 1.15rem;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(142, 98, 204, 0.12);
  color: #5b2c91;
  border: 1.5px solid rgba(142, 98, 204, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  margin-bottom: 1rem;
}
.sol-wrap .sol-btn-round {
  border-radius: 12px;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.sol-wrap .sol-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 100%;
}
.sol-wrap .sol-hero-actions > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  box-sizing: border-box;
  min-height: 3rem;
  min-width: min(100%, 10.5rem);
  max-width: 100%;
  padding: 0.8rem 1.25rem;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  touch-action: manipulation;
}
.sol-wrap .sol-hero-spa .sol-hero-actions .sol-btn-ghost {
  color: #374151;
}
.sol-wrap .sol-hero-spa .btn-purple {
  background: #8e62cc;
  color: #fff;
  border: none;
  box-shadow: 0 10px 28px rgba(142, 98, 204, 0.28);
}
.sol-wrap .sol-hero-spa .btn-purple:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(142, 98, 204, 0.34);
}
.sol-wrap .sol-hero-spa .sol-btn-ghost {
  border: 1.5px solid #d1d5db;
  color: #374151;
  background: rgba(255, 255, 255, 0.65);
}
.sol-wrap .sol-hero-spa .sol-btn-ghost:hover {
  background: #fff;
  border-color: #8e62cc;
  color: #8e62cc;
  transform: translateY(-2px);
}
.sol-wrap .sol-hero-visual,
.sol-wrap .mso-hero-img,
.sol-wrap .fxs-hero-img,
.sol-wrap .aml-hero-img,
.sol-wrap .tr-hero-img,
.sol-wrap .tc-hero-img {
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  min-height: 420px;
}
.sol-wrap .sol-hero-visual img,
.sol-wrap .mso-hero-img img,
.sol-wrap .fxs-hero-img img,
.sol-wrap .aml-hero-img img,
.sol-wrap .tr-hero-img img,
.sol-wrap .tc-hero-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(163, 127, 223, 0.18));
}

/* Rounded CTAs across solution pages */
.sol-wrap .btn,
.sol-wrap .sol-btn-ghost,
.sol-wrap .sol-cta .btn {
  border-radius: 12px;
}
.sol-wrap .sol-cta .btn {
  min-height: 3rem;
  padding: 0.85rem 1.85rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(61, 155, 233, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sol-wrap .sol-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(61, 155, 233, 0.35);
}

/* ========== Fortune X — alternating rows ========== */
.page-mso .mso-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.page-mso .mso-hero-actions { display: flex; }
.page-mso .mso-alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 0;
}
.page-mso .mso-alt-row:nth-child(even) .mso-alt-text { order: 2; background: var(--sol-soft); }
.page-mso .mso-alt-row:nth-child(even) .mso-alt-visual { order: 1; }
.page-mso .mso-alt-text {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.page-mso .mso-alt-text .num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sol-sky);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.page-mso .mso-alt-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: #111827;
}
.page-mso .mso-alt-text p {
  margin: 0 0 0.85rem;
  color: var(--sol-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.page-mso .mso-feats { display: flex; flex-direction: column; gap: 0.45rem; }
.page-mso .mso-feats .feat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #4b5563;
}
.page-mso .mso-alt-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #fff;
  overflow: hidden;
  min-width: 0;
}
.page-mso .mso-alt-visual img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  max-height: 260px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(43, 24, 72, 0.12);
}
.page-mso .mso-hardware {
  background: #f9fafb;
  padding: 3rem 0;
}
.page-mso .mso-hw-head { margin-bottom: 1.5rem; }
.page-mso .mso-hw-head h2 {
  margin: 0.35rem 0;
  font-size: 1.4rem;
  color: #111827;
}
.page-mso .mso-hw-head p {
  margin: 0;
  color: var(--sol-muted);
  font-size: 0.9rem;
}
.page-mso .mso-hw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.page-mso .mso-hw-card {
  background: #fff;
  border: 1px solid var(--sol-border);
  border-radius: 10px;
  padding: 1.15rem 0.85rem;
  text-align: center;
}
.page-mso .mso-hw-card .ico {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.6rem;
  border-radius: 8px;
  background: #efe8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sol-purple);
  font-weight: 700;
  font-size: 0.85rem;
}
.page-mso .mso-hw-card h4 {
  margin: 0 0 0.25rem;
  font-size: 0.88rem;
}
.page-mso .mso-hw-note {
  margin: 1.15rem 0 0;
  color: var(--sol-muted);
  font-size: 0.86rem;
  line-height: 1.65;
}
.page-mso .mso-compare,
.page-fxsol .mso-compare { padding: 3rem 0; }
.page-mso .mso-compare h2,
.page-fxsol .mso-compare h2 {
  margin: 0.35rem 0 1.25rem;
  font-size: 1.4rem;
}
.page-mso .mso-compare-table,
.page-fxsol .mso-compare-table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(43, 24, 72, 0.08);
}
.page-mso .mso-compare-table th,
.page-mso .mso-compare-table td,
.page-fxsol .mso-compare-table th,
.page-fxsol .mso-compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--sol-border);
  font-size: 0.88rem;
}
.page-mso .mso-compare-table th,
.page-fxsol .mso-compare-table th {
  background: var(--sol-purple);
  color: #fff;
}
.page-mso .mso-compare-table td,
.page-fxsol .mso-compare-table td { color: #4b5563; background: #fff; }
.page-mso .mso-compare-table .yes,
.page-fxsol .mso-compare-table .yes { color: #059669; font-weight: 600; }
.page-mso .mso-compare-table .no,
.page-fxsol .mso-compare-table .no { color: #9ca3af; }

/* ========== Fortune FX — centered hero + 2×2 cards ========== */
.page-fxsol .fxs-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.page-fxsol .fxs-hero-actions {
  margin-bottom: 0;
}
.page-fxsol .fxs-features { padding: 3rem 0; }
.page-fxsol .fxs-features h2 {
  margin: 0.35rem 0 1.25rem;
  font-size: 1.4rem;
}
.page-fxsol .fxs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.page-fxsol .fxs-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--sol-border);
  border-radius: 12px;
  padding: 1.5rem;
  overflow: hidden;
}
.page-fxsol .fxs-card .num {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: #efe8f8;
  line-height: 1;
}
.page-fxsol .fxs-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  position: relative;
}
.page-fxsol .fxs-card p {
  margin: 0 0 0.75rem;
  color: var(--sol-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  position: relative;
}
.page-fxsol .fxs-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; position: relative; }
.page-fxsol .fxs-tags span {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 0.72rem;
  color: #4b5563;
}
.page-fxsol .fxs-risk {
  background: var(--sol-purple-deep);
  padding: 2.75rem 0;
  color: #fff;
}
.page-fxsol .fxs-risk-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "label ."
    "title img"
    "body  img";
  column-gap: 2rem;
  row-gap: 0;
  align-items: start;
}
.page-fxsol .fxs-risk-grid > .sol-label {
  grid-area: label;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  padding: 0.4rem 1.15rem;
}
.page-fxsol .fxs-risk-grid > h2 { grid-area: title; }
.page-fxsol .fxs-risk-copy { grid-area: body; }
.page-fxsol .fxs-risk-grid > img { grid-area: img; }
.page-fxsol .fxs-risk h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}
.page-fxsol .fxs-risk p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}
.page-fxsol .fxs-risk ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.page-fxsol .fxs-risk li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}
.page-fxsol .fxs-risk li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sol-sky);
  flex-shrink: 0;
}
.page-fxsol .fxs-risk img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  align-self: stretch;
}
.page-fxsol .fxs-kyc {
  padding: 3rem 0;
  background: #f9fafb;
}
.page-fxsol .fxs-kyc h2 {
  margin: 0.35rem 0 1.25rem;
  font-size: 1.4rem;
}
.page-fxsol .fxs-kyc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.page-fxsol .fxs-kyc-card {
  background: #fff;
  border: 1px solid var(--sol-border);
  border-radius: 10px;
  padding: 1.25rem;
}
.page-fxsol .fxs-kyc-card .step {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sol-sky);
  margin-bottom: 0.4rem;
}
.page-fxsol .fxs-kyc-card h4 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}
.page-fxsol .fxs-kyc-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--sol-muted);
  line-height: 1.65;
}
.page-fxsol .fxs-stats {
  background: var(--sol-purple);
  padding: 2rem 0;
  color: #fff;
}
.page-fxsol .fxs-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.page-fxsol .fxs-stats .n {
  font-size: 1.6rem;
  font-weight: 700;
}
.page-fxsol .fxs-stats .l {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ========== Fortune X1 — dark hero + vertical stack ========== */
.page-aml .aml-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.page-aml .aml-hero-actions {
  margin-bottom: 0;
}
.page-aml .aml-stats {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.page-aml .aml-stats .n {
  font-size: 1.55rem;
  font-weight: 700;
  color: #8e62cc;
}
.page-aml .aml-stats .l {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #6b7280;
}
.page-aml .aml-feat-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--sol-border);
  max-width: var(--sol-max);
  margin-inline: auto;
}
.page-aml .aml-feat-row:nth-child(even) { background: #f9fafb; }
.page-aml .aml-feat-left {
  flex: 0 0 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-aml .aml-feat-left .num {
  position: absolute;
  top: 1rem;
  left: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #a78bfa;
}
.page-aml .aml-feat-left .ibox {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 14px;
  background: #efe8f8;
  color: var(--sol-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.page-aml .aml-feat-right {
  flex: 1;
  padding: 1.75rem 1.5rem 1.75rem 0.5rem;
}
.page-aml .aml-feat-right h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}
.page-aml .aml-feat-right p {
  margin: 0 0 0.75rem;
  color: var(--sol-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 40rem;
}
.page-aml .aml-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.page-aml .aml-tags span {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: #efe8f8;
  color: var(--sol-purple);
}
.page-aml .aml-data {
  background: #111827;
  padding: 2.5rem 0;
  color: #fff;
}
.page-aml .aml-data-label {
  background: rgba(142, 98, 204, 0.18);
  color: #e9d5ff;
  border-color: rgba(216, 180, 254, 0.35);
}
.page-aml .aml-data-title {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.35rem;
}
.page-aml .aml-data-desc {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
}
.page-aml .aml-data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.page-aml .aml-data-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.page-aml .aml-data-step {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #c4b5fd;
  margin-bottom: 0.4rem;
}
.page-aml .aml-data-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.page-aml .aml-data-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}
.page-aml .aml-data-card p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.page-aml .aml-ps { padding: 3rem 0; }
.page-aml .aml-ps h2 {
  margin: 0.35rem 0 1.25rem;
  font-size: 1.4rem;
}
.page-aml .aml-ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.page-aml .aml-ps-col h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}
.page-aml .aml-ps-col.problems h3 { color: #dc2626; }
.page-aml .aml-ps-col.solutions h3 { color: #059669; }
.page-aml .aml-ps-item {
  display: flex;
  gap: 0.55rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  color: #4b5563;
}
.page-aml .aml-ps-item.problem { background: #fef2f2; }
.page-aml .aml-ps-item.solution { background: #ecfdf5; }

/* ========== Trust OS — 3-col cards + flow ========== */
.page-trust .tr-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.page-trust .tr-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.page-trust .tr-cards { padding: 3rem 0; }
.page-trust .tr-cards h2 {
  margin: 0.35rem 0 1.25rem;
  font-size: 1.4rem;
}
.page-trust .tr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.page-trust .tr-card {
  background: #fff;
  border: 1px solid var(--sol-border);
  border-radius: 12px;
  padding: 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-trust .tr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(43, 24, 72, 0.1);
}
.page-trust .tr-card .ico {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: #efe8f8;
  color: var(--sol-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}
.page-trust .tr-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}
.page-trust .tr-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--sol-muted);
  line-height: 1.65;
}
.page-trust .tr-flow {
  background: #f9fafb;
  padding: 3rem 0;
}
.page-trust .tr-flow h2 {
  text-align: center;
  margin: 0.35rem 0 1.75rem;
  font-size: 1.4rem;
}
.page-trust .tr-flow-steps {
  display: flex;
  gap: 0.5rem;
  position: relative;
}
.page-trust .tr-flow-steps::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #e5e7eb;
}
.page-trust .tr-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-trust .tr-step .circle {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #c4b5e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-weight: 700;
  color: var(--sol-purple);
}
.page-trust .tr-step h4 {
  margin: 0 0 0.3rem;
  font-size: 0.9rem;
}
.page-trust .tr-step p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--sol-muted);
  padding: 0 0.25rem;
}
.page-trust .tr-asset { padding: 3rem 0; }
.page-trust .tr-asset-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.page-trust .tr-asset h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.35rem;
}
.page-trust .tr-asset > .sol-inner > .tr-asset-grid > div > p {
  margin: 0 0 1rem;
  color: var(--sol-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.page-trust .tr-asset-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.page-trust .tr-asset-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #4b5563;
}
.page-trust .tr-asset-item .tag {
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: #efe8f8;
  color: var(--sol-purple);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.page-trust .tr-asset img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
}

/* ========== TCSP — timeline + 3 columns ========== */
.page-tcsp .tc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.page-tcsp .tc-hero-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.page-tcsp .tc-hero-tags span {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(142, 98, 204, 0.08);
  border: 1px solid rgba(142, 98, 204, 0.16);
  font-size: 0.78rem;
  color: #5b2c91;
}
.page-tcsp .tc-timeline { padding: 3rem 0; }
.page-tcsp .tc-timeline h2 {
  text-align: center;
  margin: 0.35rem 0 2rem;
  font-size: 1.4rem;
}
.page-tcsp .tc-track {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
  padding-left: 2.5rem;
}
.page-tcsp .tc-track::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #c4b5e0, #7dd3fc);
}
.page-tcsp .tc-item {
  position: relative;
  padding-bottom: 1.75rem;
}
.page-tcsp .tc-item:last-child { padding-bottom: 0; }
.page-tcsp .tc-dot {
  position: absolute;
  left: -2.05rem;
  top: 0.2rem;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--sol-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sol-purple);
  z-index: 1;
}
.page-tcsp .tc-item:nth-child(even) .tc-dot {
  border-color: var(--sol-sky);
  color: var(--sol-sky);
}
.page-tcsp .tc-content {
  background: #f9fafb;
  border: 1px solid var(--sol-border);
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
}
.page-tcsp .tc-content h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}
.page-tcsp .tc-content p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--sol-muted);
  line-height: 1.65;
}
.page-tcsp .tc-content .tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
}
.page-tcsp .tc-content .tags span {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: #efe8f8;
  color: var(--sol-purple);
  font-weight: 500;
}
.page-tcsp .tc-cols {
  padding: 3rem 0;
  background: #f9fafb;
}
.page-tcsp .tc-cols h2 {
  margin: 0.35rem 0 1.25rem;
  font-size: 1.4rem;
}
.page-tcsp .tc-cols-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.page-tcsp .tc-col-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--sol-border);
}
.page-tcsp .tc-col-head {
  padding: 1.15rem;
  text-align: center;
  color: #fff;
}
.page-tcsp .tc-col-head.purple { background: linear-gradient(135deg, #5b2c91, #2a1e43); }
.page-tcsp .tc-col-head.sky { background: linear-gradient(135deg, #0BCCFC, #2563eb); }
.page-tcsp .tc-col-head.green { background: linear-gradient(135deg, #5b2c91, #2a1e43); }
.page-tcsp .tc-col-head h3 {
  margin: 0;
  font-size: 1rem;
}
.page-tcsp .tc-col-body { padding: 1rem 1.15rem; }
.page-tcsp .tc-col-body .item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.86rem;
  color: #4b5563;
}
.page-tcsp .tc-col-body .item:last-child { border-bottom: none; }
.page-tcsp .tc-crm { padding: 3rem 0; }
.page-tcsp .tc-crm-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.page-tcsp .tc-crm h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.35rem;
}
.page-tcsp .tc-crm p.lead {
  margin: 0 0 1rem;
  color: var(--sol-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.page-tcsp .tc-crm ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.page-tcsp .tc-crm li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #4b5563;
}
.page-tcsp .tc-crm li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sol-sky);
  flex-shrink: 0;
}
.page-tcsp .tc-crm img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}

.sol-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.sol-btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

@media (max-width: 900px) {
  .page-fxsol .fxs-risk-grid {
    grid-template-areas:
      "label"
      "title"
      "body"
      "img";
  }
  .page-fxsol .fxs-risk img {
    height: 220px;
    min-height: 0;
  }
  .page-mso .mso-hero-grid,
  .page-mso .mso-alt-row,
  .page-fxsol .fxs-hero-grid,
  .page-fxsol .fxs-risk-grid,
  .page-fxsol .fxs-grid,
  .page-fxsol .fxs-kyc-grid,
  .page-aml .aml-hero-grid,
  .page-aml .aml-ps-grid,
  .page-aml .aml-data-grid,
  .page-trust .tr-hero-grid,
  .page-trust .tr-grid,
  .page-trust .tr-asset-grid,
  .page-tcsp .tc-hero-grid,
  .page-tcsp .tc-cols-grid,
  .page-tcsp .tc-crm-grid {
    grid-template-columns: 1fr;
  }
  .sol-wrap .sol-hero-spa {
    padding: 3.25rem 0 2.5rem;
    text-align: left;
  }
  .sol-wrap .mso-hero-img img,
  .sol-wrap .fxs-hero-img img,
  .sol-wrap .aml-hero-img img,
  .sol-wrap .tr-hero-img img,
  .sol-wrap .tc-hero-img img {
    max-height: 380px;
  }
  .page-mso .mso-alt-visual img {
    max-width: 100%;
    max-height: 220px;
  }
  .page-mso .mso-alt-row:nth-child(even) .mso-alt-text,
  .page-mso .mso-alt-row:nth-child(even) .mso-alt-visual {
    order: unset;
  }
  .page-mso .mso-hw-grid,
  .page-fxsol .fxs-stats-grid,
  .page-aml .aml-data-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .page-aml .aml-feat-row { flex-direction: column; }
  .page-aml .aml-feat-left { padding: 1rem 0 0; }
  .page-aml .aml-feat-right { padding: 0.75rem 1rem 1.25rem; }
  .page-trust .tr-flow-steps {
    flex-direction: column;
    gap: 1.25rem;
  }
  .page-trust .tr-flow-steps::before { display: none; }
}

@media (max-width: 560px) {
  .sol-wrap .sol-hero-actions,
  .sol-wrap .sol-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .sol-wrap .sol-hero-actions > a,
  .sol-wrap .sol-cta-actions > a {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sol-wrap .sol-hero-spa .btn-purple:hover,
  .sol-wrap .sol-hero-spa .sol-btn-ghost:hover,
  .sol-wrap .sol-cta .btn:hover {
    transform: none;
  }
}

html[lang="en"] .sol-wrap .sol-hero-actions > a {
  padding-inline: 1.05rem;
}

/* copy-linebreaks */
.sol-hero p,
.sol-cta p,
.fxs-card p,
.aml-card p,
.tr-card p,
.tr-step p,
.tc-timeline p {
  white-space: pre-line;
}
