/* ============================================================
   Datum Systems — Modern Redesign
   Clean, professional, high-trust SaaS aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Brand */
  --navy: #0B2545;
  --navy-deep: #071A33;
  --navy-mid: #143A66;
  --blue: #1B6CA8;
  --blue-soft: #E8F1FB;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-soft: #FFF7ED;

  /* Neutrals */
  --white: #FFFFFF;
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --text: #0F172A;
  --text-secondary: #334155;
  --muted: #64748B;
  --faint: #94A3B8;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;

  /* Backward-compat aliases for original HTML inline styles */
  --blue-dark: var(--navy);
  --blue-light: var(--blue-soft);
  --gray: var(--muted);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, 0.05);
  --shadow: 0 4px 12px rgba(11, 37, 69, 0.07);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.1);
  --shadow-lg: 0 20px 48px rgba(11, 37, 69, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  font-size: 16px;
}

/* Headings use IBM Plex Sans for a consistent, trustworthy institutional feel */
h1, h2, h3, h4,
.section-title,
.hero h1,
.page-header h1 {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

img, svg {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  border-radius: 8px;
}

button {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================================
   Header
   ============================================================ */
header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-right nav { order: 1; }
.header-right .trustaml-badge { order: 2; height: 26px; width: auto; flex-shrink: 0; }
.header-right .nav-toggle { order: 3; }

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

nav a {
  font-weight: 550;
  font-size: 14px;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

nav a:hover,
nav a.active {
  color: var(--orange);
  background: var(--orange-soft);
}

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  margin-left: 6px;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

/* Dropdown */
li.has-dropdown {
  position: relative;
}

li.has-dropdown > .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 8px;
  list-style: none;
  z-index: 60;
}

li.has-dropdown:hover > .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 550;
  color: var(--navy);
  border-radius: 8px;
}

.dropdown a:hover {
  background: var(--blue-soft);
  color: var(--orange);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 108, 168, 0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -60px;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero p {
  font-size: 17px;
  color: #C7D7EA;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}

.tag {
  display: inline-block;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #FFD4A8;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  line-height: 1.5;
  max-width: 580px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 650;
  font-size: 14.5px;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  margin-left: 12px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  backdrop-filter: blur(8px);
}

.hero-panel h3 {
  font-size: 13px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-panel ul {
  list-style: none;
}

.hero-panel li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14.5px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #E2EBF5;
}

.hero-panel li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* At a Glance label/value pairs (About page + hero) */
.hero-panel .glance-label {
  flex: 0 0 140px;
  font-weight: 700;
  color: var(--navy);
  font-size: 13.5px;
}

.hero-panel .glance-value {
  flex: 1;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

/* When hero-panel is used on light backgrounds (e.g. About page) */
.hero-panel[style*="blue-light"] li,
.about-grid .hero-panel li {
  color: var(--text-secondary);
  border-bottom-color: var(--border);
}

.about-grid .hero-panel .glance-label {
  color: var(--navy);
}

.about-grid .hero-panel .glance-value {
  color: var(--muted);
}

.dot {
  color: var(--orange);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   Sections
   ============================================================ */
section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg);
}

.eyebrow {
  color: var(--orange);
  font-weight: 750;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

h2.section-title {
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.22;
  position: relative;
}

/* Accent underline for section titles */
h2.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3.5px;
  background: linear-gradient(90deg, var(--orange), #FDBA74);
  border-radius: 3px;
  margin-top: 14px;
}

/* Skip underline when title is inside dark panels */
.transform-head h2.section-title::after,
.cta-band h2::after {
  display: none;
}

.section-lead {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 44px;
  font-size: 16.5px;
  line-height: 1.7;
}

/* ============================================================
   Cards & Grids
   ============================================================ */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}

.card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card .icon {
  width: 48px;
  height: 48px;
  background: var(--blue-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 18px;
}

.card h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 750;
  letter-spacing: -0.015em;
}

.card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.card-do {
  padding-bottom: 56px;
}

.card-more {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  transition: var(--transition);
  border: 1px solid transparent;
}

.card-more:hover {
  background: var(--navy);
  color: #fff;
}

.card-more::after {
  content: "→";
}

.card-click {
  cursor: pointer;
  border-color: rgba(249, 115, 22, 0.3);
}

.card-click:hover {
  border-color: var(--orange);
}

.card-click::after {
  content: "Click to expand ›";
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-size: 12px;
  font-weight: 650;
  color: var(--orange);
}

.card ul.card-feats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card ul.card-feats li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 7px;
}

.card ul.card-feats li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.card-detail {
  display: none;
}

.card-detail h3 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 10px;
}

.card-back {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 650;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-back:hover {
  color: var(--orange);
}

.card-detail-link {
  font-weight: 650;
  color: var(--blue);
  font-size: 13.5px;
  display: inline-block;
  margin-top: 14px;
}

.card-detail-link:hover {
  color: var(--orange);
}

.sector-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.sector-logo {
  height: 26px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left;
  margin-bottom: 14px;
}

/* ============================================================
   Stats
   ============================================================ */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
}

.stats .grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats .num {
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.03em;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  line-height: 1.1;
}

.stats .label {
  font-size: 13.5px;
  color: #A8C0D8;
  margin-top: 10px;
  font-weight: 550;
}

/* ============================================================
   Transform / TrustAML Effect section
   ============================================================ */
.transform-section {
  padding: 56px 0 20px;
}

.transform-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-deep) 0%, #0a1f3a 100%);
  border-radius: 24px;
  padding: 56px 48px 44px;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.transform-panel::before,
