/* =========================================================
   SalaryPay — Corporate Enterprise Theme
   A NUZN Infotech Product
   ========================================================= */
:root {
    --navy: #0a1f44;       /* deep brand navy */
    --navy-2: #102a52;     /* lighter navy   */
    --pri: #1d4ed8;        /* corporate blue */
    --pri-dark: #1e3a8a;
    --accent: #0ea5e9;     /* sky accent     */
    --accent-2: #0891b2;   /* teal           */
    --ok: #047857;         /* green          */
    --ok-soft: #ecfdf5;
    --warn: #b45309;

    --bg: #f5f7fb;
    --bg-soft: #eef2f8;
    --card: #ffffff;
    --border: #e3e9f2;
    --border-strong: #d2dbea;

    --text: #0b1727;
    --heading: #0a1f44;
    --muted: #5a6b85;
    --muted-2: #7c8aa3;

    --shadow: 0 24px 60px rgba(10, 31, 68, .10);
    --shadow-2: 0 12px 30px rgba(10, 31, 68, .08);
    --shadow-sm: 0 4px 14px rgba(10, 31, 68, .06);

    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 26px;

    --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", system-ui, -apple-system, "Inter", Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
}

a { text-decoration: none; }

h1, h2, h3, h4, h5 { color: var(--heading); }

.container { max-width: var(--maxw); }

.page { min-height: 60vh; }

.text-soft { color: var(--muted); }
.text-mute { color: var(--muted-2); }

.hr-soft { border-color: var(--border); opacity: 1; }

/* =========================================================
   TOP STRIP
   ========================================================= */
.top-strip {
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #cdd8ec;
    font-size: 13px;
}

.top-strip .chip {
    font-size: 12.5px;
    color: #d6e0f2;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    padding: 5px 11px;
    border-radius: 999px;
    white-space: nowrap;
}

.top-strip a { color: #fff; }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,.88);
    border-bottom: 1px solid var(--border);
    backdrop-filter: saturate(160%) blur(12px);
}

.brand { color: var(--heading); }

.navlink {
    color: #28364d !important;
    padding: 9px 13px !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: .15s ease;
}

.navlink:hover {
    background: rgba(29,78,216,.08);
    color: var(--pri) !important;
}

.navlink.active {
    color: var(--pri) !important;
    background: rgba(29,78,216,.07);
}

