     :root {
      --color-primary: #0BA56A;
      --color-primary-dark: #078857;
      --color-primary-soft: #EAF7EF;
      --color-primary-text: #111B24;
      --color-secondary-text: #707070;
      --color-light-shade: #D9D9D9;
      --color-stroke: #DCE1E5;
      --color-bg: #FFFFFF;
      --color-bg-soft: #F7F9F7;
      --color-bg-muted: #F3F6F4;
      --surface-card: #FFFFFF;
      --surface-soft-green: #F4FAF6;
      --font-primary: "Inter", sans-serif;
      --text-main-heading-size: clamp(22px, 4vw, 32px);
      --text-sub-heading-size: 22px;
      --text-paragraph-heading-size: 18px;
      --text-paragraph-size: 17px;

      --radius-card: 24px;
      --radius-btn: 8px;
      --radius-input: 14px;

      --transition-base: 0.25s ease;
      --transition-slow: 0.45s ease;

      --space-12: 12px;
      --space-16: 16px;
      --space-20: 20px;
      --space-24: 24px;
      --space-32: 32px;
      --space-48: 48px;
      --space-64: 64px;
      --space-80: 80px;
      --space-100: 100px;
    }
    *, *::before, *::after { box-sizing: border-box; }

    html, body { max-width: 100%; overflow-x: clip; }

    body { font-family: var(--font-primary); font-size: var(--text-paragraph-size); line-height: 1.6; color: var(--color-primary-text); background: var(--color-bg); -webkit-font-smoothing: antialiased; }

    h1 { font-family: var(--font-primary); margin: 0; font-size: clamp(28px, 5vw, 44px); line-height: 1.06; font-weight: 700; letter-spacing: -0.03em; color: var(--color-primary-text); }

    h2 { font-family: var(--font-primary); margin: 0; font-size: clamp(22px, 4vw, 32px); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; color: var(--color-primary-text); }

    h3 { font-family: var(--font-primary); margin: 0; font-size: 20px; line-height: 1.25; font-weight: 700; letter-spacing: -0.01em; color: var(--color-primary-text); }

    h4 { font-family: var(--font-primary); margin: 0; font-size: 18px; line-height: 1.35; font-weight: 600; color: var(--color-primary-text); }

    h5 { font-family: var(--font-primary); margin: 0; font-size: 16px; line-height: 1.4; font-weight: 600; color: var(--color-primary-text); }

    h6 { font-family: var(--font-primary); margin: 0; font-size: 14px; line-height: 1.4; font-weight: 600; color: var(--color-primary-text); }

    p { margin: 0; font-size: var(--text-paragraph-size); line-height: 1.6; color: var(--color-secondary-text); }

    img { max-width: 100%; height: auto; display: block; }

    a { text-decoration: none; transition: color var(--transition-base); }
    .tg-container { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 80px; padding-right: 80px; }

    @media (max-width: 991px) {
      .tg-container { padding-left: 40px; padding-right: 40px; }
    }
    @media (max-width: 767px) {
      .tg-container { padding-left: 20px; padding-right: 20px; }
    }
    .tg-section { padding-top: var(--space-64); padding-bottom: var(--space-64); }
    .tg-section-compact { padding-top: var(--space-48); padding-bottom: var(--space-48); }

    @media (max-width: 767px) {
      .tg-section { padding-top: 40px; padding-bottom: 40px; }
      .tg-section-compact { padding-top: 32px; padding-bottom: 32px; }
    }
    .tg-eyebrow { font-size: 12.5px; font-weight: 600; color: var(--color-primary); line-height: normal; margin-bottom: 14px; display: block; letter-spacing: 0.14em; text-transform: uppercase; }

    .tg-main-heading { font-size: var(--text-main-heading-size); line-height: 1.12; font-weight: 700; color: var(--color-primary-text); letter-spacing: -0.02em; margin: 0; }

    .tg-sub-heading { font-size: var(--text-sub-heading-size); line-height: 135%; font-weight: 600; color: var(--color-primary-text); margin: 0; }

    .tg-paragraph-heading { font-size: var(--text-paragraph-heading-size); line-height: 120%; font-weight: 600; color: var(--color-primary-text); }

    .tg-body { font-size: var(--text-paragraph-size); line-height: 1.6; font-weight: 400; color: var(--color-secondary-text); }

    @media (max-width: 767px) {
      .tg-sub-heading, h3 { font-size: 20px; }
      .tg-body, p { font-size: 17px; }
    }
    @media (max-width: 576px) {
      .tg-body, p { font-size: 15px; }
    }
    @media (max-width: 425px) {
      .tg-body, p { font-size: 14px; }
    }
    .tg-btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-btn); background: var(--color-primary); color: #fff; font-size: 14px; font-weight: 600; line-height: 1.2; border: 1px solid var(--color-primary); transition: all var(--transition-base); white-space: nowrap; box-shadow: 0 6px 18px rgba(11,165,106,0.3); }
    .tg-btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11,165,106,0.36); }

    .tg-btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-btn); background: #fff; color: var(--color-primary-text); font-size: 14px; font-weight: 600; line-height: 1.2; border: 1px solid var(--color-stroke); transition: all var(--transition-base); white-space: nowrap; }
    .tg-btn-secondary:hover { border-color: var(--color-primary); color: var(--color-primary); background: rgba(11,165,106,0.04); transform: translateY(-2px); }

    .tg-link-cta { font-size: 16px; font-weight: 600; color: var(--color-primary); }
    .tg-link-cta:hover { color: var(--color-primary-dark); }
    .tg-hero { padding-top: 130px; padding-bottom: 90px; background: linear-gradient(160deg, #fff 55%, var(--surface-soft-green) 100%); }

    .tg-hero-content { max-width: 620px; }

    .tg-hero-title { font-size: clamp(28px, 5vw, 44px); line-height: 1.06; font-weight: 700; color: var(--color-primary-text); letter-spacing: -0.03em; margin-bottom: 24px; }

    .tg-hero-desc { font-size: 18px; line-height: 1.6; color: var(--color-secondary-text); margin-bottom: 36px; }

    .tg-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }

    /* Benefit chips */
    .tg-chip { display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 0 16px; border-radius: 999px; background: var(--color-primary-soft); border: 1px solid rgba(11,165,106,0.18); font-size: 16px; font-weight: 600; color: var(--color-primary-text); }
    .tg-chip i { color: var(--color-primary); font-size: 14px; }

    /* Hero visual */
    .tg-hero-visual { border-radius: 28px; overflow: hidden; background: var(--color-primary-soft); border: 1px solid rgba(11,165,106,0.14); box-shadow: 0 24px 70px rgba(22,70,39,0.10); padding: 28px; }

    /* Floating dashboard mockup inside hero */
    .tg-hero-dashboard { background: #fff; border-radius: 18px; border: 1px solid var(--color-stroke); padding: 20px; }
    .db-topbar { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--color-stroke); margin-bottom: 16px; }
    .db-dot-group span { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 5px; }
    .db-dot-group span:nth-child(1) { background: #FF6058; }
    .db-dot-group span:nth-child(2) { background: #FFBD2E; }
    .db-dot-group span:nth-child(3) { background: #28C941; }
    .db-title { font-size: 13px; font-weight: 600; color: var(--color-secondary-text); }
    .db-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
    .db-stat { background: var(--surface-soft-green); border-radius: 12px; padding: 14px; border: 1px solid rgba(11,165,106,0.12); }
    .db-stat-val { font-size: 20px; font-weight: 700; color: var(--color-primary); }
    .db-stat-lbl { font-size: 11px; color: var(--color-secondary-text); }
    .db-progress-row { display: flex; flex-direction: column; gap: 10px; }
    .db-prog-item label { font-size: 12px; color: var(--color-secondary-text); margin-bottom: 4px; display: block; }
    .db-prog-bar { height: 7px; border-radius: 999px; background: var(--color-stroke); overflow: hidden; }
    .db-prog-fill { height: 100%; border-radius: 999px; background: var(--color-primary); }
    .db-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary); margin-top: 16px; }

    @media (max-width: 991px) {
      .tg-hero { padding-top: 100px; padding-bottom: 70px; }
      .tg-hero-content { max-width: 580px; margin-left: auto; margin-right: auto; text-align: center; }
      .tg-hero-title { font-size: clamp(28px, 4.5vw, 36px); }
      .tg-hero-desc { font-size: 16px; line-height: 1.55; margin-bottom: 28px; }
      .tg-hero-actions { justify-content: center; }
    }

    @media (max-width: 767px) {
      .tg-hero { padding-top: 88px; padding-bottom: 64px; }
      .tg-hero-title { font-size: 28px; }
      .tg-hero-visual { padding: 16px; border-radius: 18px; }
    }
    .tg-trust-strip { background: var(--color-primary-soft); border-top: 1px solid rgba(11,165,106,0.14); border-bottom: 1px solid rgba(11,165,106,0.14); padding: 28px 0; }
    .trust-scroll { display: flex; flex-direction: column; align-items: center; gap: 16px; }
    .trust-intro { margin: 0; font-size: 15px; font-weight: 700; color: var(--color-primary-text); display: inline-flex; align-items: center; justify-content: center; text-align: center; gap: 9px; }
    .trust-intro i { color: var(--color-primary); font-size: 17px; }
    .trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .trust-badge { font-size: 13px; font-weight: 600; color: var(--color-primary-text); display: inline-flex; align-items: center; gap: 6px; min-height: 38px; padding: 8px 12px; background: #fff; border: 1px solid rgba(11,165,106,0.22); border-radius: 7px; white-space: nowrap; }
    .trust-badge i { color: var(--color-primary); }
    @media (max-width: 767px) {
      .tg-trust-strip { padding: 22px 0; }
      .trust-intro { font-size: 14px; }
      .trust-badges { display: grid; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .trust-badge { min-height: 44px; padding: 8px 10px; justify-content: center; text-align: center; white-space: normal; }
      .trust-badge:last-child { grid-column: span 2; justify-self: center; }
    }
    .tg-stat-strip { padding: 80px 0 72px; background: #fff; border-bottom: 1px solid var(--color-stroke); }
    .stat-strip-heading { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-secondary-text); margin-bottom: 40px; }
    .stat-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .stat-card { background: var(--color-bg-soft); border: 1px solid var(--color-stroke); border-radius: 22px; padding: 28px 24px; transition: all var(--transition-base); }
    .stat-card:hover { transform: translateY(-4px); border-color: rgba(11,165,106,0.3); }
    .stat-value { font-size: 36px; font-weight: 700; color: var(--color-primary); line-height: 1.1; margin-bottom: 8px; }
    .stat-label { font-size: 14px; color: var(--color-secondary-text); line-height: 1.5; }

    /* Micro trust bar */
    .tg-micro-bar { background: var(--color-primary-text); padding: 14px 0; overflow: hidden; }
    .micro-bar-inner { display: flex; flex-wrap: nowrap; align-items: center; justify-content: space-between; gap: 0 24px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
    .micro-bar-inner::-webkit-scrollbar { display: none; }
    .micro-item { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 8px; white-space: nowrap; flex-shrink: 0; }
    .micro-item i { color: var(--color-primary); font-size: 15px; }

    @media (max-width: 991px) {
      .stat-card { padding: 22px 18px; }
      .stat-value { font-size: 30px; }
      .stat-label { font-size: 13px; }
    }
    @media (max-width: 767px) {
      .stat-card-grid { grid-template-columns: 1fr; }
      .stat-card { padding: 18px 16px; }
      .stat-value { font-size: 26px; }
    }
    .why-matters-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
    .why-matters-right-col { position: sticky; top: 100px; align-self: start; }
    .why-matters-right-col img { display: block; margin: 0 auto; max-width: 100%; height: auto; border-radius: 22px; }
    .why-reason-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 22px; }
    .why-reason-item { display: flex; gap: 16px; align-items: flex-start; }
    .why-reason-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 14px; background: var(--color-primary-soft); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--color-primary); }
    .why-reason-title { font-size: 15px; font-weight: 600; color: var(--color-primary-text); margin: 0 0 4px 0; }
    .why-reason-desc { font-size: 15px; color: var(--color-secondary-text); line-height: 1.6; }

    /* Visual placeholder */
    .tg-visual-block { border-radius: 24px; overflow: hidden; background: var(--color-bg-soft); border: 1px solid var(--color-stroke); min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 32px; position: relative; }
    .tg-visual-block .vi-icon { font-size: 48px; color: var(--color-primary); opacity: 0.5; }
    .tg-visual-block .vi-label { font-size: 14px; font-weight: 600; color: var(--color-secondary-text); }
    .tg-flow-card { background: var(--surface-soft-green); border: 1px solid rgba(11, 165, 106, 0.16); border-radius: 24px; padding: 32px; min-height: 420px; display: flex; flex-direction: column; gap: 20px; justify-content: space-between; box-shadow: 0 4px 20px rgba(11, 165, 106, 0.03); }
    
    .tg-flow-title { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-primary); text-align: center; margin-bottom: 8px; }
    
    .tg-flow-steps { display: flex; flex-direction: column; gap: 0; }
    
    .tg-flow-step { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
    
    .tg-flow-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; transition: background var(--transition-base), border var(--transition-base); }
    
    .tg-flow-icon.active { background: var(--color-primary); color: #fff; }
    
    .tg-flow-icon.inactive { background: var(--color-primary-soft); border: 1px solid rgba(11, 165, 106, 0.22); color: var(--color-primary); }
    
    .tg-flow-text { padding-top: 4px; }
    
    .tg-flow-name { font-size: 15px; font-weight: 700; color: var(--color-primary-text); margin-bottom: 2px; }
    
    .tg-flow-desc { font-size: 13px; color: var(--color-secondary-text); line-height: 1.5; }
    
    .tg-flow-line { width: 2px; height: 22px; background: rgba(11, 165, 106, 0.25); margin-left: 23px; /* Centered under 48px icon */ }
    
    .tg-flow-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
    
    .tg-flow-badge { font-size: 12px; font-weight: 600; background: #fff; border: 1px solid rgba(11, 165, 106, 0.22); border-radius: 999px; padding: 4px 12px; color: var(--color-primary); display: inline-flex; align-items: center; gap: 6px; box-shadow: 0 2px 6px rgba(11, 165, 106, 0.04); }
    
    /* Responsive adjustment for Flow Card */
    @media (max-width: 576px) {
      .tg-flow-card { padding: 20px; border-radius: 18px; gap: 16px; min-height: auto; }
      .tg-flow-step { grid-template-columns: 38px 1fr; gap: 12px; }
      .tg-flow-icon { width: 38px; height: 38px; border-radius: 10px; font-size: 16px; }
      .tg-flow-line { height: 18px; margin-left: 18px; /* Centered under 38px icon */ }
      .tg-flow-name { font-size: 14px; }
      .tg-flow-desc { font-size: 12px; }
      .tg-flow-badge { font-size: 11px; padding: 3px 10px; }
    }

    @media (max-width: 991px) {
      .why-matters-grid { grid-template-columns: 1fr; gap: 40px; }
      .why-matters-right-col { position: static; }
    }
    .challenges-bg { background: var(--color-bg-soft); }

    .challenge-switcher { margin-top: 44px; }
    .challenge-tabs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; max-width: 620px; margin-bottom: 18px; }
    .challenge-tab { min-height: 48px; border: 1px solid var(--color-stroke); border-radius: 10px; background: transparent; color: var(--color-secondary-text); font-size: 14px; font-weight: 700; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease; }
    .challenge-tab:hover, .challenge-tab.active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
    .challenge-panel { background: #fff; border: 1px solid var(--color-stroke); border-radius: var(--radius-card); min-height: 196px; padding: 32px 104px 32px 32px; position: relative; }
    .challenge-panel[hidden] { display: none; }
    .challenge-num { font-size: 64px; font-weight: 700; color: var(--color-primary); opacity: 0.12; position: absolute; top: 26px; right: 30px; line-height: 1; }
    .challenge-tag { font-size: 12px; font-weight: 700; color: var(--color-primary); background: var(--color-primary-soft); padding: 4px 12px; border-radius: 999px; display: inline-block; margin-bottom: 14px; }
    .challenge-title { font-size: 17px; font-weight: 700; color: var(--color-primary-text); margin: 0 0 10px 0; }
    .challenge-desc { font-size: 15px; color: var(--color-secondary-text); line-height: 1.65; }

    @media (max-width: 767px) {
      .challenge-switcher { margin-top: 32px; }
      .challenge-tabs { max-width: none; }
      .challenge-panel { min-height: 0; padding: 28px 68px 28px 24px; }
      .challenge-num { font-size: 46px; top: 24px; right: 18px; }
    }
    .tg-table-wrapper { width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; background: #fff; border: 1px solid var(--color-stroke); border-radius: 22px; margin-top: 40px; }
    .tg-table { width: 100%; border-collapse: collapse; }
    .tg-table thead tr { background: var(--color-primary-text); }
    .tg-table thead th { padding: 18px 22px; font-size: 14px; font-weight: 600; color: #fff; border: none; text-align: left; }
    .tg-table thead th:first-child { border-radius: 0; }
    .tg-table tbody tr { border-bottom: 1px solid var(--color-stroke); transition: background 0.2s; }
    .tg-table tbody tr:last-child { border-bottom: none; }
    .tg-table tbody tr:hover { background: var(--surface-soft-green); }
    .tg-table tbody td { padding: 16px 22px; font-size: 15px; color: var(--color-secondary-text); }
    .tg-table tbody td:first-child { font-weight: 600; color: var(--color-primary-text); }
    .tg-badge-good { color: var(--color-primary); font-weight: 600; }
    .tg-badge-bad { color: #E04040; font-weight: 600; }

    @media (max-width: 767px) {
      .tg-table-wrapper { border-radius: 16px; }
      .tg-table { min-width: 600px; }
    }
    /* Solutions grid - subgrid so tags align per row */
    .solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 24px; margin-top: 48px; }
    /* Each card spans 5 internal rows via subgrid */
    .solution-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
    .solution-card { background: #fff; border: 1px solid var(--color-stroke); border-radius: 22px; padding: 28px; display: grid; grid-template-rows: auto auto 1fr auto; transition: all 0.3s ease; }
    .solution-card:hover { transform: translateY(-5px); border-color: rgba(11,165,106,0.28); box-shadow: 0 16px 40px rgba(22,70,39,0.07); }
    .solution-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--color-primary-soft); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--color-primary); align-self: start; }
    .solution-icon img { width: 32px; height: 32px; object-fit: contain; }
    /* Row 2 - number */
    .solution-num { font-size: 12px; font-weight: 700; color: var(--color-primary); margin: 0; display: block; align-self: center; }
    /* Row 3 - title */
    .solution-title { font-size: 17px; font-weight: 700; color: var(--color-primary-text); margin: 0 0 10px 0; align-self: start; }
    /* Row 4 - description stretches (1fr) */
    .solution-desc { font-size: 15px; color: var(--color-secondary-text); line-height: 1.65; margin: 0; align-self: start; }
    /* Row 5 - tag always pinned to bottom */
    .solution-tag { font-size: 13px; font-weight: 600; color: var(--color-primary); display: flex; align-items: center; gap: 6px; padding-top: 16px; margin-top: 20px; border-top: 1px solid var(--color-stroke); align-self: end; }

    @media (max-width: 991px) { .solutions-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 767px) { .solutions-grid { grid-template-columns: 1fr; } }
    .journey-bg { background: var(--surface-soft-green); }
    .journey-ledger-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 42px; }
    .journey-ledger-intro .tg-main-heading { margin: 0; }
    .journey-ledger-intro-copy { max-width: 960px; }
    .journey-ledger { margin-top: 0; }
    .journey-process-nav { display: flex; position: relative; align-items: flex-start; justify-content: space-between; padding: 0 16px; gap: 0; }
    .journey-process-nav::before { content: "" ; position: absolute; left: 9%; right: 9%; top: 16px; height: 2px; background: rgba(11,165,106,0.2); }
    .journey-process-tab { position: relative; z-index: 1; flex: 1 1 0; min-height: 70px; padding: 0 8px; border: 0; background: transparent; color: var(--color-secondary-text); text-align: center; transition: color 0.2s ease; }
    .journey-process-tab:hover, .journey-process-tab.active { color: var(--color-primary-text); }
    .journey-process-tab::before { content: "" ; display: block; width: 14px; height: 14px; margin: 9px auto 10px; border: 3px solid var(--color-primary-soft); border-radius: 50%; background: #fff; box-shadow: 0 0 0 1px rgba(11,165,106,0.25); transition: background 0.2s ease, border-color 0.2s ease; }
    .journey-process-tab.active::before { background: var(--color-primary); border-color: #fff; box-shadow: 0 0 0 2px var(--color-primary); }
    .journey-process-tab .journey-step-num { display: block; margin-bottom: 5px; padding-top: 0; }
    .journey-process-tab-title { display: block; font-size: 12px; font-weight: 700; line-height: 1.35; }
    .journey-process-panel { display: grid; grid-template-columns: 112px minmax(0, 1fr); column-gap: 28px; row-gap: 10px; align-items: start; min-height: 190px; margin-top: 28px; padding: 28px 32px; background: #fff; border: 1px solid var(--color-stroke); border-radius: 14px; }
    .journey-process-panel[hidden] { display: none; }
    .journey-detail-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr); align-items: stretch; gap: 24px; margin-top: 28px; }
    .journey-panel-stack { display: flex; }
    .journey-panel-stack .journey-process-panel { width: 100%; height: 100%; box-sizing: border-box; margin-top: 0; }
    .journey-step-visual { min-height: 100%; margin: 0; overflow: hidden; border: none; background: transparent; align-self: center; display: flex; justify-content: center; align-items: center; }
    .journey-step-visual .journey-step-image { display: none; width: 100%; height: auto; min-height: 0; max-height: 260px; object-fit: cover; border-radius: 14px; margin: 0 auto; }
    .journey-step-visual .journey-step-image.is-active { display: block; margin: 0 auto; }
    .journey-step-num { grid-column: 1; grid-row: 1 / span 3; font-size: 13px; font-weight: 700; color: var(--color-primary); padding-top: 3px; }
    .journey-step-title { grid-column: 2; grid-row: 1; font-size: 18px; font-weight: 700; color: var(--color-primary-text); margin-bottom: 8px; }
    .journey-step-desc { grid-column: 2; grid-row: 2; font-size: 15px; color: var(--color-secondary-text); line-height: 1.65; margin: 0; }
    .journey-tags { grid-column: 2; grid-row: 3; display: flex; gap: 8px; flex-wrap: wrap; align-content: flex-start; }
    .journey-tag { font-size: 13px; font-weight: 600; color: var(--color-primary-text); background: var(--color-primary-soft); border: 1px solid rgba(11,165,106,0.14); padding: 4px 12px; border-radius: 999px; }
    .journey-process-panel { display: flex; flex-direction: column; justify-content: center; min-height: 0; padding: 26px 28px; }
    .journey-process-panel .journey-step-num, .journey-process-panel .journey-step-title, .journey-process-panel .journey-step-desc, .journey-process-panel .journey-tags { grid-column: auto; grid-row: auto; }
    .journey-process-panel .journey-step-num { display: block; margin-bottom: 8px; padding-top: 0; }
    .journey-process-panel .journey-step-title { margin-bottom: 10px; }
    .journey-process-panel .journey-step-desc { margin: 0; }
    .journey-process-panel .journey-tags { margin-top: 18px; }

    @media (max-width: 991px) {
      .journey-ledger-intro { align-items: flex-start; flex-direction: column; }
      .journey-detail-layout { grid-template-columns: 1fr 0.7fr; }
      .journey-process-panel { grid-template-columns: 94px minmax(0, 1fr); }
      .journey-step-num { grid-column: 1; grid-row: 1 / span 3; }
      .journey-step-title { grid-column: 2; grid-row: 1; }
      .journey-step-desc { grid-column: 2; grid-row: 2; }
      .journey-tags { grid-column: 2; grid-row: 3; }
    }
    @media (max-width: 767px) {
      .journey-ledger-intro { gap: 22px; margin-bottom: 30px; }
      .journey-process-nav { justify-content: flex-start; overflow-x: auto; padding: 0 8px 12px; }
      .journey-process-nav::before { left: 68px; right: auto; width: 660px; }
      .journey-process-tab { flex: 0 0 132px; min-height: 66px; }
      .journey-detail-layout { grid-template-columns: 1fr; margin-top: 16px; }
      .journey-process-panel { grid-template-columns: 1fr; gap: 12px; min-height: 0; margin-top: 16px; padding: 24px 22px; }
      .journey-step-visual .journey-step-image { max-height: 220px; }
      .journey-step-num, .journey-step-title, .journey-step-desc, .journey-tags { grid-column: auto; grid-row: auto; }
    }
    .features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
    .feature-pair-card { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); background: #fff; border: 1px solid var(--color-stroke); border-radius: 20px; overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
    .feature-pair-card:hover { border-color: rgba(11,165,106,0.25); box-shadow: 0 14px 36px rgba(22,70,39,0.07); }
    .feature-card { min-height: 100%; padding: 28px; position: relative; }
    .feature-card + .feature-card { border-left: 1px solid var(--color-stroke); }
    .feature-card.feature-wide { grid-column: auto; }
    .feature-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--color-primary-soft); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--color-primary); margin-bottom: 16px; }
    .feature-icon img { width: 28px; height: 28px; object-fit: contain; }
    .feature-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-primary); position: absolute; top: 30px; right: 28px; max-width: calc(100% - 118px); margin: 0; padding: 6px 10px; border: 1px solid rgba(11,165,106,0.22); border-radius: 999px; background: var(--color-primary-soft); text-align: right; line-height: 1.35; }
    .feature-title { font-size: 16px; font-weight: 700; color: var(--color-primary-text); margin: 0 0 10px 0; }
    .feature-desc { font-size: 14px; color: var(--color-secondary-text); line-height: 1.65; }

    @media (max-width: 767px) {
      .features-grid { grid-template-columns: 1fr; }
      .feature-pair-card { grid-template-columns: 1fr; }
      .feature-card + .feature-card { border-left: 0; border-top: 1px solid var(--color-stroke); }
    }
    .dashboard-section { background: var(--color-primary-text); }
    .dashboard-section .tg-eyebrow { color: var(--color-primary); }
    .dashboard-section .tg-main-heading { color: #fff; }
    .dashboard-section .tg-body { color: rgba(255,255,255,0.62); max-width: 840px; }

    /* Header row */
    .dash-section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 52px; }
    .dash-section-left { max-width: 860px; }
    .dash-counter { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.35); white-space: nowrap; padding-bottom: 4px; }
    .dash-counter #dash-current { font-size: 28px; font-weight: 700; color: var(--color-primary); line-height:1; }
    .dash-sep { margin: 0 4px; }

    /* Two-col layout */
    .dash-swiper-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }

    .dash-vnav { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 120px; z-index: 10; }
    .dash-vnav-btn { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 14px; border: 1px solid transparent; background: transparent; text-align: left; cursor: pointer; transition: all 0.22s ease; width: 100%; }
    .dash-vnav-btn:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }
    .dash-vnav-btn.active { background: rgba(11,165,106,0.14); border-color: rgba(11,165,106,0.3); }
    .dvn-num { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.25); min-width: 22px; transition: color 0.22s; }
    .dash-vnav-btn.active .dvn-num { color: var(--color-primary); }
    .dvn-body { flex: 1; }
    .dvn-title { display: block; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.45); line-height: 1.3; transition: color 0.22s; }
    .dash-vnav-btn.active .dvn-title, .dash-vnav-btn:hover .dvn-title { color: rgba(255,255,255,0.9); }
    .dvn-sub { display: block; font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 3px; }
    .dvn-arrow { font-size: 12px; color: rgba(255,255,255,0.15); transition: color 0.22s, transform 0.22s; }
    .dash-vnav-btn.active .dvn-arrow { color: var(--color-primary); transform: translateX(2px); }

    /* Viewport */
    .dash-viewport-wrap { position: relative; }

    /* Progress bar */
    .dash-progress-rail { height: 3px; background: rgba(255,255,255,0.08); border-radius: 99px; margin-bottom: 24px; overflow: hidden; }
    .dash-progress-fill { height: 100%; background: var(--color-primary); border-radius: 99px; transition: width 0.4s ease; width: calc(100% / 6); }

    /* Track / slides */
    .dash-track { overflow: hidden; position: relative; }
    .dash-slide-new { display: none; animation: slideIn 0.38s ease; }
    .dash-slide-new.active { display: block; }
    @keyframes slideIn {
      from { opacity: 0; transform: translateX(28px); }
      to { opacity: 1; transform: translateX(0); }
    }
    /* Slide meta (tag + description) */
    .dslide-meta { margin-bottom: 18px; }
    .dslide-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--color-primary); background: rgba(11,165,106,0.12); border: 1px solid rgba(11,165,106,0.22); border-radius: 999px; padding: 5px 14px; margin-bottom: 12px; }
    .dslide-desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 680px; }

    .dslide-screen { background: #1A2430; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
    .dscreen-topbar { display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .db-dot-group span { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 4px; }
    .db-dot-group span:nth-child(1) { background: #FF6058; }
    .db-dot-group span:nth-child(2) { background: #FFBD2E; }
    .db-dot-group span:nth-child(3) { background: #28C941; }
    .dscreen-title { flex: 1; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }
    .dscreen-body { display: grid; grid-template-columns: 180px 1fr; min-height: 320px; }
    .dscreen-sidebar { border-right: 1px solid rgba(255,255,255,0.06); padding: 16px 12px; display: flex; flex-direction: column; gap: 2px; }
    .dsb-item { display: flex; align-items: center; gap: 9px; padding: 9px 11px; border-radius: 9px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.38); cursor: default; }
    .dsb-item.active-dsb { background: rgba(11,165,106,0.16); color: var(--color-primary); }
    .dscreen-main { display: flex; flex-direction: column; gap: 14px; padding: 16px; }

    /* KPI row */
    .dkpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
    .dkpi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 11px; padding: 13px 14px; }
    .dkpi-val { font-size: 20px; font-weight: 700; color: #fff; }
    .dkpi-lbl { font-size: 10px; color: rgba(255,255,255,0.38); margin-top: 3px; }
    .dkpi-trend { font-size: 10px; color: var(--color-primary); margin-top: 3px; }

    /* Data table */
    .dtable { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 11px; overflow: hidden; flex: 1; }
    .dtable-head, .dtable-row { display: grid; grid-template-columns: 2fr 1.4fr 1fr 1fr; gap: 10px; padding: 9px 14px; }
    .dtable-head { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .dtable-head span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.28); }
    .dtable-row { border-bottom: 1px solid rgba(255,255,255,0.04); }
    .dtable-row:last-child { border-bottom: none; }
    .dtable-row span { font-size: 12px; color: rgba(255,255,255,0.6); }
    .dstatus-ok { color: var(--color-primary) !important; font-weight: 600 !important; }
    .dstatus-warn { color: #E07800 !important; font-weight: 600 !important; }
    .dstatus-danger { color: #E04040 !important; font-weight: 600 !important; }

    /* Arrows */
    .dash-arrows { display: flex; gap: 10px; justify-content: flex-end; margin-bottom: 16px; }
    .dash-arrow-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6); font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.22s ease; }
    .dash-arrow-btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
    .dash-arrow-btn:disabled { opacity: 0.25; cursor: not-allowed; }

    /* Dot indicators */
    .dash-dots { display: flex; gap: 8px; justify-content: center; margin-top: 18px; }
    .dash-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.18); border: none; cursor: pointer; transition: all 0.22s ease; padding: 0; }
    .dash-dot.active { background: var(--color-primary); width: 22px; border-radius: 99px; }

    /* Touch swipe support */
    .dash-track { touch-action: pan-y; }

    /* Responsive */
    @media (max-width: 991px) {
      .dash-swiper-layout { grid-template-columns: 1fr; }
      .dash-vnav { display: none; }
      .dash-section-header { align-items: flex-start; flex-direction: column; gap: 16px; }
    }
    @media (max-width: 767px) {
      .dscreen-body { grid-template-columns: 1fr; }
      .dscreen-sidebar { display: none; }
      .dkpi-row { grid-template-columns: repeat(2,1fr); }
      .dtable-head span:last-child, .dtable-row span:last-child { display: none; }
      .dtable-head, .dtable-row { grid-template-columns: 2fr 1.2fr 1fr; }
    }
    .compliance-bg { background: var(--color-bg-soft); }
    .region-cards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 48px; }
    .region-card { background: #fff; border: 1px solid var(--color-stroke); border-radius: 22px; padding: 28px 32px; transition: all 0.3s ease; }
    .region-card:hover { transform: translateY(-4px); border-color: rgba(11,165,106,0.25); box-shadow: 0 14px 38px rgba(22,70,39,0.07); }
    .region-flag { font-size: 28px; margin-bottom: 14px; }
    .region-flag img { width: 44px; height: 44px; object-fit: contain; }
    .region-name { font-size: 18px; font-weight: 700; color: var(--color-primary-text); margin: 0 0 10px 0; }
    .region-regs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
    .region-reg-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary); }
    .region-help { font-size: 15px; color: var(--color-secondary-text); line-height: 1.65; }
    .region-desc { font-size: 14px; color: var(--color-secondary-text); line-height: 1.5; margin-bottom: 14px; }
    .region-help-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-primary-text); margin-bottom: 6px; margin-top: 14px; }
    .additional-frameworks { margin-top: 36px; background: var(--color-primary-soft); border: 1px solid rgba(11,165,106,0.18); border-radius: 18px; padding: 24px 28px; }
    .fw-title { font-size: 15px; font-weight: 700; color: var(--color-primary-text); margin-bottom: 14px; }
    .fw-badges { display: flex; flex-wrap: wrap; gap: 10px; }
    .fw-badge { font-size: 13px; font-weight: 600; color: var(--color-primary-text); background: #fff; border: 1px solid var(--color-stroke); padding: 6px 14px; border-radius: 999px; display: flex; align-items: center; gap: 6px; }
    .fw-badge i { color: var(--color-primary); }
    @media (max-width: 767px) { .region-cards-grid { grid-template-columns: 1fr; } }
    #fsma { background: #fff; }
    /* ── Section header split */
    .fsma2-header { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; margin-bottom: 64px; }
    .fsma2-stat-stack { display: flex; flex-direction: column; gap: 14px; }
    .fsma2-stat { background: var(--color-bg-soft); border: 1px solid var(--color-stroke); border-radius: 18px; padding: 18px 22px; display: flex; align-items: center; gap: 16px; }
    .fsma2-stat-val { font-size: 22px; font-weight: 700; color: var(--color-primary); line-height: 1; min-width: 110px; white-space: nowrap; }
    .fsma2-stat-lbl { font-size: 13px; color: var(--color-secondary-text); line-height: 1.5; }
    .fsma2-deadline { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 12px 18px; background: rgba(11,165,106,0.07); border: 1px solid rgba(11,165,106,0.2); border-radius: 14px; font-size: 14px; color: var(--color-primary-text); }
    .fsma2-deadline strong { color: var(--color-primary); }
    .fsma2-deadline i { color: var(--color-primary); font-size: 18px; }
    /* ── BLOCK LABEL */
    .fsma2-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-primary); margin-bottom: 10px; }
    .fsma2-flow-wrap { background: var(--color-primary-text); border-radius: 28px; padding: 40px 40px 36px; margin-bottom: 32px; position: relative; overflow: hidden; }
    .fsma2-flow-wrap::before { content: '' ; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(11,165,106,0.08) 0%, transparent 70%); pointer-events: none; }
    .fsma2-flow-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
    .fsma2-flow-hdr-left .fsma2-label { color: var(--color-primary); }
    .fsma2-flow-hdr-left h3 { font-size: 20px; font-weight: 700; color: #fff; margin: 0; }
    .fsma2-flow-hdr-right { font-size: 13px; color: rgba(255,255,255,0.4); }
    .fsma2-flow-hdr-right strong { color: var(--color-primary); font-size: 22px; font-weight: 700; display: block; line-height: 1; }

    /* Timeline row */
    .fsma2-timeline { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; position: relative; margin-bottom: 28px; }
    /* Connecting line behind nodes (removed) */
    .fsma2-timeline::before { display: none; }
    .fsma2-tl-node { display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; position: relative; z-index: 1; padding: 0 4px; }
    /* Add chevron arrows between timeline nodes */
    .fsma2-tl-node:not(:last-child)::after { content: "\f285" ; font-family: "bootstrap-icons" !important; position: absolute; right: 0; top: 22px; transform: translate(50%, -50%); font-size: 14px; color: rgba(255, 255, 255, 0.2); pointer-events: none; transition: color var(--transition-base); }
    .fsma2-tl-node.active::after { color: var(--color-primary); }
    .fsma2-tl-node:nth-child(7n + 1)::after { display: none; }
    .fsma2-tl-dot { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 2px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 18px; color: rgba(255,255,255,0.35); transition: all 0.25s ease; flex-shrink: 0; }
    .fsma2-tl-node:hover .fsma2-tl-dot { background: rgba(11,165,106,0.18); border-color: rgba(11,165,106,0.4); color: var(--color-primary); }
    .fsma2-tl-node.active .fsma2-tl-dot { background: var(--color-primary); border-color: var(--color-primary); color: #fff; box-shadow: 0 0 0 6px rgba(11,165,106,0.2); }
    .fsma2-tl-num { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.25); transition: color 0.25s; }
    .fsma2-tl-node.active .fsma2-tl-num { color: var(--color-primary); }
    .fsma2-tl-lbl { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.35); text-align: center; line-height: 1.35; transition: color 0.25s; }
    .fsma2-tl-node.active .fsma2-tl-lbl, .fsma2-tl-node:hover .fsma2-tl-lbl { color: rgba(255,255,255,0.85); }
    /* Progress fill line */
    .fsma2-tl-track { display: none; }
    .fsma2-tl-fill { display: none; }
    /* KDE detail panel (inside dark card) */
    .fsma2-kde-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 24px 28px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; animation: fsmaSlideIn 0.35s ease; }
    @keyframes fsmaSlideIn {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .kde-left-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .kde-icon-circle { width: 40px; height: 40px; border-radius: 12px; background: var(--color-primary); display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff; flex-shrink: 0; }
    .kde-cte-name { font-size: 17px; font-weight: 700; color: #fff; }
    .kde-tags { display: flex; flex-wrap: wrap; gap: 7px; }
    .kde-tag { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 99px; background: rgba(11,165,106,0.15); border: 1px solid rgba(11,165,106,0.25); color: var(--color-primary); }
    /* KDE record card (right side) */
    .kde-record-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; }
    .kde-record-head { padding: 10px 16px; background: rgba(11,165,106,0.14); border-bottom: 1px solid rgba(11,165,106,0.18); font-size: 12px; font-weight: 700; color: var(--color-primary); display: flex; align-items: center; gap: 7px; }
    .kde-record-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); gap: 12px; }
    .kde-record-row:last-child { border-bottom: none; }
    .kde-record-row span:first-child { font-size: 11px; color: rgba(255,255,255,0.35); flex-shrink: 0; }
    .kde-record-val { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); text-align: right; }
    .kde-record-status { padding: 10px 16px; background: rgba(11,165,106,0.1); font-size: 11px; font-weight: 700; color: var(--color-primary); display: flex; align-items: center; gap: 6px; }
    /* Nav row below dark card */
    .fsma2-flow-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
    .fsma2-nav-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 0 18px; height: 40px; cursor: pointer; transition: all 0.22s ease; }
    .fsma2-nav-btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
    .fsma2-nav-btn:disabled { opacity: 0.25; pointer-events: none; }
    .fsma2-flow-dots { display: flex; gap: 7px; }
    .fsma2-fdot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.18); border: none; cursor: pointer; transition: all 0.22s ease; padding: 0; }
    .fsma2-fdot.active { background: var(--color-primary); width: 20px; border-radius: 99px; }
    .fsma2-req-wrap { margin-top: 56px; }
    .fsma2-req-hdr { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
    .fsma2-req-hdr h3 { font-size: 24px; font-weight: 700; color: var(--color-primary-text); margin: 0; }
    .fsma2-req-hdr p { font-size: 15px; color: var(--color-secondary-text); margin: 8px 0 0; }
    .fsma2-all-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--color-primary); background: rgba(11,165,106,0.08); border: 1px solid rgba(11,165,106,0.18); border-radius: 999px; padding: 6px 16px; white-space: nowrap; }
    /* Requirement grid */
    .fsma2-req-grid { display: flex; flex-direction: column; gap: 10px; }
    .fsma2-req-card { border: 1px solid var(--color-stroke); border-radius: 18px; overflow: hidden; transition: border-color 0.22s ease; }
    .fsma2-req-card.open { border-color: rgba(11,165,106,0.3); }
    .fsma2-req-trigger { display: grid; grid-template-columns: 100px 1fr 36px; align-items: center; gap: 20px; padding: 18px 22px; cursor: pointer; background: #fff; transition: background 0.22s ease; }
    .fsma2-req-card.open .fsma2-req-trigger { background: rgba(11,165,106,0.04); }
    .fsma2-req-trigger:hover { background: var(--color-bg-soft); }
    .req-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
    .req-badge.covered { background: rgba(11,165,106,0.1); color: var(--color-primary); border: 1px solid rgba(11,165,106,0.2); }
    .fsma2-req-title-text { font-size: 16px; font-weight: 600; color: var(--color-primary-text); line-height: 1.4; }
    .fsma2-req-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--color-stroke); display: flex; align-items: center; justify-content: center; color: var(--color-secondary-text); font-size: 14px; transition: all 0.22s ease; flex-shrink: 0; }
    .fsma2-req-card.open .fsma2-req-icon { background: var(--color-primary); border-color: var(--color-primary); color: #fff; transform: rotate(45deg); }
    /* Accordion body */
    .fsma2-req-body { display: none; border-top: 1px solid var(--color-stroke); }
    .fsma2-req-card.open .fsma2-req-body { display: block; }
    .fsma2-req-col { padding: 22px 24px; }
    .fsma2-req-col-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--color-secondary-text); margin-bottom: 10px; }
    .fsma2-req-col p { font-size: 15px; color: var(--color-secondary-text); line-height: 1.7; margin: 0; }
    .fsma2-req-col.tg-col { background: rgba(11,165,106,0.03); }
    .fsma2-req-col.tg-col .fsma2-req-col-label { color: var(--color-primary); }
    .fsma2-req-col.tg-col p { color: var(--color-primary-text); }
    /* CTA row */
    .fsma2-cta-row { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; padding: 0; background: none; border: none; }
    .fsma2-cta-row .tg-btn-primary { white-space: nowrap; }
    .fsma2-cta-row p { flex: 1; margin: 0; font-size: 16px; color: var(--color-secondary-text); }
    .fsma2-cta-row p strong { color: var(--color-primary-text); display: block; font-size: 18px; margin-bottom: 4px; }
    @media (max-width: 991px) {
      .fsma2-header { grid-template-columns: 1fr; gap: 32px; }
      .fsma2-stat-stack { flex-direction: row; flex-wrap: wrap; }
      .fsma2-stat { flex: 1 1 200px; }
      .fsma2-timeline { grid-template-columns: repeat(4, 1fr); }
      .fsma2-kde-panel { grid-template-columns: 1fr; }
      /* Adjust chevrons for 4-column tablet layout */
      .fsma2-tl-node::after { font-size: 12px; }
      .fsma2-tl-node:nth-child(7n + 1)::after { display: block; }
      .fsma2-tl-node:nth-child(4n + 1)::after { display: none; }
    }
    @media (max-width: 767px) {
      .fsma2-flow-wrap { padding: 24px 20px; }
      .fsma2-timeline { grid-template-columns: repeat(4, 1fr); overflow-x: auto; }
      .fsma2-req-hdr { flex-direction: column; align-items: flex-start; gap: 16px; }
      .fsma2-req-trigger { grid-template-columns: 80px 1fr 32px; gap: 12px; padding: 14px 16px; }
      .fsma2-req-card.open .fsma2-req-body { grid-template-columns: 1fr; }
      .fsma2-req-col:first-child { border-right: none; border-bottom: 1px solid var(--color-stroke); }
      .fsma2-cta-row { flex-direction: column; align-items: center; padding: 0; }
    }
    .impact-bg { background: var(--color-primary-text); }
    .impact-bg .tg-eyebrow { color: var(--color-primary); }
    .impact-bg .tg-main-heading { color: #fff; }
    .impact-bg .tg-body { color: rgba(255,255,255,0.6); }
    .impact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
    .impact-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 28px; transition: all 0.3s ease; }
    .impact-card:hover { background: rgba(11,165,106,0.12); border-color: rgba(11,165,106,0.3); transform: translateY(-4px); }
    .impact-num { font-size: 24px; font-weight: 700; color: var(--color-primary); margin-bottom: 8px; }
    .impact-title { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 8px 0; }
    .impact-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
    .impact-cta-row { margin-top: 48px; text-align: center; }
    @media (max-width: 991px) { .impact-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 767px) { .impact-grid { grid-template-columns: 1fr; } }
    .supply-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
    .supply-card { background: #fff; border: 1px solid var(--color-stroke); border-radius: 20px; padding: 24px; transition: all 0.3s ease; }
    .supply-card:hover { transform: translateY(-4px); border-color: rgba(11,165,106,0.28); box-shadow: 0 12px 34px rgba(22,70,39,0.07); }
    .supply-icon { font-size: 28px; margin-bottom: 14px; }
    .supply-icon img { width: 44px; height: 44px; object-fit: contain; }
    .supply-title { font-size: 16px; font-weight: 700; color: var(--color-primary-text); margin: 0 0 8px 0; }
    .supply-desc { font-size: 14px; color: var(--color-secondary-text); line-height: 1.6; margin-bottom: 14px; }
    .supply-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .supply-tag { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary); }
    @media (max-width: 991px) { .supply-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 767px) { .supply-grid { grid-template-columns: 1fr; } }
    .comparison-bg { background: var(--color-bg-soft); }
    .comparison-table-wrapper { width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; background: #fff; border: 1px solid var(--color-stroke); border-radius: 22px; margin-top: 48px; }
    .comparison-table { width: 100%; border-collapse: collapse; }
    .comparison-table thead tr { background: var(--color-primary-text); }
    .comparison-table thead th { padding: 18px 20px; font-size: 14px; font-weight: 700; color: #fff; text-align: center; border: none; }
    .comparison-table thead th:first-child { text-align: left; width: 30%; }
    .comparison-table thead th.th-highlight { background: var(--color-primary); }
    .comparison-table tbody tr { border-bottom: 1px solid var(--color-stroke); transition: background 0.2s; }
    .comparison-table tbody tr:last-child { border-bottom: none; }
    .comparison-table tbody tr:hover { background: var(--surface-soft-green); }
    .comparison-table tbody td { padding: 15px 20px; font-size: 14px; color: var(--color-secondary-text); text-align: center; }
    .comparison-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--color-primary-text); }
    .comparison-table tbody td.td-highlight { background: rgba(11,165,106,0.04); font-weight: 700; }
    .ct-yes { color: var(--color-primary); font-weight: 700; }
    .ct-no { color: #E04040; font-weight: 700; }
    .ct-partial { color: #E07800; font-weight: 600; font-size: 13px; }
    @media (max-width: 767px) {
      .comparison-table { min-width: 800px; }
    }
    .testimonial-bg { background: var(--color-primary-text); }
    .trbg-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
    .trbg-header .tg-main-heading { color: #fff; max-width: 560px; margin: 0; }
    .trbg-header .tg-body { color: rgba(255,255,255,0.5); margin: 0; max-width: 360px; }
    .trbg-header-right { flex-shrink: 0; }
    .tr-trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
    .tr-trust-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 6px 14px; }
    .tr-trust-badge i { color: var(--color-primary); }
    .tr-main-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; margin-bottom: 20px; }
    .tr-featured { background: rgba(11,165,106,0.1); border: 1px solid rgba(11,165,106,0.22); border-radius: 28px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; min-height: 380px; position: relative; overflow: hidden; }
    .tr-featured::before { content: '“' ; position: absolute; top: -10px; right: 28px; font-size: 160px; font-family: Georgia, serif; color: rgba(11,165,106,0.15); line-height: 1; pointer-events: none; }
    .tr-stars { display: flex; gap: 3px; margin-bottom: 22px; }
    .tr-stars i { color: #F4B942; font-size: 14px; }
    .tr-featured-text { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.85); font-weight: 400; flex: 1; margin-bottom: 32px; }
    .tr-featured-author { display: flex; align-items: center; gap: 16px; padding-top: 20px; border-top: 1px solid rgba(11,165,106,0.22); }
    .tr-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--color-primary); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0; }
    .tr-author-name { font-size: 15px; font-weight: 700; color: #fff; }
    .tr-author-role { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px; }
    .tr-author-tag { margin-left: auto; font-size: 11px; font-weight: 600; color: var(--color-primary); background: rgba(11,165,106,0.14); border: 1px solid rgba(11,165,106,0.22); border-radius: 999px; padding: 4px 12px; white-space: nowrap; }
    /* Right stacked cards */
    .tr-stack { display: flex; flex-direction: column; gap: 20px; }
    .tr-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 28px; flex: 1; display: flex; flex-direction: column; transition: all 0.25s ease; }
    .tr-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
    .tr-card-stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .tr-card-stars i { color: #F4B942; font-size: 12px; }
    .tr-card-text { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.62); flex: 1; margin-bottom: 20px; }
    .tr-card-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); }
    .tr-card-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.7); flex-shrink: 0; }
    .tr-card-name { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85); }
    .tr-card-role { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 1px; }
    .tr-card-tag { margin-left: auto; font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; padding: 3px 10px; white-space: nowrap; }
    /* Bottom stats bar */
    .tr-stats-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.07); border-radius: 22px; overflow: hidden; margin-top: 0; }
    .tr-stat { background: rgba(255,255,255,0.03); padding: 24px 28px; text-align: center; }
    .tr-stat-val { font-size: 28px; font-weight: 700; color: var(--color-primary); line-height: 1; margin-bottom: 6px; }
    .tr-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.4; }
    /* Responsive */
    @media (max-width: 991px) {
      .tr-main-grid { grid-template-columns: 1fr; }
      .tr-stats-bar { grid-template-columns: repeat(2,1fr); }
      .trbg-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    }
    @media (max-width: 767px) {
      .tr-featured { padding: 28px 24px; min-height: auto; }
      .tr-author-tag { display: none; }
      .tr-stats-bar { grid-template-columns: repeat(2,1fr); }
      .tr-card-tag { display: none; }
    }
    .case-studies-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
    .case-study-card { background: #fff; border: 1px solid var(--color-stroke); border-radius: 22px; overflow: hidden; transition: all 0.3s ease; }
    .case-study-card:hover { transform: translateY(-5px); border-color: rgba(11,165,106,0.25); box-shadow: 0 18px 46px rgba(22,70,39,0.08); }
    /* REPLACE: .case-study-img - swap with real case study image */
    .case-study-img { background: var(--color-bg-soft); border-bottom: 1px solid var(--color-stroke); height: 180px; display: flex; align-items: center; justify-content: center; font-size: 40px; color: var(--color-primary); }
    .case-study-body { padding: 24px; }
    .case-study-focus { font-size: 12px; font-weight: 700; text-transform: uppercase; color: var(--color-primary); letter-spacing: 0.06em; margin-bottom: 8px; }
    .case-study-title { font-size: 18px; font-weight: 700; color: var(--color-primary-text); margin: 0 0 10px 0; }
    .case-study-desc { font-size: 14px; color: var(--color-secondary-text); line-height: 1.65; margin-bottom: 18px; }

    @media (max-width: 991px) { .case-studies-grid { grid-template-columns: 1fr; } }
    .faq-bg { background: var(--color-bg-soft); }
    .faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 72px; }
    .faq-intro-side { position: sticky; top: 100px; align-self: start; }
    .faq-list { display: flex; flex-direction: column; }
    .faq-item { border-bottom: 1px solid var(--color-stroke); }
    .faq-question-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 22px 0; cursor: pointer; }
    .faq-q-text { font-size: 16px; font-weight: 600; color: var(--color-primary-text); line-height: 1.45; }
    .faq-item.open .faq-q-text { color: var(--color-primary); }
    .faq-toggle { width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--color-stroke); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--color-secondary-text); transition: all 0.25s; }
    .faq-item.open .faq-toggle { background: var(--color-primary); border-color: var(--color-primary); color: #fff; transform: rotate(45deg); }
    .faq-answer { font-size: 15px; line-height: 175%; color: var(--color-secondary-text); padding-bottom: 20px; display: none; }
    .faq-item.open .faq-answer { display: block; }

    @media (max-width: 991px) {
      .faq-layout { grid-template-columns: 1fr; gap: 40px; }
      .faq-intro-side { position: static; }
    }
    .final-cta-section { padding: 80px 0 100px; }
    .final-cta-panel { background: var(--color-primary-soft); border: 1px solid rgba(11,165,106,0.18); border-radius: 36px; padding: 48px 56px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; margin-top: 48px; }
    .final-cta-panel .tg-btn-primary { justify-content: center; }
    .final-cta-panel .bi-arrow-right { margin-left: 6px; }
    .final-cta-title { font-size: 32px; font-weight: 700; color: var(--color-primary-text); line-height: 1.25; margin-bottom: 14px; }
    .final-cta-desc { font-size: 16px; color: var(--color-secondary-text); line-height: 1.7; max-width: 540px; }
    .final-cta-right { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; min-width: 240px; width: 100%; }
    .final-cta-buttons { display: flex; flex-direction: row; flex-wrap: wrap; gap: 12px; width: 100%; }
    .final-cta-buttons .tg-btn-primary, .final-cta-buttons .tg-btn-secondary { flex: 1 1 200px; max-width: 280px; }
    @media (max-width: 767px) {
      .final-cta-buttons .tg-btn-primary, .final-cta-buttons .tg-btn-secondary { max-width: 100%; }
    }
    .cta-proof-chips { display: flex; flex-direction: column; gap: 10px; }
    .cta-proof-chip { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--color-primary-text); }
    .cta-proof-chip i { color: var(--color-primary); }

    @media (max-width: 991px) {
      .final-cta-panel { grid-template-columns: 1fr; padding: 36px 32px; }
    }
    @media (max-width: 767px) {
      .final-cta-panel { padding: 28px 20px; border-radius: 24px; }
      .final-cta-title { font-size: 24px; }
    }
    .section-header-group { margin-bottom: 32px; max-width: 960px; }
    .section-header-center { text-align: center; margin-left: auto; margin-right: auto; }
    .mt-20 { margin-top: 20px; }
    .mt-32 { margin-top: 32px; }
    .mt-48 { margin-top: 48px; }
    .gap-16 { gap: 16px; }
    :focus-visible { outline: 3px solid rgba(11,165,106,0.35); outline-offset: 3px; }
    [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    [data-reveal].revealed { opacity: 1; transform: translateY(0); }
    [data-reveal-delay="1"] { transition-delay: 80ms; }
    [data-reveal-delay="2"] { transition-delay: 160ms; }
    [data-reveal-delay="3"] { transition-delay: 240ms; }
    [data-reveal-delay="4"] { transition-delay: 320ms; }
    [data-reveal-delay="5"] { transition-delay: 400ms; }

    /* Custom layout and text adjustments */
    .tg-body-centered-max { max-width: 800px; margin: 0 auto; }
    .fsma2-timeline-box { margin-top: 24px; padding: 20px; background: rgba(11, 165, 106, 0.08); border-left: 4px solid var(--color-primary); border-radius: 8px; }
    .fsma2-timeline-box h3 { color: var(--color-primary-text); margin: 0 0 8px 0; font-size: 16px; font-weight: 700; }
    .fsma2-timeline-box h3 i { color: var(--color-primary); margin-right: 8px; }
    .fsma2-timeline-box p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--color-secondary-text); }
    .impact-cta-row p { color: rgba(255, 255, 255, 0.6); margin-bottom: 20px; }
    .faq-intro-side .tg-btn-primary { display: inline-flex; }

    /* Table of Contents */
    .tg-toc-section {
      display: none;
      background-color: #fafafa;
      padding: 32px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .tg-toc-card {
      max-width: 960px;
      margin: 0 auto;
      background: #ffffff;
      border: 1px solid #e6f5ee;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 8px 24px rgba(0, 40, 22, 0.04);
    }
    .tg-toc-trigger {
      width: 100%;
      background: none;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0;
      color: #002816;
      cursor: pointer;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
    }
    .tg-toc-trigger-text {
      font-size: 18px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .tg-toc-trigger-text i {
      color: #008352;
      font-size: 22px;
    }
    .tg-toc-arrow {
      width: 36px;
      height: 36px;
      background: #e6f5ee;
      border-radius: 50%;
      color: #008352;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .tg-toc-card.active .tg-toc-arrow {
      transform: rotate(180deg);
    }
    .tg-toc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .tg-toc-nav {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #f0f0f0;
    }
    .tg-toc-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px 24px;
    }
    .tg-toc-item {
      margin: 0;
      padding: 0;
    }
    .tg-toc-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14.5px;
      color: #475467;
      font-weight: 500;
      padding: 4px 0;
      transition: color 0.2s ease;
      text-decoration: none;
    }
    .tg-toc-link::before {
      content: "";
      width: 6px;
      height: 6px;
      background-color: #008352;
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
      margin-right: 12px;
    }
    .tg-toc-link:hover, .tg-toc-link:active {
      color: #008352;
      text-decoration: none;
    }

    @media (max-width: 991px) {
      .tg-toc-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 767px) {
      .tg-toc-section {
        display: block;
        padding: 20px 0;
      }
      .tg-toc-card {
        padding: 16px;
      }
      .tg-toc-trigger-text {
        font-size: 16px;
      }
      .tg-toc-trigger-text i {
        font-size: 20px;
      }
      .tg-toc-arrow {
        width: 32px;
        height: 32px;
      }
      .tg-toc-nav {
        margin-top: 16px;
        padding-top: 16px;
      }
      .tg-toc-list {
        grid-template-columns: 1fr;
        gap: 10px;
      }
      .tg-toc-link {
        font-size: 14px;
        padding: 6px 0;
      }
    }

    /* Scroll Offset for TOC targets */
    #why-matters,
    #challenges,
    #how-we-solve,
    #journey,
    #features,
    #dashboards,
    #compliance,
    #fsma,
    #impact,
    #supply-chain,
    #comparison,
    #testimonials,
    #case-studies,
    #faq {
      scroll-margin-top: 90px;
    }