.transform-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}

.transform-panel::before {
  background: #e8544a;
  top: -80px;
  left: -100px;
}

.transform-panel::after {
  background: #4fa3e3;
  bottom: -100px;
  right: -80px;
}

.transform-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.transform-head .section-title {
  margin-bottom: 14px;
}

.transform-head .section-lead {
  margin-bottom: 0;
}

.transform-compare {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.transform-col {
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}

.transform-col-classic {
  background: var(--white);
  align-items: center;
}

.transform-col-premium {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tc-label {
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
}

.tc-label-light { color: var(--muted); }
.tc-label-dark { color: #9fb4cc; }

.transform-svg-classic {
  height: 680px;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  flex: 1;
}

.tf-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.tf-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px 20px 18px;
  backdrop-filter: blur(6px);
  text-align: center;
}

.tf-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.tf-tag-red {
  background: rgba(232, 84, 74, 0.14);
  color: #ffb3ac;
  border: 1px solid rgba(232, 84, 74, 0.35);
}

.tf-tag-blue {
  background: rgba(79, 163, 227, 0.14);
  color: #a9dbfa;
  border: 1px solid rgba(79, 163, 227, 0.35);
}

.tf-gauge-svg {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.tf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.tf-chips span {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #dce8f5;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}

.tf-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.tf-flow-svg {
  width: 170px;
  max-width: 100%;
  height: auto;
}

.transform-foot {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: #8fa8c4;
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   4 Pillars
   ============================================================ */
.pillars-wrap {
  display: flex;
  gap: 52px;
  align-items: center;
}

.pillars-graphic {
  flex: 0 0 320px;
  width: 320px;
}

.pillars-donut {
  position: relative;
  width: 100%;
}

.pillars-graphic svg {
  width: 100%;
  height: auto;
  display: block;
}

.pillars-graphic svg path {
  cursor: pointer;
  transition: opacity 0.2s, filter 0.2s;
  stroke: #fff;
  stroke-width: 3;
}

.pillars-graphic svg path:hover {
  filter: brightness(1.1);
}

.pillars-graphic svg path.dim {
  opacity: 0.4;
}

.pillars-graphic svg .seg-num {
  font-size: 20px;
  font-weight: 800;
  fill: #fff;
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
}

.pillars-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.pillars-hub b {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.2;
}

.pillars-hub span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-top: 4px;
}

.pillars-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 22px;
}

.pillars-legend .lg-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  transition: var(--transition);
}

.pillars-legend .lg-dot {
  margin-top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  flex-shrink: 0;
}

.pillars-legend .lg-text {
  text-align: left;
  flex: 1;
}

.pillars-legend .lg-item:hover {
  background: var(--blue-soft);
}

.pillars-legend .lg-item.active {
  background: var(--blue-soft);
  color: var(--navy);
}

.pillars-detail {
  flex: 1;
  min-width: 0;
}

.pillar-pane {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}

.pillar-pane.active {
  display: block;
}

.pillar-pane .p-eyebrow {
  color: var(--orange);
  font-weight: 750;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pillar-pane h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pillar-pane ul {
  margin: 0 0 18px;
  padding-left: 0;
  list-style: none;
}

.pillar-pane li {
  font-size: 14.5px;
  color: var(--text-secondary);
  padding: 10px 0 10px 24px;
  border-top: 1px dashed var(--border);
  position: relative;
  line-height: 1.5;
}

.pillar-pane li:first-child {
  border-top: none;
}

.pillar-pane li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--orange);
  font-weight: 800;
}

.pillar-pane .p-link {
  font-weight: 650;
  color: var(--blue);
  font-size: 14px;
}

.pillar-pane .p-link:hover {
  color: var(--orange);
}

/* ============================================================
   What We Do / Ecosystem cards
   ============================================================ */
.eco-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.eco-tile {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.eco-tile:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: var(--shadow);
}

.eco-tile.active {
  border-color: var(--navy);
  background: var(--blue-soft);
}

.eco-tile .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.eco-tile.active .icon {
  background: var(--navy);
  color: #fff;
}

.eco-tile h4 {
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 650;
}

/* ============================================================
   Sectors
   ============================================================ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sector-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  transition: var(--transition);
}

.sector-chip:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.sector-chip h4 {
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 700;
}

.sector-chip p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

/* ============================================================
   CTA Band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.cta-band h2 {
  font-size: 30px;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
  font-size: 16.5px;
}

.cta-band .btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.cta-band .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--navy-deep);
  color: #A8C0D8;
  padding: 56px 0 24px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  color: #6B859E;
  font-size: 13px;
}

/* ============================================================
   Inner page header
   ============================================================ */
.page-header {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--white);
  padding: 56px 0;
}

