﻿/* ====== Brand-aligned page styles (match Payroll.html vocabulary) ====== */
      .pay-pain-card {
        background: #fff;
        border: 1px solid rgba(235, 80, 23, 0.12);
        border-radius: 18px;
        padding: 28px 24px;
        height: 100%;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease,
          border-color 0.25s ease;
        position: relative;
        overflow: hidden;
      }
      .pay-pain-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(235, 80, 23, 0.1);
        border-color: rgba(235, 80, 23, 0.35);
      }
      .pay-pain-card .pain-num {
        font-size: 56px;
        line-height: 1;
        font-weight: 800;
        color: rgba(235, 80, 23, 0.1);
        position: absolute;
        top: 10px;
        right: 18px;
        letter-spacing: -2px;
      }
      .pay-pain-card .pain-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: #fdeee7;
        color: #eb5017;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 16px;
      }
      .pay-pain-card .pain-stat {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(235, 80, 23, 0.08);
        color: #eb5017;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        margin-top: 14px;
      }

      .feat-tick {
        color: #eb5017;
        font-size: 18px;
        margin-right: 8px;
        flex-shrink: 0;
        line-height: 1.4;
      }

      /* Stat band */
      .pay-stat-band {
        background: linear-gradient(135deg, #eb5017 0%, #ff7849 100%);
        border-radius: 28px;
        padding: 48px 32px;
        color: #fff;
        position: relative;
        overflow: hidden;
      }
      .pay-stat-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.12) 0, transparent 35%),
          radial-gradient(circle at 5% 95%, rgba(255, 255, 255, 0.08) 0, transparent 30%);
        pointer-events: none;
      }
      .pay-stat-band .stat-num {
        font-size: 40px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: -1px;
        margin-bottom: 8px;
      }
      .pay-stat-band .stat-label {
        font-size: 14px;
        opacity: 0.92;
        line-height: 1.4;
      }

      /* Module / feature cards */
      .module-card {
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 18px;
        padding: 26px 22px;
        height: 100%;
        transition: all 0.25s ease;
      }
      .module-card:hover {
        border-color: #eb5017;
        box-shadow: 0 14px 28px rgba(235, 80, 23, 0.08);
        transform: translateY(-3px);
      }
      .module-card .mod-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: #fdeee7;
        color: #eb5017;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 16px;
      }
      .module-card h6 {
        font-weight: 600;
        margin-bottom: 8px;
        color: #1a1a1a;
        font-size: 17px;
      }
      /* Comparison */
      .compare-wrap {
        background: #fff;
        border-radius: 24px;
        border: 1px solid #f1e2d8;
        overflow: hidden;
      }
      .compare-row {
        display: grid;
        grid-template-columns: 1.1fr 1.15fr 1.15fr;
        border-bottom: 1px solid #f5ece5;
      }
      .compare-row:last-child {
        border-bottom: 0;
      }
      .compare-row > div {
        padding: 18px 22px;
        font-size: 14.5px;
      }
      .compare-row.head > div {
        font-weight: 700;
        background: #faf3ee;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
      }
      .compare-row.head .col-trackk {
        background: #eb5017;
        color: #fff;
      }
      .compare-row.head .col-trackk::before {
          content: "RECOMMENDED";
          position: absolute;
          top: 18px;
          right: 135px;
          font-size: 0.6rem;
          background: #f1fcc8;
          color: #1a1a1a;
          padding: 2px 8px;
          border-radius: 999px;
          letter-spacing: 0.08em;
          font-weight: 700;
      }
      .compare-row.head .col-trackk {
      position: relative;
      }
      .compare-row .col-old {
      color: #8a6f64;
      }
      .compare-row .col-trackk {
        color: #1a1a1a;
        font-weight: 500;
        background: #fffaf6;
      }
      .compare-row .col-trackk .bi {
        color: #eb5017;
        margin-right: 6px;
      }
      .compare-row .col-old .bi {
        color: #c97a5b;
        margin-right: 6px;
      }
      @media (max-width: 768px) {
        .compare-row {
          grid-template-columns: 1fr;
        }
        .compare-row.head .col-old,
        .compare-row.head .col-trackk {
          display: none;
        }
        .compare-row > div {
          padding: 12px 18px;
        }
        .compare-row .col-old::before {
          content: "Old way: ";
          font-weight: 700;
          color: #c97a5b;
        }
        .compare-row .col-trackk::before {
          content: "With Trackk: ";
          font-weight: 700;
          color: #eb5017;
        }
      }

  
      /* Pain to solution bridge */
      .pain-solution-bridge {
        text-align: center;
        margin: 30px 0 10px;
      }
      .pain-solution-bridge .bridge-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #1a1a1a;
        color: #fff;
        padding: 12px 24px;
        border-radius: 999px;
        font-weight: 600;
        font-size: 14px;
      }
      .pain-solution-bridge .bridge-pill .bi {
        color: #ff7849;
        font-size: 18px;
      }
      /* ROI strip */
      .roi-strip {
        background: #1a1a1a;
        color: #fff;
        border-radius: 24px;
        padding: 36px;
        position: relative;
        overflow: hidden;
      }
      .roi-strip::before {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(235, 80, 23, 0.35) 0, transparent 65%);
      }
      .roi-num {
        font-size: 36px;
        font-weight: 700;
        color: #ff7849;
        line-height: 1;
        margin-bottom: 6px;
      }

      /* Use case strip */
      .uc-card {
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 18px;
        padding: 22px;
        height: 100%;
        transition: all 0.25s;
      }
      .uc-card:hover {
        background: #fdeee7;
        border-color: #eb5017;
      }
      .uc-card .uc-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: #fdeee7;
        color: #eb5017;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 14px;
      }
      .uc-card:hover .uc-icon {
        background: #fff;
      }

      /* ===== AUDIT-PAGE-SPECIFIC ===== */

      /* Status pills (workflow) */
      .status-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
      }
      @media (max-width: 768px) {
        .status-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      .status-card {
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 14px;
        padding: 18px 16px;
        text-align: center;
        position: relative;
        transition: all 0.25s;
      }
      .status-card:hover {
        border-color: #eb5017;
        transform: translateY(-2px);
      }
      .status-card .sc-num {
        font-size: 11px;
        font-weight: 700;
        color: #c97a5b;
        letter-spacing: 1px;
        margin-bottom: 8px;
      }
      .status-card .sc-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        display: inline-block;
        margin-right: 6px;
        vertical-align: middle;
      }
      .status-card .sc-title {
        font-weight: 700;
        font-size: 14.5px;
        margin-bottom: 6px;
        color: #1a1a1a;
      }
      .status-card .sc-desc {
        font-size: 12px;
        color: #6b7280;
        line-height: 1.45;
      }
      .status-card.s1 .sc-dot {
        background: #c97a5b;
      }
      .status-card.s2 .sc-dot {
        background: #ff9f43;
      }
      .status-card.s3 .sc-dot {
        background: #5b8def;
      }
      .status-card.s4 .sc-dot {
        background: #eb5017;
      }
      .status-card.s5 .sc-dot {
        background: #2e5f15;
      }

      /* Para card mock */
      .para-card-mock {
        background: #fff;
        border-radius: 16px;
        padding: 22px;
        box-shadow: 0 30px 60px rgba(60, 30, 20, 0.1);
        border: 1px solid #f1e2d8;
        max-width: 420px;
        margin: 0 auto;
        position: relative;
      }
      .para-card-mock .pcm-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 14px;
        padding-bottom: 14px;
        border-bottom: 1px dashed #f1e2d8;
      }
      .para-card-mock .pcm-id {
        font-family: "Courier New", monospace;
        font-size: 11px;
        color: #8a6f64;
        font-weight: 600;
        letter-spacing: 0.5px;
      }
      .para-card-mock .pcm-title {
        font-weight: 700;
        color: #1a1a1a;
        font-size: 15px;
        margin-top: 2px;
        line-height: 1.35;
      }
      .para-card-mock .pcm-pill {
        background: #fff3ec;
        color: #a73e0e;
        font-size: 10px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 999px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
      }
      .para-card-mock .pcm-row {
        display: flex;
        justify-content: space-between;
        padding: 5px 0;
        font-size: 12.5px;
        color: #404040;
      }
      .para-card-mock .pcm-row .pcm-key {
        color: #8a6f64;
        font-weight: 500;
      }
      .para-card-mock .pcm-row .pcm-val {
        font-weight: 600;
        color: #1a1a1a;
      }
      .para-card-mock .pcm-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px dashed #f1e2d8;
      }
      .para-card-mock .pcm-tag {
        font-size: 10px;
        background: #faf3ee;
        color: #6b4133;
        padding: 3px 8px;
        border-radius: 6px;
        font-weight: 500;
      }
      .para-card-mock .pcm-stamp {
        position: absolute;
        top: 18px;
        right: -10px;
        background: #fdeee7;
        color: #a73e0e;
        font-size: 10px;
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 4px;
        transform: rotate(8deg);
        box-shadow: 0 4px 10px rgba(167, 62, 14, 0.15);
      }

      /* Activity log mock */
      .activity-log {
        background: #1a1a1a;
        color: #fff;
        border-radius: 18px;
        padding: 22px;
        font-family: "Courier New", monospace;
        font-size: 12.5px;
        line-height: 1.7;
        position: relative;
        overflow: hidden;
      }
      .activity-log .al-label {
        color: #8a8a8a;
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 10px;
      }
      .activity-log .al-row {
        display: flex;
        gap: 10px;
        padding: 6px 0;
        border-bottom: 1px solid #2a2a2a;
      }
      .activity-log .al-row:last-child {
        border-bottom: 0;
      }
      .activity-log .al-time {
        color: #6b6b6b;
        min-width: 80px;
        font-size: 11px;
      }
      .activity-log .al-user {
        color: #ff7849;
        font-weight: 700;
        min-width: 90px;
      }
      .activity-log .al-action {
        color: #d8d8d8;
        flex: 1;
      }
      .activity-log .al-tag {
        color: #cdeaa8;
        font-size: 10px;
        background: rgba(46, 95, 21, 0.25);
        padding: 1px 6px;
        border-radius: 4px;
        margin-left: 4px;
      }
      .activity-log .al-tag.escalate {
        color: #ffb89a;
        background: rgba(235, 80, 23, 0.25);
      }
      .activity-log::after {
        content: "";
        position: absolute;
        bottom: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        background: radial-gradient(circle, rgba(235, 80, 23, 0.25), transparent 70%);
        border-radius: 50%;
      }

      /* Audit dashboard */
      .audit-dash {
        background: #fff;
        border-radius: 22px;
        border: 1px solid #f1e2d8;
        padding: 22px;
        box-shadow: 0 18px 38px rgba(60, 30, 20, 0.06);
      }
      .audit-dash .ad-tile {
        border-radius: 14px;
        padding: 14px;
      }
      .audit-dash .ad-tile.t-total {
        background: #faf3ee;
      }
      .audit-dash .ad-tile.t-settled {
        background: #f4faea;
      }
      .audit-dash .ad-tile.t-pending {
        background: #fff3ec;
      }
      .audit-dash .ad-tile.t-outstanding {
        background: #1a1a1a;
        color: #fff;
      }
      .audit-dash .ad-num {
        font-size: 22px;
        font-weight: 700;
        line-height: 1;
      }
      .audit-dash .ad-label {
        font-size: 11px;
        margin-top: 4px;
        opacity: 0.85;
      }

      /* Chart bars */
      .bar-chart {
        display: flex;
        align-items: flex-end;
        gap: 8px;
        height: 90px;
        margin-top: 12px;
      }
      .bar-chart .bar {
        flex: 1;
        background: #fdeee7;
        border-radius: 6px 6px 0 0;
        position: relative;
      }
      .bar-chart .bar.active {
        background: #eb5017;
      }
      .bar-chart .bar.settled {
        background: #cdeaa8;
      }

      /* Donut */
      .donut {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: conic-gradient(#2e5f15 0 58%, #ff9f43 58% 78%, #eb5017 78% 92%, #fdeee7 92% 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
      }
      .donut::after {
        content: "";
        width: 64px;
        height: 64px;
        background: #fff;
        border-radius: 50%;
        position: absolute;
      }
      .donut-center {
        position: relative;
        z-index: 2;
        text-align: center;
      }
      .donut-center .v {
        font-size: 18px;
        font-weight: 800;
        color: #1a1a1a;
        line-height: 1;
      }
      .donut-center .l {
        font-size: 9px;
        color: #8a8a8a;
        font-weight: 600;
      }
      .legend-row {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        margin-bottom: 6px;
      }
      .legend-dot {
        width: 10px;
        height: 10px;
        border-radius: 3px;
      }

      /* Sector card (govt vs private) */
      .sector-card {
        background: #fff;
        border-radius: 22px;
        padding: 32px;
        height: 100%;
        border: 1px solid #f1e2d8;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .sector-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 50px rgba(235, 80, 23, 0.1);
      }
      .sector-card .sec-icon-big {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: #fdeee7;
        color: #eb5017;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 18px;
      }
      .sector-card.dark {
        background: #1a1a1a;
        color: #fff;
        border-color: #2a2a2a;
      }
      .sector-card.dark .sec-icon-big {
        background: rgba(235, 80, 23, 0.18);
        color: #ff9f6a;
      }
      .sector-card.dark .sec-list-text {
        color: #d8d8d8;
      }
      .sector-card.dark .sec-tag {
        background: rgba(241, 252, 200, 0.12);
        color: #cdeaa8;
      }
      .sec-list-text {
        color: #404040;
        font-size: 14px;
        line-height: 1.55;
      }
      .sec-tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 18px;
      }
      .sec-tag {
        font-size: 11px;
        padding: 5px 10px;
        border-radius: 6px;
        background: #faf3ee;
        color: #6b4133;
        font-weight: 600;
      }

      /* ===== Features Show More ===== */
      .feature-tile[hidden] {
        display: none !important;
      }
      .btn-show-more {
        background: #fff;
        border: dashed 1.5px solid #f1e2d8;
        color: #eb5017;
        font-weight: 600;
        padding: 12px 26px;
        border-radius: 999px;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
      }
      .btn-show-more:hover {
        background: #fdeee7;
        border-color: #eb5017;
        color: #eb5017;
      }
      .btn-show-more.is-open .caret-ico {
        transform: rotate(180deg);
      }
      .btn-show-more .caret-ico {
        transition: transform 0.2s ease;
      }

      /* ===== ADVANTAGES (industries) ===== */
      .industries-wrap {
        margin-top: 36px;
      }
      .ind-band {
        background: #fff;
        border: 1px solid #f1e2d8;
        border-radius: 24px;
        padding: 36px;
      }
      .ind-list {
        display: flex;
        flex-direction: column;
        gap: 22px;
      }
      .ind-item {
        display: flex;
        gap: 18px;
        align-items: flex-start;
        padding: 16px 18px;
        border-radius: 14px;
        background: #faf3ee;
        border: 1px solid transparent;
        transition: all 0.25s ease;
      }
      .ind-item:hover {
        background: #fdeee7;
        border-color: rgba(235, 80, 23, 0.25);
        transform: translateX(2px);
      }
      .ind-att {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #f1e2d8;
        overflow: hidden;
      }
      .ind-att img {
        width: 32px;
        height: 32px;
        object-fit: contain;
      }
      .ind-title-feature {
        font-weight: 600;
        font-size: 17px;
        color: #1a1a1a;
        margin-bottom: 4px;
      }
      .ind-text {
        color: #6b7280;
        font-size: 14.5px;
        line-height: 1.55;
      }
      .ind-collage {
        width: 100%;
        height: 100%;
        min-height: 360px;
        display: flex;
        align-items: center;
      }
      @media (max-width: 768px) {
        .ind-band {
          padding: 24px;
        }
        .ind-item {
          padding: 14px;
          gap: 14px;
        }
        .ind-att {
          width: 48px;
          height: 48px;
        }
      }

      /* ===== Reports v2 (data-rich) ===== */
      .report-doc {
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 18px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.25s ease;
      }
      .report-doc:hover {
        border-color: #eb5017;
        box-shadow: 0 14px 28px rgba(235, 80, 23, 0.08);
        transform: translateY(-3px);
      }
      .report-doc-head {
        padding: 14px 18px;
        background: #faf3ee;
        border-bottom: 1px solid #f1e2d8;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .report-doc-head .doc-ico {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: #fff;
        color: #2569d6;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        border: 1px solid #e1e6f0;
      }
      .report-doc-head .doc-ico.excel {
        color: #1d7044;
      }
      .report-doc-head .doc-name {
        font-family: "Courier New", monospace;
        font-size: 12px;
        color: #6b4133;
        font-weight: 600;
      }
      .report-doc-head .doc-tag {
        margin-left: auto;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 3px 8px;
        border-radius: 4px;
        background: #2569d6;
        color: #fff;
      }
      .report-doc-head .doc-tag.excel {
        background: #1d7044;
      }
      .report-doc-body {
        padding: 22px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .doc-mock {
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 10px;
        padding: 16px 14px;
        margin-bottom: 16px;
        font-size: 12px;
        line-height: 1.5;
        flex: 1;
      }
      .doc-mock .doc-title {
        font-weight: 700;
        color: #1a1a1a;
        font-size: 13px;
        margin-bottom: 6px;
        padding-bottom: 6px;
        border-bottom: 1px solid #f1e2d8;
      }
      .doc-mock .doc-meta {
        font-family: "Courier New", monospace;
        font-size: 10px;
        color: #8a6f64;
        margin-bottom: 10px;
      }
      .doc-mock p {
        color: #4a4a4a;
        margin: 0 0 6px 0;
        font-size: 11.5px;
      }
      .doc-mock .doc-section {
        font-weight: 700;
        color: #1a1a1a;
        font-size: 11.5px;
        margin: 8px 0 4px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
      }
      .doc-mock .doc-row {
        display: flex;
        justify-content: space-between;
        padding: 3px 0;
        border-bottom: 1px dashed #f5ece5;
        font-size: 11px;
      }
      .doc-mock .doc-row:last-child {
        border-bottom: 0;
      }
      .doc-mock .doc-row .lbl {
        color: #8a6f64;
      }
      .doc-mock .doc-row .val {
        color: #1a1a1a;
        font-weight: 600;
        font-family: "Courier New", monospace;
      }
      .doc-mock .doc-pill {
        display: inline-block;
        padding: 2px 7px;
        border-radius: 4px;
        font-size: 10px;
        font-weight: 700;
        margin-right: 4px;
      }
      .doc-mock .doc-pill.settled {
        background: #f1fcc8;
        color: #2e5f15;
      }
      .doc-mock .doc-pill.pending {
        background: #fff3ec;
        color: #a73e0e;
      }
      .doc-mock .doc-pill.open {
        background: #fde7d6;
        color: #eb5017;
      }
      .doc-mock .doc-table {
        width: 100%;
        font-size: 10.5px;
        border-collapse: collapse;
      }
      .doc-mock .doc-table th {
        background: #f4f7fc;
        text-align: left;
        padding: 5px 7px;
        font-weight: 700;
        color: #1a1a1a;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        border: 1px solid #e1e6f0;
      }
      .doc-mock .doc-table td {
        padding: 5px 7px;
        color: #1a1a1a;
        border: 1px solid #eef1f6;
        font-family: "Courier New", monospace;
      }
      .doc-mock .doc-table tr.total td {
        background: #faf3ee;
        font-weight: 700;
        color: #1a1a1a;
        font-family: "Helvetica", sans-serif;
      }
      .report-doc-body h6 {
        font-weight: 600;
        font-size: 17px;
        color: #1a1a1a;
        margin: 0 0 6px;
      }
      .report-doc-body p.descr {
        color: #6b7280;
        font-size: 13.5px;
        line-height: 1.5;
        margin: 0;
      }
      @media (max-width: 575px) {
        .roi-strip {
          padding: 28px 22px;
        }
        .sector-card {
          padding: 24px 22px;
        }
      }