/* Nav dropdowns */
.navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 1px;
    border-top-color: currentColor;
    opacity: .7;
}
.navbar .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 8px;
    margin-top: 10px;
    min-width: 230px;
    background: #fff;
}
.navbar .dropdown-item {
    border-radius: 9px;
    padding: 9px 12px;
    font-weight: 600;
    color: #28364d;
    font-size: 14.5px;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(29,78,216,.08);
    color: var(--pri);
}
.navbar .dropdown-item .di-sub {
    display: block;
    font-weight: 500;
    font-size: 12px;
    color: var(--muted-2);
    margin-top: 1px;
}
/* open on hover (desktop only) */
@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
    .navbar .nav-item.dropdown > .dropdown-menu { margin-top: 4px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-cta {
    background: var(--pri);
    color: #fff !important;
    border: 0;
    padding: 11px 20px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: .2px;
    box-shadow: 0 12px 26px rgba(29,78,216,.28);
    transition: .18s ease;
}
.btn-cta:hover {
    background: var(--pri-dark);
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(29,78,216,.34);
    color:#fff !important;
}

.btn-navy {
    background: var(--navy);
    color: #fff !important;
    border: 0;
    padding: 11px 20px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition:.18s ease;
}
.btn-navy:hover { background: var(--navy-2); color:#fff !important; transform: translateY(-1px); }

.btn-outline-lite {
    background: #fff;
    border: 1px solid var(--border-strong);
    color: var(--heading) !important;
    padding: 11px 20px;
    border-radius: 12px;
    font-weight: 700;
    transition:.18s ease;
}
.btn-outline-lite:hover {
    background: rgba(29,78,216,.05);
    border-color: var(--pri);
    color: var(--pri) !important;
}

.btn-ghost {
    background: rgba(10,31,68,.04);
    border: 1px solid var(--border);
    color: var(--heading) !important;
    border-radius: 12px;
    font-weight: 700;
    padding: 11px 18px;
    transition:.18s ease;
}
.btn-ghost:hover { background: rgba(29,78,216,.06); border-color: var(--pri); color: var(--pri) !important; }

.btn-white {
    background:#fff; color: var(--navy) !important; border:0;
    padding: 11px 20px; border-radius:12px; font-weight:800;
    box-shadow: var(--shadow-sm); transition:.18s ease;
}
.btn-white:hover { transform: translateY(-1px); color: var(--pri) !important; }

.btn-line-white {
    background: transparent; color:#fff !important;
    border:1px solid rgba(255,255,255,.4);
    padding:11px 20px; border-radius:12px; font-weight:700; transition:.18s ease;
}
.btn-line-white:hover { background: rgba(255,255,255,.12); border-color:#fff; }

/* =========================================================
   SECTIONS / CARDS
   ========================================================= */
.section { padding: 78px 0; }
.section.pt-0 { padding-top: 0; }
.section.tight { padding: 54px 0; }

.cardx {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.cardx2 {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.kpi {
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

/* =========================================================
   SECTION HEADERS / KICKERS / BADGES
   ========================================================= */
.sec-kicker {
    display: inline-block;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--pri);
    background: rgba(29,78,216,.08);
    border: 1px solid rgba(29,78,216,.16);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.sec-title {
    font-weight: 800;
    letter-spacing: -0.4px;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--heading);
}

.section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.section-head .sec-title { font-size: clamp(26px, 3.4vw, 38px); }
.section-head p { color: var(--muted); font-size: 17px; }

.badge-soft {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(29,78,216,.07);
    border: 1px solid rgba(29,78,216,.16);
    color: var(--pri-dark);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    padding: 92px 0 70px;
    background:
        radial-gradient(1100px 520px at 78% -10%, rgba(14,165,233,.12), transparent 60%),
        radial-gradient(900px 500px at -5% 10%, rgba(29,78,216,.10), transparent 55%),
        linear-gradient(180deg, #fbfcff, var(--bg));
    overflow: hidden;
}

.hero h1 {
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.06;
    font-size: clamp(32px, 4.6vw, 54px);
    color: var(--heading);
}

.hero .grad-text {
    color: var(--pri);
}

.hero p.lead { color: var(--muted); font-size: 18px; }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.hero-stat .num { font-weight: 800; font-size: 26px; color: var(--navy); letter-spacing: -.5px; }
.hero-stat .lbl { color: var(--muted); font-size: 13.5px; }

.mini-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
}
.mini-trust-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 15px;
    box-shadow: var(--shadow-sm);
}
.mini-trust-title { font-weight: 800; color: var(--heading); }
.mini-trust-sub { color: var(--muted); font-size: 13px; }

/* =========================================================
   SCREENSHOT / SHOT CARD
   ========================================================= */
.shot-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 14px;
}
.shot-top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; margin-bottom: 12px; padding: 2px 4px;
}
.shot-title { font-weight: 800; color: var(--heading); }
.shot-sub { color: var(--muted); font-size: 13px; margin-top: 2px; }

.imgframe {
    border-radius: 14px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-2);
}
.imgframe img { width: 100%; height: auto; display: block; }

/* float decoration card */
.float-badge {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 12px 14px;
    display: flex; gap: 10px; align-items: center;
    z-index: 3;
}
.float-badge .ic {
    width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
    background: var(--ok-soft); color: var(--ok); font-size: 18px;
}
.float-badge .t { font-weight: 800; font-size: 14px; color: var(--heading); line-height: 1.1; }
.float-badge .s { font-size: 12px; color: var(--muted); }

/* =========================================================
   APP SHOT — faithful recreation of in.salarypay.cloud screens
   ========================================================= */
.app-shot {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.app-shot-bar {
    background:
        radial-gradient(420px 180px at 88% 0%, rgba(180,60,90,.55), transparent 60%),
        linear-gradient(120deg, #16285c, #1e3a8a 55%, #3b2f7a);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.app-shot-bar .asb-kicker {
    font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #b9c7e0;
}
.app-shot-bar .asb-title { font-weight: 800; font-size: 20px; color: #fff; line-height: 1.1; margin-top: 2px; }
.app-shot-bar .asb-sub { color: #c3d2ec; font-size: 12px; margin-top: 3px; }
.app-shot-bar .asb-pill {
    font-size: 11px; font-weight: 700; color: #dbe6ff;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px; padding: 6px 11px; white-space: nowrap;
}
.app-shot-body { padding: 14px; background: #f7f9fc; }

.kpi-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.kpi-tile {
    border-radius: 13px; padding: 13px 13px 14px; color: #fff; position: relative; overflow: hidden;
    min-height: 78px; box-shadow: 0 8px 18px rgba(10,31,68,.10);
}
.kpi-tile .kt-cap { font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; opacity: .95; }
.kpi-tile .kt-num { font-size: 23px; font-weight: 800; margin-top: 5px; line-height: 1; }
.kpi-tile .kt-sub { font-size: 10px; opacity: .9; margin-top: 5px; }
.kpi-tile .kt-ic {
    position: absolute; top: 11px; right: 11px; width: 28px; height: 28px; border-radius: 8px;
    background: rgba(255,255,255,.22); display: grid; place-items: center; font-size: 14px;
}
.kt-blue   { background: linear-gradient(135deg, #4f8bf0, #2563eb); }
.kt-cyan   { background: linear-gradient(135deg, #2bb6e0, #1593c9); }
.kt-red    { background: linear-gradient(135deg, #f15a5a, #d33d3d); }
.kt-pink   { background: linear-gradient(135deg, #f1638e, #d6396a); }
.kt-purple { background: linear-gradient(135deg, #9b6cf0, #7c3aed); }
.kt-orange { background: linear-gradient(135deg, #f6943a, #ea7317); }
.kt-teal   { background: linear-gradient(135deg, #1bb394, #0e8e76); }
.kt-indigo { background: linear-gradient(135deg, #6470f0, #434fd6); }
.kt-amber  { background: linear-gradient(135deg, #f6b13a, #e29116); }

/* compact filter row for payroll shot */
.app-filter {
    display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 14px 0; align-items: center;
}
.app-filter .af-chip {
    font-size: 11.5px; font-weight: 600; color: #28364d;
    background: #fff; border: 1px solid var(--border-strong); border-radius: 9px; padding: 7px 11px;
}
.app-filter .af-go {
    font-size: 11.5px; font-weight: 700; color: #fff; background: var(--pri);
    border-radius: 9px; padding: 7px 13px; margin-left: auto;
}

@media (max-width: 1199px) { .kpi-tiles { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .kpi-tiles { grid-template-columns: 1fr 1fr; } .kpi-tile .kt-num { font-size: 20px; } }

/* Attendance heat-map calendar */
.att-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.att-cal .dow { text-align: center; font-size: 11px; font-weight: 800; color: var(--muted-2); text-transform: uppercase; padding-bottom: 2px; }
.att-cal .d {
    aspect-ratio: 1 / 1; border-radius: 9px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 1px;
    font-size: 13px; font-weight: 700; background: var(--bg-soft); color: var(--muted);
    border: 1px solid var(--border);
}
.att-cal .d .pct { font-size: 9.5px; font-weight: 700; }
.att-cal .d.g1 { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.att-cal .d.g2 { background: #86efac; color: #14532d; border-color: #4ade80; }
.att-cal .d.g3 { background: #22c55e; color: #ffffff; border-color: #16a34a; }
.att-cal .d.r1 { background: #fecaca; color: #991b1b; border-color: #fca5a5; }
.att-cal .d.mut { opacity: .45; }
.cal-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.cal-legend .lg { display: inline-flex; align-items: center; gap: 6px; }
.cal-legend .sw { width: 14px; height: 14px; border-radius: 4px; display: inline-block; }
.holiday-row {
    display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border);
}
.holiday-row:last-child { border-bottom: 0; }
.holiday-row .hd-date {
    width: 52px; min-width: 52px; text-align: center; border-radius: 10px; padding: 6px 0;
    background: rgba(29,78,216,.08); color: var(--pri-dark);
}
.holiday-row .hd-date .dd { font-weight: 800; font-size: 17px; line-height: 1; }
.holiday-row .hd-date .mm { font-size: 10px; font-weight: 700; text-transform: uppercase; }
.holiday-row .hd-name { font-weight: 700; color: var(--heading); }
.holiday-row .hd-sub { font-size: 12.5px; color: var(--muted); }

/* =========================================================
   PILLS
   ========================================================= */
.pill {
    font-size: 12px; font-weight: 800; padding: 7px 11px; border-radius: 999px;
    border: 1px solid var(--border); background: var(--bg-soft); color: var(--heading);
}
.pill-blue   { background: rgba(29,78,216,.10);  border-color: rgba(29,78,216,.22);  color: var(--pri-dark); }
.pill-violet { background: rgba(8,145,178,.10);  border-color: rgba(8,145,178,.22);  color: var(--accent-2); }
.pill-orange { background: rgba(180,83,9,.10);   border-color: rgba(180,83,9,.20);   color: var(--warn); }
.pill-green  { background: rgba(4,120,87,.10);   border-color: rgba(4,120,87,.20);   color: var(--ok); }

/* =========================================================
   FEATURE GRID
   ========================================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    transition: .2s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--border-strong);
}
.feature-ic {
    width: 52px; height: 52px; border-radius: 14px;
    display: grid; place-items: center;
    background: linear-gradient(135deg, var(--pri), var(--accent));
    color: #fff; font-size: 24px; margin-bottom: 16px;
    box-shadow: 0 10px 22px rgba(29,78,216,.25);
}
.feature-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { color: var(--muted); margin: 0; font-size: 15px; }

/* =========================================================
   TICK LIST
   ========================================================= */
.tick-list { padding-left: 0; margin: 0; list-style: none; }
.tick-list li {
    position: relative; padding-left: 30px; margin: 11px 0;
    color: var(--text); font-weight: 500;
}
.tick-list li::before {
    content: "✓"; position: absolute; left: 0; top: 1px;
    width: 21px; height: 21px; border-radius: 999px; display: grid; place-items: center;
    background: var(--ok-soft); border: 1px solid rgba(4,120,87,.25);
    color: var(--ok); font-weight: 900; font-size: 12px;
}

/* =========================================================
   STATS BAND (navy)
   ========================================================= */
.stats-band {
    background:
        radial-gradient(700px 360px at 12% 0%, rgba(14,165,233,.20), transparent 55%),
        radial-gradient(700px 360px at 90% 120%, rgba(29,78,216,.30), transparent 55%),
        var(--navy);
    border-radius: var(--radius-lg);
    padding: 44px 30px;
    color: #fff;
}
.stats-band .st-num { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; color:#fff; }
.stats-band .st-lbl { color: #b9c7e0; font-size: 14.5px; }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ind-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 20px 18px; text-align: center; box-shadow: var(--shadow-sm);
    transition: .18s ease;
}
.ind-card:hover { transform: translateY(-3px); border-color: var(--pri); }
.ind-card .ic { font-size: 26px; margin-bottom: 8px; }
.ind-card .nm { font-weight: 700; color: var(--heading); font-size: 14.5px; }

/* =========================================================
   LOGO / TRUST STRIP
   ========================================================= */
.trust-strip {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 14px 18px;
}
.trust-chip {
    background: #fff; border: 1px solid var(--border); border-radius: 999px;
    padding: 9px 18px; font-weight: 700; color: var(--muted); font-size: 14px;
    box-shadow: var(--shadow-sm);
}

/* =========================================================
   COMPLIANCE BADGES
   ========================================================= */
.comp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.comp-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 22px 20px; box-shadow: var(--shadow-sm);
}
.comp-card .tag {
    display:inline-block; font-weight: 800; font-size: 13px; color: var(--pri);
    background: rgba(29,78,216,.08); border:1px solid rgba(29,78,216,.16);
    border-radius: 8px; padding: 4px 10px; margin-bottom: 10px;
}
.comp-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* =========================================================
   PAYSLIP MOCKUP
   ========================================================= */
.payslip {
    background: #fff; border: 1px solid var(--border); border-radius: 16px;
    overflow: hidden; box-shadow: var(--shadow); font-size: 13px;
}
.payslip-head {
    background: var(--navy); color: #fff; padding: 16px 20px;
    display:flex; justify-content: space-between; align-items: center;
}
.payslip-head .co { font-weight: 800; font-size: 16px; }
.payslip-head .mo { color:#b9c7e0; font-size: 12.5px; }
.payslip-emp {
    display:grid; grid-template-columns: repeat(2,1fr); gap: 6px 18px;
    padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.payslip-emp .row2 { display:flex; justify-content: space-between; gap: 10px; }
.payslip-emp .k { color: var(--muted); }
.payslip-emp .v { font-weight: 700; color: var(--heading); }
.payslip-cols { display:grid; grid-template-columns: 1fr 1fr; }
.payslip-cols .col-h {
    background: var(--bg-soft); padding: 9px 20px; font-weight: 800; color: var(--heading);
    border-bottom: 1px solid var(--border); font-size: 12.5px; text-transform: uppercase; letter-spacing:.04em;
}
.payslip-cols .ln {
    display:flex; justify-content: space-between; padding: 8px 20px;
    border-bottom: 1px solid var(--border);
}
.payslip-cols .ln .k { color: var(--muted); }
.payslip-cols .ln .v { font-weight: 700; color: var(--heading); }
.payslip-cols .left { border-right: 1px solid var(--border); }
.payslip-net {
    background: var(--ok-soft); padding: 14px 20px; display:flex; justify-content: space-between;
    align-items:center;
}
.payslip-net .lab { font-weight: 700; color: var(--ok); }
.payslip-net .amt { font-weight: 800; font-size: 19px; color: var(--ok); }

/* =========================================================
   REPORT TABLE MOCKUP
   ========================================================= */
.report-mock {
    background:#fff; border:1px solid var(--border); border-radius:16px; overflow:hidden;
    box-shadow: var(--shadow);
}
.report-mock .rm-head {
    display:flex; justify-content: space-between; align-items:center;
    padding: 14px 18px; border-bottom: 1px solid var(--border); background:#fff;
}
.report-mock .rm-title { font-weight: 800; color: var(--heading); }
.report-mock table { width:100%; border-collapse: collapse; font-size: 13px; }
.report-mock th {
    text-align:left; padding: 10px 14px; background: var(--bg-soft);
    color: var(--muted); font-weight: 700; border-bottom: 1px solid var(--border);
    text-transform: uppercase; font-size: 11.5px; letter-spacing:.04em;
}
.report-mock td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text); }
.report-mock tr:last-child td { border-bottom: 0; }
.tag-pres { color: var(--ok); font-weight: 700; }
.tag-abs { color: #b91c1c; font-weight: 700; }
.tag-leave { color: var(--warn); font-weight: 700; }

/* report chips list */
.report-list { columns: 2; column-gap: 28px; }
.report-list .ri {
    break-inside: avoid; display:flex; gap:10px; align-items:flex-start;
    padding: 8px 0; color: var(--text); font-weight: 500;
}
.report-list .ri::before {
    content:"›"; color: var(--pri); font-weight: 900; font-size: 16px; line-height: 1;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-item {
    background:#fff; border:1px solid var(--border); border-radius: var(--radius-sm);
    margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq-item summary {
    list-style: none; cursor: pointer; padding: 18px 20px; font-weight: 700;
    color: var(--heading); display:flex; justify-content: space-between; align-items:center; gap:12px;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; font-size: 22px; color: var(--pri); font-weight: 400; }
.faq-item[open] summary::after { content:"–"; }
.faq-item .faq-body { padding: 0 20px 18px; color: var(--muted); font-size: 15px; }

/* =========================================================
   PROCESS / STEPS
   ========================================================= */
.step-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.step {
    background:#fff; border:1px solid var(--border); border-radius: var(--radius-sm);
    padding: 22px 20px; box-shadow: var(--shadow-sm); position: relative;
}
.step .no {
    width: 38px; height: 38px; border-radius: 10px; display:grid; place-items:center;
    background: var(--navy); color:#fff; font-weight: 800; margin-bottom: 12px;
}
.step h4 { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* =========================================================
   CTA WIDE
   ========================================================= */
.cta-wide {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 40px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(600px 260px at 10% 30%, rgba(14,165,233,.22), transparent 60%),
        radial-gradient(700px 300px at 92% 80%, rgba(29,78,216,.35), transparent 60%),
        var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
}
.cta-wide .sec-kicker { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.2); color:#dbe6ff; }
.cta-wide .fs-2, .cta-wide h2 { color:#fff; }
.cta-wide .text-soft { color:#c3d2ec !important; }

/* =========================================================
   FORMS
   ========================================================= */
.form-control {
    border-radius: 12px;
    border: 1px solid var(--border-strong);
    padding: 12px 13px;
    background:#fff;
}
.form-control:focus {
    box-shadow: 0 0 0 .22rem rgba(29,78,216,.14);
    border-color: var(--pri);
}
.form-label { font-weight: 700; color: var(--heading); margin-bottom: 5px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    margin-top: 70px;
    background: var(--navy);
    color: #c3d2ec;
}
.footer .fw-semibold, .footer .footer-title { color: #fff; }
.footer-title { font-weight: 800; letter-spacing: .02em; }
.footer .text-soft { color: #93a6c6 !important; }
.footer-link { color: #c3d2ec; transition:.15s; }
.footer-link:hover { color: #fff; }
.footer .hr-soft { border-color: rgba(255,255,255,.12); }
.footer .chip {
    background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
    color:#d6e0f2; border-radius: 999px; padding: 5px 12px; font-size: 13px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .ind-grid { grid-template-columns: 1fr 1fr; }
    .comp-grid { grid-template-columns: 1fr 1fr; }
    .step-grid { grid-template-columns: 1fr 1fr; }
    .mini-trust { grid-template-columns: 1fr; }
    .cta-wide { flex-direction: column; align-items: flex-start; }
    .report-list { columns: 1; }
    .section { padding: 56px 0; }
    .hero { padding: 60px 0 50px; }
}
@media (max-width: 640px) {
    .feature-grid { grid-template-columns: 1fr; }
    .ind-grid { grid-template-columns: 1fr 1fr; }
    .comp-grid { grid-template-columns: 1fr; }
    .step-grid { grid-template-columns: 1fr; }
    .payslip-cols { grid-template-columns: 1fr; }
    .payslip-cols .left { border-right: 0; }
    .hero-stats { gap: 18px; }
}