.page-header h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.breadcrumb {
  color: #A8C0D8;
  font-size: 13.5px;
  margin-top: 10px;
}

.breadcrumb .orange {
  color: var(--orange);
}

.back-link {
  display: inline-block;
  color: #A8C0D8;
  font-weight: 650;
  font-size: 13.5px;
  margin-top: 18px;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--orange);
}

/* ============================================================
   About page
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.value-item {
  display: flex;
  gap: 14px;
}

.value-item .num {
  color: var(--orange);
  font-weight: 800;
  font-size: 18px;
  min-width: 32px;
}

.about-tab-pane {
  display: none;
}

.about-tab-pane.active {
  display: block;
}

.board-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 16px;
}

.board-card .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.board-card h4 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 2px;
}

.board-card .role {
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 12.5px;
  margin-bottom: 8px;
}

.board-card p {
  color: var(--muted);
  font-size: 14px;
}

.board-rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}

.board-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}

.board-row:hover {
  box-shadow: var(--shadow);
}

.board-row .board-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  border: 3px solid var(--blue-soft);
}

.board-row-body {
  flex: 1;
  min-width: 0;
}

.board-row-body h4 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: 750;
}

.board-row-body .role {
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.board-row-body .board-bio {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  text-align: left;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.journey-list {
  margin-top: 10px;
}

.journey-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px dashed var(--border);
}

.journey-item:first-child {
  border-top: none;
}

.journey-item .yr {
  color: var(--orange);
  font-weight: 800;
  font-size: 15px;
  min-width: 70px;
  flex-shrink: 0;
}

.journey-item p {
  color: var(--muted);
  font-size: 14.5px;
}

.content-pending {
  background: var(--blue-soft);
  border: 1px dashed var(--blue);
  border-radius: var(--radius);
  padding: 20px 22px;
  color: var(--navy);
  font-size: 13.5px;
  line-height: 1.6;
}

.content-pending b {
  color: var(--orange-dark);
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow);
}

.contact-card h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: 14.5px;
}

form.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

label {
  font-size: 13px;
  font-weight: 650;
  color: var(--navy);
  display: block;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14.5px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 108, 168, 0.12);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

button.submit-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 650;
  font-size: 14.5px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.25);
}

button.submit-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ============================================================
   Transaction Monitoring flow diagram
   ============================================================ */
