﻿/* Use clamp for the section-title where the file calls out larger headers */
      .section-title {
        font-size: clamp(1.6rem, 3.2vw, 2.4rem);
        font-weight: 700;
        letter-spacing: -0.01em;
        line-height: 1.2;
        text-wrap: pretty;
      }
      .hero-title {
        font-size: clamp(2rem, 4.6vw, 3.4rem);
      }

      /* Hero infographic */
      .cs-hero-art {
        position: relative;
        padding: 8px;
      }
      .cs-hero-art svg {
        width: 100%;
        height: auto;
        display: block;
        filter: drop-shadow(0 24px 50px rgba(235, 80, 23, 0.14));
      }

      /* ===== Features (12 tile grid + show more) ===== */
      .cs-hl2-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
      }
      @media (max-width: 991.98px) {
        .cs-hl2-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }
      @media (max-width: 575.98px) {
        .cs-hl2-grid {
          grid-template-columns: 1fr;
        }
      }
      .cs-hl2-card {
        background: #fff;
        border: 1px solid #f0e3da;
        border-radius: 18px;
        padding: 24px 22px;
        transition: all 0.25s ease;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .cs-hl2-card:hover {
        transform: translateY(-3px);
        border-color: rgba(235, 80, 23, 0.3);
        box-shadow: 0 14px 32px rgba(235, 80, 23, 0.07);
      }
      .cs-hl2-head {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .cs-hl2-ico {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        font-size: 1.05rem;
        background: #fff1ea;
        color: #eb5017;
      }
      .cs-hl2-card.tone-l .cs-hl2-ico {
        background: #f1fcc8;
        color: #3a4112;
      }
      .cs-hl2-card.tone-g .cs-hl2-ico {
        background: #fff3cd;
        color: #7a5a00;
      }
      .cs-hl2-card h6 {
        margin: 0;
        font-weight: 600;
        font-size: 1rem;
        color: #1a1a1a;
        letter-spacing: -0.01em;
      }
      .cs-hl2-card p {
        margin: 0;
        font-size: clamp(0.84rem, 1.1vw, 0.9rem);
        line-height: 1.55;
        color: #6b7280;
      }
      .cs-hl2-card.is-hidden {
        display: none;
      }
      .cs-hl-more-wrap {
        display: flex;
        justify-content: center;
        margin-top: 28px;
      }
      .cs-hl-more {
        background: #fff;
        border: 1.5px solid #eb5017;
        color: #eb5017;
        font-weight: 700;
        padding: 10px 28px;
        border-radius: 999px;
        font-size: 0.92rem;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .cs-hl-more:hover {
        background: #eb5017;
        color: #fff;
      }
      .cs-hl-more .bi {
        transition: transform 0.25s ease;
      }
      .cs-hl-more.is-open .bi {
        transform: rotate(180deg);
      }

      /* ===== Workflow ===== */
      .cs-wf2-grid {
        display: grid;
        grid-template-columns: 1fr 1.05fr;
        gap: 36px;
        align-items: center;
      }
      @media (max-width: 991.98px) {
        .cs-wf2-grid {
          grid-template-columns: 1fr;
          gap: 28px;
        }
      }
/* Payroll Workflow - Left Card */
.cs-wf2-content-card .cs-wf2-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Separate white box for every workflow point */
.cs-wf2-content-card .cs-wf2-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 14px 16px;

    background: #fff;
    border: 1px solid #f0e3da;
    border-radius: 14px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

/* Hover */
.cs-wf2-content-card .cs-wf2-list li:hover {
    background: #fff;
    border-color: rgba(235, 80, 23, 0.4);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(235, 80, 23, 0.07);
}

.cs-wf2-content-card .cs-wf2-list .wfi {
    flex-shrink: 0;
}

.cs-wf2-content-card .cs-wf2-list h6 {
    margin: 0 0 4px;
}

.cs-wf2-content-card .cs-wf2-list p {
    margin: 0;
}
      .cs-wf2-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
      }
      .cs-wf2-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }
      .cs-wf2-list .wfi {
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: #fff1ea;
        color: #eb5017;
        display: grid;
        place-items: center;
        font-size: 1rem;
      }
      .cs-wf2-list h6 {
        margin: 0 0 4px;
        font-weight: 600;
        font-size: 1rem;
        color: #1a1a1a;
        letter-spacing: -0.01em;
      }
      .cs-wf2-list p {
        margin: 0;
        font-size: clamp(0.84rem, 1.1vw, 0.9rem);
        line-height: 1.55;
        color: #6b7280;
      }
      .cs-wf2-infographic {
        background: #fff;
        border: 1px solid #f0e3da;
        border-radius: 22px;
        padding: 30px 26px;
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
      }
      .cs-wf2-flow {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .cs-wf2-step {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        background: #fbf7f4;
        border: 1px solid #f0e3da;
        border-radius: 14px;
        transition: all 0.25s;
      }
      .cs-wf2-step:hover {
        background: #fff1ea;
        border-color: rgba(235, 80, 23, 0.4);
        transform: translateX(4px);
      }
      .cs-wf2-step .stp-n {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #eb5017;
        color: #eb5017;
        font-weight: 800;
        font-size: 0.82rem;
        display: grid;
        place-items: center;
        font-family: "Poppins", sans-serif;
      }
      .cs-wf2-step.s-init .stp-n {
        background: #eb5017;
        color: #fff;
      }
      .cs-wf2-step.s-end .stp-n {
        background: #cddb37;
        border-color: #cddb37;
        color: #1a1a1a;
      }
      .cs-wf2-step .stp-body {
        flex: 1;
        min-width: 0;
      }
      .cs-wf2-step .stp-role {
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #b9836b;
        margin-bottom: 2px;
      }
      .cs-wf2-step .stp-act {
        font-weight: 700;
        font-size: clamp(0.85rem, 1.1vw, 0.92rem);
        color: #1a1a1a;
      }
      .cs-wf2-step .stp-tag {
        font-size: 0.66rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 999px;
        background: #fff;
        color: #6b7280;
        border: 1px solid #efe7e1;
        flex-shrink: 0;
      }
      .cs-wf2-step.s-init .stp-tag {
        background: #eb5017;
        color: #fff;
        border-color: #eb5017;
      }
      .cs-wf2-step.s-end .stp-tag {
        background: #cddb37;
        color: #1a1a1a;
        border-color: #cddb37;
      }
      .cs-wf2-arrow {
        align-self: center;
        color: #eb5017;
        font-size: 1.1rem;
        opacity: 0.6;
        margin: -4px 0;
      }
      .cs-wf2-modules {
        margin-top: 22px;
        padding-top: 20px;
        border-top: 1px dashed #e9d8cb;
      }
      .cs-wf2-modules-l {
        font-size: 0.65rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #b9836b;
        margin-bottom: 10px;
      }
      .cs-wf2-mods {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .cs-wf2-mod {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        background: #faf6f3;
        border: 1px solid #efe7e1;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 600;
        color: #1a1a1a;
      }
      .cs-wf2-mod i {
        color: #eb5017;
      }

      .py-flagship {
        background: #fff;
        border: 1px solid #f1e2d8;
        border-radius: 22px;
        padding: 36px 36px;
        position: relative;
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 44px;
        align-items: center;
      }
      @media (max-width: 991.98px) {
        .py-flagship {
          grid-template-columns: 1fr;
          gap: 28px;
          padding: 28px 24px;
        }
      }
      .py-flagship.is-reverse .py-flag-visual {
        order: 2;
      }
      @media (max-width: 991.98px) {
        .py-flagship.is-reverse .py-flag-visual {
          order: 0;
        }
      }
      .py-flag-visual {
        min-width: 0;
      }
      .py-flag-body {
        min-width: 0;
      }
      .py-flagship:hover {
        transform: translateY(-3px);
        box-shadow: 0 24px 50px rgba(235, 80, 23, 0.12);
      }
      .py-flagship.is-dark {
        background: #1a1a1a;
        color: #fff;
        border-color: #2a2a2a;
      }
      .py-flag-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fdeee7;
        color: #eb5017;
        padding: 6px 14px;
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 14px;
      }
      .py-flag-eyebrow.is-dark {
        background: rgba(235, 80, 23, 0.18);
        color: #ffb89a;
      }
      .py-flag-title {
        font-weight: 800;
        font-size: clamp(1.2rem, 2.2vw, 1.5rem);
        line-height: 1.25;
        color: #1a1a1a;
        margin-bottom: 10px;
        letter-spacing: -0.01em;
      }
      .py-flag-title.is-dark {
        color: #fff;
      }
      .py-flag-title.is-dark span {
        display: block;
        margin-top: 2px;
      }
      .py-flag-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .py-flag-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: clamp(0.86rem, 1.1vw, 0.92rem);
        line-height: 1.5;
        color: #404040;
      }
      .py-flag-list.is-dark li {
        color: #d8d8d8;
      }
      .py-flag-list .bi {
        color: #eb5017;
        flex-shrink: 0;
        margin-top: 3px;
        font-size: 1rem;
      }
      .py-flag-list strong {
        color: #1a1a1a;
        font-weight: 600;
      }
      .py-flag-list.is-dark strong {
        color: #fff;
      }

      /* Formula card */
      .py-formula {
        background: #1a1a1a;
        color: #fff;
        border-radius: 16px;
        padding: 24px 24px;
        font-family: "Courier New", monospace;
        font-size: clamp(0.82rem, 1.05vw, 0.92rem);
        line-height: 1.85;
        position: relative;
        overflow: hidden;
        margin: 0;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
      }
      .py-formula.is-dark {
        background: #000;
      }
      .py-formula .fc-label {
        color: #8a8a8a;
        font-size: 0.7rem;
        letter-spacing: 0.06em;
        margin-bottom: 6px;
      }
      .py-formula .t-k {
        color: #ff7849;
      }
      .py-formula .t-n {
        color: #cdeaa8;
      }
      .py-formula .t-o {
        color: #fff;
      }
      .py-formula .t-c {
        color: #6b6b6b;
        font-style: italic;
        font-size: 0.72rem;
        margin-top: 4px;
      }
      .py-formula-chip {
        position: absolute;
        top: 12px;
        right: 14px;
        background: #cdeaa8;
        color: #2e5f15;
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 0.62rem;
        letter-spacing: 0.06em;
      }
      .py-formula-chip.is-lime {
        background: #f1fcc8;
      }

      /* ===== Module cards (Compliance & Outputs, Finance) ===== */
      .py-module {
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 18px;
        padding: 24px 22px;
        height: 100%;
        transition: all 0.25s ease;
      }
      .py-module:hover {
        border-color: #eb5017;
        box-shadow: 0 14px 28px rgba(235, 80, 23, 0.08);
        transform: translateY(-3px);
      }
      .py-module .mod-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: #fdeee7;
        color: #eb5017;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-bottom: 14px;
      }
      .py-module h6 {
        font-weight: 600;
        font-size: 1rem;
        color: #1a1a1a;
        margin-bottom: 8px;
        letter-spacing: -0.01em;
      }
      .py-module p {
        color: #6b7280;
        font-size: clamp(0.84rem, 1.1vw, 0.9rem);
        line-height: 1.55;
        margin: 0;
      }
      .py-module .mod-tags {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
      }
      .py-module .mod-tag {
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        padding: 4px 10px;
        border-radius: 999px;
        background: #faf3ee;
        color: #6b4133;
      }

      /* ===== Finance GL infographic ===== */
      .py-gl-card {
        background: #fff;
        border: 1px solid #f0e3da;
        border-radius: 22px;
        padding: 26px 24px;
        box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);
        height: 100%;
      }
      .py-gl-card .gl-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
        padding-bottom: 14px;
        border-bottom: 1px dashed #e9d8cb;
      }
      .py-gl-card .gl-label {
        font-size: 0.66rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #b9836b;
      }
      .py-gl-card .gl-title {
        font-weight: 800;
        font-size: 1.05rem;
        color: #1a1a1a;
      }
      .py-gl-card .gl-stamp {
        background: #cdeaa8;
        color: #2e5f15;
        font-size: 0.66rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        padding: 4px 10px;
        border-radius: 999px;
      }
      .py-gl-card .gl-node {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-radius: 12px;
        margin-bottom: 8px;
        font-size: 0.86rem;
      }
      .py-gl-card .gl-node.is-debit {
        background: #fdf0ec;
        border-left: 3px solid #a73e0e;
      }
      .py-gl-card .gl-node.is-credit {
        background: #f4faea;
        border-left: 3px solid #2e5f15;
      }
      .py-gl-card .gl-ico {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #eb5017;
        flex-shrink: 0;
      }
      .py-gl-card .gl-node.is-credit .gl-ico {
        color: #2e5f15;
      }
      .py-gl-card .gl-row-l {
        font-weight: 700;
        color: #1a1a1a;
      }
      .py-gl-card .gl-row-s {
        font-size: 0.72rem;
        color: #6b7280;
        margin-top: 2px;
      }
      .py-gl-card .gl-amt {
        margin-left: auto;
        font-weight: 700;
        font-family: "Courier New", monospace;
        color: #1a1a1a;
        font-size: 0.85rem;
        white-space: nowrap;
      }
      .py-gl-card .gl-divider {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 10px 0;
      }
      .py-gl-card .gl-divider::before,
      .py-gl-card .gl-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #f0e3da;
      }
      .py-gl-card .gl-divider span {
        font-size: 0.66rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #b9836b;
      }
      .py-gl-card .gl-arrow {
        text-align: center;
        color: #c97a5b;
        margin: 6px 0;
        font-size: 1.1rem;
      }
      .py-gl-card .gl-erp {
        background: #1a1a1a;
        color: #fff;
        border-radius: 12px;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .py-gl-card .gl-erp .erp-ico {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: #ff7849;
        color: #1a1a1a;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.05rem;
      }
      .py-gl-card .gl-erp .erp-l {
        font-size: 0.66rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #ffb89a;
        margin-bottom: 2px;
      }
      .py-gl-card .gl-erp .erp-t {
        font-weight: 700;
        font-size: 0.88rem;
      }

      /* ===== Use case cards ===== */
      .py-uc {
        background: #fff;
        border: 1px solid #f0e6df;
        border-radius: 18px;
        padding: 24px 22px;
        height: 100%;
        transition: all 0.25s;
      }
      .py-uc:hover {
        background: #fdeee7;
        border-color: #eb5017;
        transform: translateY(-3px);
      }
      .py-uc .uc-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: #fdeee7;
        color: #eb5017;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        margin-bottom: 14px;
      }
      .py-uc:hover .uc-icon {
        background: #fff;
      }
      .py-uc h6 {
        font-weight: 600;
        font-size: 1rem;
        color: #1a1a1a;
        margin-bottom: 8px;
        letter-spacing: -0.01em;
      }
      .py-uc p {
        color: #6b7280;
        font-size: clamp(0.84rem, 1.1vw, 0.9rem);
        line-height: 1.55;
        margin: 0;
      }

      /* ===== Comparison table ===== */
      .cs-compare-wrap {
        border: 1px solid #eee;
        border-radius: 22px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 14px 40px rgba(15, 23, 42, 0.04);
      }
      .cs-compare-table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
        font-size: clamp(0.85rem, 1.1vw, 0.95rem);
      }
      .cs-compare-table th,
      .cs-compare-table td {
        padding: 16px 18px;
        text-align: left;
        vertical-align: middle;
        border-bottom: 1px solid #f1f1f1;
      }
      .cs-compare-table thead th {
        background: #fafafa;
        font-weight: 700;
        color: #1a1a1a;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
      }
      .cs-compare-table thead th.cs-col-trackk {
        background: #eb5017;
        color: #fff;
        position: relative;
      }
      .cs-compare-table thead th.cs-col-trackk::before {
        content: "RECOMMENDED";
        position: absolute;
        top: 17px;
        right: 130px;
        font-size: 0.6rem;
        background: #f1fcc8;
        color: #1a1a1a;
        padding: 2px 8px;
        border-radius: 999px;
        letter-spacing: 0.08em;
        font-weight: 700;
      }
      .cs-compare-table tbody tr:last-child td {
        border-bottom: 0;
      }
      .cs-compare-table td.cs-feature {
        font-weight: 600;
        color: #1a1a1a;
        width: 36%;
      }
      .cs-compare-table td.cs-trackk {
        background: rgba(235, 80, 23, 0.04);
        color: #1a1a1a;
        font-weight: 600;
      }
      .cs-cell-tick {
        color: #2a8f3f;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }
      .cs-cell-cross {
        color: #b3261e;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }
      @media (max-width: 767.98px) {
        .cs-compare-table th,
        .cs-compare-table td {
          padding: 12px 10px;
          font-size: 0.82rem;
        }
        .cs-compare-table thead th.cs-col-trackk::before {
          display: none;
        }
      }

      /* ===== Security section (mirrors compnay-struture) ===== */
      .cs-sec-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        align-items: stretch;
      }
      @media (max-width: 991.98px) {
        .cs-sec-grid {
          grid-template-columns: 1fr;
        }
      }
      .cs-sec-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        height: 100%;
      }
      .cs-sec-list > div {
        height: 100%;
      }
      @media (max-width: 575.98px) {
        .cs-sec-list {
          grid-template-columns: 1fr;
        }
      }
      .cs-sec-feature {
        background: #fff;
        border: 1px solid #f0e3da;
        border-radius: 22px;
        padding: 24px 22px;
        height: 100%;
        box-sizing: border-box;
        transition: all 0.25s ease;
      }
      .cs-sec-feature:hover {
        border-color: rgba(235, 80, 23, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(235, 80, 23, 0.07);
      }
      .cs-sec-feature .cs-sec-ico {
        font-size: 1.3rem;
        color: #eb5017;
        background: #fff1ea;
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        margin-bottom: 12px;
      }
      .cs-sec-feature h6 {
        font-weight: 600;
        font-size: 1rem;
        color: #1a1a1a;
        margin-bottom: 6px;
      }
      .cs-sec-feature p {
        color: #6b7280;
        font-size: clamp(0.84rem, 1.1vw, 0.88rem);
        line-height: 1.55;
        margin: 0;
      }

      /* Right-side AOS wrapper: keeps Card 2 the same height as Card 1 */
      .cs-sec-hero-wrap {
        display: flex;
        width: 100%;
        height: 100%;
        min-width: 0;
      }

      .cs-sec-hero {
        width: 100%;
        height: 100%;
        min-height: 100%;
        box-sizing: border-box;
        background:
          radial-gradient(600px 280px at 100% 0%, rgba(235, 80, 23, 0.16), transparent 60%),
          linear-gradient(160deg, #1a1a1a 0%, #2b1c14 100%);
        color: #fff;
        border-radius: 22px;
        padding: 30px 28px;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
      }
      .cs-sec-hero::before {
        content: "";
        position: absolute;
        right: -40px;
        top: -40px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        border: 1px dashed rgba(255, 255, 255, 0.12);
        pointer-events: none;
      }

      /* Card 2 top description */
      .cs-sec-hero-content {
        position: relative;
        z-index: 1;
      }
      .cs-sec-hero-content h3,
      .cs-sec-hero h3 {
        color: #fff;
        font-weight: 800;
        font-size: clamp(1.15rem, 2vw, 1.4rem);
        line-height: 1.25;
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
      }
      .cs-sec-hero-content p,
      .cs-sec-hero p {
        max-width: 460px;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(0.86rem, 1.1vw, 0.92rem);
        line-height: 1.6;
        margin: 0;
        position: relative;
        z-index: 1;
      }

      /* Card 2 middle boxes */
      .cs-sec-hero .cs-sec-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: auto;
        margin-bottom: auto;
        padding: 34px 0;
        position: relative;
        z-index: 1;
      }
      .cs-sec-hero .cs-sec-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 999px;
        font-size: 0.72rem;
        font-weight: 700;
        line-height: 1;
        color: #fff;
        white-space: nowrap;
      }
      .cs-sec-hero .cs-sec-badge .bi {
        color: #ffb89b;
        font-size: 0.82rem;
      }

      /* Card 2 bottom boxes: Secure / Clear / Ready */
      .cs-sec-hero .cs-sec-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        margin-top: auto;
        position: relative;
        z-index: 1;
      }
      .cs-sec-stat {
        min-width: 0;
      }
      .cs-sec-hero .cs-sec-stat .num {
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: clamp(1.1rem, 1.8vw, 1.4rem);
        color: #ffb89b;
        line-height: 1;
      }
      .cs-sec-hero .cs-sec-stat .lbl {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-top: 6px;
        display: block;
        line-height: 1.3;
      }

      @media (max-width: 991.98px) {
        .cs-sec-hero-wrap,
        .cs-sec-hero {
          height: auto;
          min-height: auto;
        }
        .cs-sec-hero {
          min-height: 500px;
        }
      }

      @media (max-width: 575.98px) {
        .cs-sec-hero {
          min-height: 460px;
          padding: 26px 22px;
        }
        .cs-sec-hero .cs-sec-badges {
          padding: 28px 0;
        }
        .cs-sec-hero .cs-sec-stats {
          gap: 10px;
        }
        .cs-sec-hero .cs-sec-stat .num {
          font-size: 1.05rem;
        }
        .cs-sec-hero .cs-sec-stat .lbl {
          font-size: 0.58rem;
        }
      }

      .py-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
      }
      @media (max-width: 991.98px) {
        .py-split {
          grid-template-columns: 1fr;
          gap: 32px;
        }
      }
      .py-split.is-reverse .py-split-media {
        order: 2;
      }
      @media (max-width: 991.98px) {
        .py-split.is-reverse .py-split-media {
          order: 0;
        }
      }

      .py-split-media {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        min-height: 460px;
        background: linear-gradient(160deg, #ffe1d2 0%, #fdeee7 55%, #fff6f0 100%);
        border: 1px solid #f0e3da;
        box-shadow: 0 24px 60px rgba(235, 80, 23, 0.1);
      }
      .py-split-media.is-cool {
        background: linear-gradient(160deg, #eaf5c7 0%, #f4fbdc 55%, #fbffe9 100%);
        border-color: #e6efc6;
        box-shadow: 0 24px 60px rgba(154, 171, 29, 0.12);
      }
      .py-split-media::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(-45deg, rgba(235, 80, 23, 0.08) 0 1px, transparent 1px 16px);
        pointer-events: none;
        z-index: 1;
      }
      .py-split-media.is-cool::before {
        background-image: repeating-linear-gradient(-45deg, rgba(58, 65, 18, 0.1) 0 1px, transparent 1px 16px);
      }
      .py-split-media img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        z-index: 2;
      }
      .py-split-lead {
        color: #4b5563;
        font-size: clamp(0.95rem, 1.2vw, 1.02rem);
        line-height: 1.6;
        margin: 0 0 8px;
      }

      .py-bullets {
        list-style: none;
        padding: 0;
        margin: 22px 0 0;
        display: flex;
        flex-direction: column;
        gap: 18px;
      }
      .py-bullets li {
        display: flex;
        gap: 14px;
        align-items: flex-start;
      }
      .py-bullets .pyb-ico {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        border-radius: 11px;
        background: #fff1ea;
        color: #eb5017;
        display: grid;
        place-items: center;
        font-size: 1.05rem;
      }
      .py-bullets.is-cool .pyb-ico {
        background: #f1fcc8;
        color: #3a4112;
      }
      .py-bullets h6 {
        margin: 0 0 3px;
        font-weight: 600;
        font-size: 1rem;
        color: #1a1a1a;
        letter-spacing: -0.01em;
        line-height: 1.35;
      }
      .py-bullets p {
        margin: 0;
        font-size: clamp(0.85rem, 1.1vw, 0.92rem);
        line-height: 1.55;
        color: #6b7280;
      }