.nn-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.nn-title {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: 700;
}

.nn-lead {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 4px;
}

.ai-svg {
  width: 100%;
  height: auto;
  display: block;
  max-width: 660px;
  margin: 10px auto 0;
}

.ai-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
}

.ai-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 650;
  color: var(--navy);
}

.ai-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   Module feature pages
   ============================================================ */
.mf-single {
  max-width: 800px;
}

.mf-features {
  list-style: none;
  margin-top: 10px;
}

.mf-features li {
  font-size: 14.5px;
  color: var(--text-secondary);
  padding: 12px 0 12px 28px;
  border-top: 1px dashed var(--border);
  position: relative;
  line-height: 1.5;
}

.mf-features li:first-child {
  border-top: none;
}

.mf-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--orange);
  font-weight: 800;
  font-size: 15px;
}

.mf-features li b {
  color: var(--navy);
}

.mf-infographic-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}

.mf-infographic-full h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 6px;
  text-align: center;
  font-weight: 750;
}

.mf-infographic-full .mf-sub {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin-bottom: 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.mf-infographic-full svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   Services / Training / Entity selectors
   ============================================================ */
.entity-select {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.entity-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 650;
  font-size: 13px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.entity-btn:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: var(--shadow);
}

.entity-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.entity-btn .e-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.entity-btn .e-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.entity-btn .e-count {
  font-size: 10.5px;
  font-weight: 550;
  color: var(--muted);
}

.entity-btn.active .e-count {
  color: #c7d7ea;
}

.entity-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 26px;
}

.entity-note b {
  color: var(--orange-dark);
}

.entity-source {
  font-size: 12px;
  color: var(--faint);
  margin: -8px 0 22px;
}

.train-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.train-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.train-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.train-code {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.train-card h4 {
  color: var(--navy);
  font-size: 15.5px;
  margin-bottom: 6px;
  line-height: 1.35;
  font-weight: 700;
}

.train-meta {
  color: var(--orange-dark);
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.train-bullets {
  list-style: none;
  margin-bottom: 14px;
}

.train-bullets li {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0 4px 15px;
  position: relative;
  line-height: 1.4;
}

.train-bullets li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

.train-card .p-link {
  font-size: 13px;
}

.train-detail {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 0 16px;
}

.train-detail.open {
  display: block;
}

.train-detail .td-code {
  color: var(--orange-dark);
  font-weight: 750;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
}

.train-detail h4 {
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 750;
}

.train-detail .td-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.train-detail .td-meta b {
  color: var(--navy);
}

.train-detail p.td-desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.session-list {
  margin: 14px 0;
}

.session-item {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
}

.session-item:first-child {
  border-top: none;
}

.session-item .s-time {
  color: var(--orange-dark);
  font-weight: 700;
  min-width: 100px;
  flex-shrink: 0;
  font-size: 12px;
}

.session-item .s-body b {
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
  font-size: 13.5px;
}

.session-item .s-body span {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
}

.td-close {
  text-align: center;
  margin-top: 14px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gallery-item .g-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--blue-soft);
  display: block;
}

.gallery-item .g-cap {
  padding: 16px 18px;
}

.gallery-item .g-cap b {
  display: block;
  color: var(--navy);
  font-size: 13.5px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.gallery-item .g-cap span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
}

/* Featured offering */
.feature-banner {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.feature-banner .fb-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.feature-banner h2 {
  font-size: 26px;
  margin-bottom: 8px;
  font-weight: 800;
}

.feature-banner p {
  color: #C7D7EA;
  font-size: 14.5px;
  max-width: 640px;
}

.feature-banner .fb-cta {
  flex-shrink: 0;
  margin-left: auto;
}

/* Module blocks */
.module-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.module-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.module-head .icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.module-head h3 {
  color: var(--navy);
  font-size: 19px;
  font-weight: 750;
}

.module-head .mtag {
  margin-left: auto;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.module-block p.mdesc {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 16px;
}

.subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.subitem {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-top: 1px dashed var(--border);
}

.subitem:first-child,
.subitem:nth-child(2) {
  border-top: none;
}

.subitem b {
  color: var(--navy);
}

.subitem .step-no {
  color: var(--orange);
  font-weight: 800;
  min-width: 20px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.chip {
  background: var(--blue-soft);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.chip.orange {
  background: var(--orange-soft);
  color: var(--orange-dark);
  border-color: #FED7AA;
}

.note-strip {
  background: var(--blue-soft);
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--text-secondary);
  border-radius: 0 8px 8px 0;
  margin-top: 14px;
}

/* Product rows */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  align-items: start;
  transition: var(--transition);
}

.product-row:hover {
  box-shadow: var(--shadow);
}

.product-row .ptitle {
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  height: fit-content;
}

.product-row p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero .container,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid3,
  .grid2,
  .stats .grid4,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pillars-wrap {
    flex-direction: column;
  }

  .pillars-graphic {
    margin: 0 auto;
  }

  .transform-panel {
    padding: 40px 24px 30px;
  }

  .transform-compare {
    grid-template-columns: 1fr;
  }

  .transform-svg-classic {
    height: 520px;
  }

  .tf-flow {
    margin: 6px auto;
  }

  .tf-flow-svg {
    width: 200px;
  }

  .eco-tiles {
    grid-template-columns: repeat(3, 1fr);
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .entity-select {
    grid-template-columns: repeat(2, 1fr);
  }

  .train-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .subgrid {
    grid-template-columns: 1fr;
  }

  .mf-infographic-full {
    padding: 20px 16px;
    overflow-x: auto;
  }

  .mf-infographic-full svg {
    min-width: 1000px;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav.open {
    max-height: 70vh;
    overflow-y: auto;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 20px 20px;
  }

  nav li {
    width: 100%;
  }

  nav a {
    display: block;
    padding: 14px 8px;
    border-radius: 8px;
    min-height: 44px;
  }

  nav .nav-cta {
    margin-top: 10px;
    text-align: center;
    margin-left: 0 !important;
  }

  li.has-dropdown > .dropdown {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 6px;
    margin-top: 0;
    background: var(--bg);
  }

  .dropdown a {
    padding: 12px 8px 12px 20px;
    font-size: 13px;
    min-height: auto;
  }

  .session-item {
    flex-direction: column;
    gap: 2px;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 60px 0 68px;
  }

  .hero h1 {
    font-size: 30px;
    letter-spacing: -0.025em;
  }

  h2.section-title {
    font-size: 26px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .hero-panel .glance-label,
  .about-grid .hero-panel .glance-label {
    flex: none;
    display: block;
    margin-bottom: 2px;
  }

  .hero-panel li {
    flex-direction: column;
    gap: 2px;
  }

  section {
    padding: 52px 0;
  }

  .grid3,
  .grid2,
  .stats .grid4,
  .footer-grid,
  .train-grid,
  .gallery-grid,
  .entity-select,
  .eco-tiles,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 10px;
    display: inline-flex;
  }

  .feature-banner {
    padding: 28px 22px;
  }

  .feature-banner .fb-cta {
    margin-left: 0;
  }

  .cta-band .btn-outline {
    margin-top: 10px;
  }

  .logo-img {
    height: 34px;
  }

  .header-right {
    gap: 12px;
  }

  .trustaml-badge {
    height: 20px;
  }

  .transform-svg-classic {
    height: 420px;
  }

  .board-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .nn-block {
    padding: 18px 16px 14px;
  }

  .ai-legend {
    gap: 8px 14px;
  }

  .ai-legend span {
    font-size: 11px;
  }
}
