/* =====================================================
   FINANCE CATEGORY PAGE — content-only stylesheet.
   Scoped under .ps-finance; see property-sp.css for why
   (keeps this off the real global header/footer + :root).
===================================================== */

.ps-finance {
    --pf-black: #151515;
    --pf-black-soft: #292929;
    --pf-text: #444444;
    --pf-muted: #747474;

    --pf-green: #3a966d;
    --pf-green-hover: #2f7f5c;

    --pf-light-green: #e7f6ee;
    --pf-light-green-2: #d9f0e4;
    --pf-light-green-3: #f3faf6;

    --pf-yellow: #f3d452;
    --pf-yellow-soft: #fff5bd;

    --pf-white: #ffffff;
    --pf-border: #e1e8e4;

    color: var(--pf-black);
    background: #ffffff;
    overflow-x: hidden;
}

.ps-finance * {
    box-sizing: border-box;
}

.ps-finance button,
.ps-finance a {
    font-family: inherit;
}

.ps-finance button {
    cursor: pointer;
}

.ps-finance .finance-hero-actions a,
.ps-finance .finance-journey-nav a {
    text-decoration: none;
}


/* =====================================================
   HERO
===================================================== */

.ps-finance .finance-hero {
    position: relative;
    padding: 42px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 15%, rgba(243, 212, 82, 0.28), transparent 22%),
        radial-gradient(circle at 5% 88%, rgba(58, 150, 109, 0.13), transparent 24%),
        linear-gradient(120deg, #e5f6ed, #f5fbf8 42%, #ffffff 73%, #fffdf3);
}

.ps-finance .finance-hero-row {
    min-height: 420px;
}

.ps-finance .finance-hero-content {
    position: relative;
    z-index: 5;
}

.ps-finance .finance-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
    color: var(--pf-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.ps-finance .finance-eyebrow span {
    width: 26px;
    height: 2px;
    background: var(--pf-yellow);
}

.ps-finance .finance-hero h1 {
    max-width: 680px;
    margin-bottom: 16px;
    color: var(--pf-black);
    font-size: 46px;
    line-height: 1.08;
    font-weight: 800;
}

.ps-finance .finance-hero h1 span {
    display: block;
    color: var(--pf-green);
}

.ps-finance .finance-hero-content > p {
    max-width: 610px;
    margin-bottom: 20px;
    color: var(--pf-text);
    font-size: 14px;
    line-height: 1.72;
}

.ps-finance .finance-hero-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.ps-finance .finance-primary-btn {
    padding: 12px 19px;
    border: none;
    border-radius: 8px;
    background: var(--pf-black);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    transition: 0.22s ease;
}

.ps-finance .finance-primary-btn:hover {
    background: var(--pf-green);
}

.ps-finance .finance-secondary-btn {
    padding: 11px 17px;
    border: 1px solid #ccd9d2;
    border-radius: 8px;
    background: #ffffff;
    color: var(--pf-black);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.22s ease;
}

.ps-finance .finance-secondary-btn:hover {
    background: var(--pf-yellow-soft);
}

.ps-finance .finance-hero-points {
    display: flex;
    gap: 27px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.ps-finance .finance-hero-points > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ps-finance .finance-hero-points > div > span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ffffff;
    color: var(--pf-green);
    font-size: 17px;
}

.ps-finance .finance-hero-points strong {
    display: block;
    font-size: 11px;
    color: var(--pf-black);
}

.ps-finance .finance-hero-points small {
    display: block;
    margin-top: 2px;
    color: #888888;
    font-size: 8.5px;
}

.ps-finance .finance-hero-visual {
    position: relative;
    max-width: 620px;
    margin-left: auto;
    padding: 10px 4px 10px 20px;
}

.ps-finance .finance-image-frame {
    position: relative;
    z-index: 3;
    padding: 10px;
    border: 1px solid #dfeae4;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1);
}

.ps-finance .finance-main-image {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}

.ps-finance .hero-floating-card {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 155px;
    padding: 10px 12px;
    border: 1px solid #e3ece7;
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: pfHeroFloat 4s ease-in-out infinite;
}

.ps-finance .hero-card-one {
    top: 45px;
    left: -5px;
}

.ps-finance .hero-card-two {
    top: 150px;
    right: -12px;
    animation-delay: 0.8s;
}

.ps-finance .hero-card-three {
    bottom: 26px;
    left: 45px;
    animation-delay: 1.5s;
}

.ps-finance .hero-floating-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-size: 15px;
}

.ps-finance .green-icon {
    background: var(--pf-light-green);
    color: var(--pf-green);
}

.ps-finance .yellow-icon {
    background: var(--pf-yellow-soft);
    color: #8d7615;
}

.ps-finance .hero-floating-card small {
    display: block;
    color: #999999;
    font-size: 7px;
    font-weight: 800;
}

.ps-finance .hero-floating-card strong {
    display: block;
    margin-top: 2px;
    font-size: 9px;
    color: var(--pf-black);
}

@keyframes pfHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.ps-finance .hero-circle {
    position: absolute;
    border-radius: 50%;
}

.ps-finance .hero-circle-one {
    width: 260px;
    height: 260px;
    top: -150px;
    right: 4%;
    background: rgba(243, 212, 82, 0.2);
}

.ps-finance .hero-circle-two {
    width: 150px;
    height: 150px;
    bottom: -90px;
    left: 3%;
    background: rgba(58, 150, 109, 0.08);
}

.ps-finance .hero-ring {
    position: absolute;
    width: 110px;
    height: 110px;
    top: 45%;
    left: 46%;
    border: 18px solid rgba(58, 150, 109, 0.05);
    border-radius: 50%;
}

.ps-finance .hero-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    right: 1%;
    bottom: 10px;
    opacity: 0.16;
    background-image: radial-gradient(var(--pf-green) 1px, transparent 1px);
    background-size: 10px 10px;
}


/* =====================================================
   BENEFITS
===================================================== */

.ps-finance .finance-benefits-section {
    padding: 31px 0 18px;
    background: linear-gradient(135deg, #ffffff, #f3faf6 55%, #fffdf3);
}

.ps-finance .finance-benefit-heading {
    margin-bottom: 15px;
    text-align: center;
}

.ps-finance .finance-benefit-heading > span {
    display: block;
    margin-bottom: 5px;
    color: var(--pf-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.ps-finance .finance-benefit-heading h2 {
    margin: 0;
    color: var(--pf-black);
    font-size: 32px;
    font-weight: 700;
}

.ps-finance .finance-benefit-heading h2 strong {
    color: var(--pf-green);
}

.ps-finance .finance-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.ps-finance .finance-benefit-item {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--pf-border);
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    transition: 0.25s ease;
}

.ps-finance .finance-benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 28px rgba(58, 150, 109, 0.09);
}

.ps-finance .finance-benefit-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
    border-radius: 14px;
    background: var(--pf-light-green);
    color: var(--pf-green);
    font-size: 22px;
}

.ps-finance .yellow-benefit {
    background: var(--pf-yellow-soft);
    color: #8d7615;
}

.ps-finance .finance-benefit-item h3 {
    margin: 0;
    color: var(--pf-black);
    font-size: 14px;
    font-weight: 700;
}


/* =====================================================
   SECTION HEADING (shared)
===================================================== */

.ps-finance .section-heading {
    max-width: 720px;
    margin: 0 auto 18px;
    text-align: center;
}

.ps-finance .section-heading > span {
    color: var(--pf-green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.ps-finance .section-heading h2 {
    margin: 6px 0 8px;
    color: var(--pf-black);
    font-size: 33px;
    font-weight: 700;
}

.ps-finance .section-heading h2 strong {
    color: var(--pf-green);
}

.ps-finance .section-heading p {
    max-width: 620px;
    margin: auto;
    color: var(--pf-text);
    font-size: 13px;
    line-height: 1.7;
}


/* =====================================================
   DASHBOARD
===================================================== */

.ps-finance .dashboard-experience {
    padding: 24px 0 20px;
    background:
        radial-gradient(circle at 8% 18%, rgba(58, 150, 109, 0.1), transparent 20%),
        radial-gradient(circle at 90% 78%, rgba(243, 212, 82, 0.24), transparent 22%),
        linear-gradient(135deg, #e8f7ef, #f8fcfa 45%, #ffffff 67%, #fffbea);
}

.ps-finance .dashboard-heading {
    margin-bottom: 14px;
}

.ps-finance .experience-switch-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.ps-finance .experience-switch {
    display: inline-flex;
    padding: 5px;
    border: 1px solid #d8e7df;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(58, 150, 109, 0.09);
}

.ps-finance .experience-switch-btn {
    min-width: 200px;
    padding: 13px 24px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--pf-black);
    font-size: 13px;
    font-weight: 700;
    transition: 0.25s ease;
}

.ps-finance .experience-switch-btn i {
    margin-right: 6px;
}

.ps-finance .experience-switch-btn.active {
    background: var(--pf-black);
    color: #ffffff;
}

.ps-finance .experience-switch-btn:not(.active):hover {
    background: var(--pf-yellow-soft);
}

.ps-finance .experience-stage {
    max-width: 1180px;
    min-height: 500px;
    margin: auto;
    padding: 32px;
    border: 1px solid #dce9e2;
    border-radius: 26px;
    background: linear-gradient(135deg, #e7f6ee, #ffffff 52%, #fff6c4);
    box-shadow: 0 22px 50px rgba(58, 150, 109, 0.11);
}

.ps-finance .experience-panel {
    display: none;
    grid-template-columns: 0.82fr 1.35fr;
    gap: 36px;
    align-items: center;
    min-height: 435px;
}

.ps-finance .experience-panel.active {
    display: grid;
}

.ps-finance .experience-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--pf-green);
    font-size: 9px;
    font-weight: 800;
}

.ps-finance .experience-content h3 {
    margin: 0 0 14px;
    color: var(--pf-black);
    font-size: 38px;
    line-height: 1.14;
    font-weight: 700;
}

.ps-finance .experience-content h3 span {
    display: block;
    color: var(--pf-green);
}

.ps-finance .experience-content > p {
    max-width: 510px;
    margin-bottom: 20px;
    color: var(--pf-text);
    font-size: 15px;
    line-height: 1.7;
}

.ps-finance .experience-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ps-finance .experience-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(58, 150, 109, 0.12);
}

.ps-finance .experience-list > div > span {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ffffff;
    color: var(--pf-green);
    font-size: 17px;
}

.ps-finance .experience-list strong {
    display: block;
    font-size: 14px;
    color: var(--pf-black);
}

.ps-finance .experience-list small {
    display: block;
    margin-top: 3px;
    color: #747474;
    font-size: 11px;
}

.ps-finance .dashboard-ui-wrap {
    padding: 15px;
}

.ps-finance .dashboard-window {
    min-height: 390px;
    padding: 21px;
    border: 1px solid #e0e9e4;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.11);
}

.ps-finance .dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #ecf1ee;
}

.ps-finance .dashboard-topbar small {
    display: block;
    color: var(--pf-green);
    font-size: 9px;
    font-weight: 800;
}

.ps-finance .dashboard-topbar strong {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    color: var(--pf-black);
}

.ps-finance .dashboard-avatar {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pf-black);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.ps-finance .partner-avatar {
    background: var(--pf-yellow);
    color: var(--pf-black);
}

.ps-finance .dashboard-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px;
    margin-bottom: 13px;
    border: 1px solid #e5eee9;
    border-radius: 9px;
    background: #f8fbf9;
}

.ps-finance .dashboard-search i {
    color: #777777;
}

.ps-finance .dashboard-search > span {
    flex: 1;
    color: #858585;
    font-size: 10px;
}

.ps-finance .dashboard-search button {
    padding: 7px 11px;
    border: none;
    border-radius: 6px;
    background: var(--pf-black);
    color: #ffffff;
    font-size: 9px;
}

.ps-finance .dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 14px;
}

.ps-finance .dashboard-stats > div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px;
    border: 1px solid #edf2ef;
    border-radius: 9px;
}

.ps-finance .stat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.ps-finance .green-stat {
    background: var(--pf-light-green);
    color: var(--pf-green);
}

.ps-finance .yellow-stat {
    background: var(--pf-yellow-soft);
    color: #8d7615;
}

.ps-finance .dashboard-stats small {
    display: block;
    color: #777777;
    font-size: 9px;
}

.ps-finance .dashboard-stats strong {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: var(--pf-black);
}

.ps-finance .dashboard-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 9px;
}

.ps-finance .dashboard-title-row small {
    display: block;
    color: var(--pf-green);
    font-size: 8px;
    font-weight: 800;
}

.ps-finance .dashboard-title-row strong {
    display: block;
    font-size: 12px;
    color: var(--pf-black);
}

.ps-finance .dashboard-title-row > span {
    color: var(--pf-green);
    font-size: 9px;
}

.ps-finance .finance-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.ps-finance .finance-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid #edf2ef;
    border-radius: 10px;
}

.ps-finance .finance-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 19px;
}

.ps-finance .green-bg {
    background: var(--pf-light-green);
    color: var(--pf-green);
}

.ps-finance .yellow-bg {
    background: var(--pf-yellow-soft);
    color: #8d7615;
}

.ps-finance .finance-card strong {
    display: block;
    font-size: 10px;
    color: var(--pf-black);
}

.ps-finance .finance-card small {
    display: block;
    margin: 2px 0 4px;
    color: #858585;
    font-size: 8px;
}

.ps-finance .finance-card div > span {
    color: var(--pf-green);
    font-size: 8px;
}

.ps-finance .dashboard-bottom-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 11px;
}

.ps-finance .dashboard-bottom-actions span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 5px;
    border-radius: 6px;
    background: #f7faf8;
    font-size: 8px;
    color: var(--pf-black);
}

.ps-finance .dashboard-bottom-actions i {
    color: var(--pf-green);
}

.ps-finance .partner-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 13px;
}

.ps-finance .partner-action-row button {
    padding: 9px 12px;
    border: none;
    border-radius: 6px;
    background: var(--pf-black);
    color: #ffffff;
    font-size: 10px;
}

.ps-finance .partner-action-row > span {
    color: var(--pf-green);
    font-size: 10px;
    font-weight: 700;
}

.ps-finance .performance-card {
    padding: 12px;
    margin-bottom: 11px;
    border: 1px solid #edf2ef;
    border-radius: 9px;
    background: #f8fbf9;
}

.ps-finance .performance-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
}

.ps-finance .performance-head small {
    display: block;
    color: var(--pf-green);
    font-size: 8px;
    font-weight: 800;
}

.ps-finance .performance-head strong {
    font-size: 11px;
    color: var(--pf-black);
}

.ps-finance .performance-head > span {
    color: var(--pf-green);
    font-size: 9px;
}

.ps-finance .performance-chart {
    height: 75px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.ps-finance .performance-chart span {
    flex: 1;
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(180deg, #78c5a2, #3a966d);
}

.ps-finance .partner-enquiry {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid #edf2ef;
    border-radius: 8px;
}

.ps-finance .partner-enquiry-icon {
    width: 37px;
    height: 37px;
    min-width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pf-yellow-soft);
    color: #8d7615;
}

.ps-finance .partner-enquiry > div {
    flex: 1;
}

.ps-finance .partner-enquiry small {
    display: block;
    color: var(--pf-green);
    font-size: 8px;
    font-weight: 800;
}

.ps-finance .partner-enquiry strong {
    display: block;
    margin-top: 2px;
    font-size: 10px;
    color: var(--pf-black);
}

.ps-finance .partner-enquiry button {
    padding: 7px 10px;
    border: 1px solid #ccd8d2;
    border-radius: 5px;
    background: #ffffff;
    font-size: 9px;
}


/* =====================================================
   JOURNEY
===================================================== */

.ps-finance .finance-journey-section {
    padding: 28px 0 48px;
    background: linear-gradient(135deg, #ffffff, #f6faf8 52%, #ffffff);
}

.ps-finance .finance-journey-container {
    max-width: 1230px;
}

.ps-finance .journey-heading {
    margin-bottom: 18px;
}

.ps-finance .finance-journey-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.ps-finance .finance-journey-nav-wrap {
    position: sticky;
    top: 78px;
    align-self: start;
}

.ps-finance .journey-small-title {
    margin-bottom: 9px;
    color: #777777;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.ps-finance .finance-journey-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ps-finance .journey-nav-item {
    width: 100%;
    min-height: 49px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
}

.ps-finance .journey-nav-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #929292;
    font-size: 21px;
    transition: 0.2s ease;
}

.ps-finance .journey-nav-item strong {
    color: var(--pf-black-soft);
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s ease;
}

.ps-finance .journey-nav-item.active .journey-nav-icon,
.ps-finance .journey-nav-item:hover .journey-nav-icon {
    color: var(--pf-green);
}

.ps-finance .journey-nav-item.active strong,
.ps-finance .journey-nav-item:hover strong {
    color: var(--pf-green);
}

.ps-finance .journey-nav-item.active .journey-nav-icon i {
    animation: pfJourneyIcon 2.6s ease-in-out infinite;
}

@keyframes pfJourneyIcon {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
}

.ps-finance .finance-journey-content {
    min-width: 0;
}

.ps-finance .finance-step {
    position: relative;
    min-height: 190px;
    padding: 8px 0 34px;
    margin: 0;
    scroll-margin-top: 95px;
}

.ps-finance .finance-step h3 {
    max-width: 820px;
    margin: 0 0 12px;
    color: var(--pf-black);
    font-size: 27px;
    line-height: 1.3;
    font-weight: 700;
    transition: color 0.2s ease;
}

.ps-finance .finance-step p {
    max-width: 850px;
    margin: 0 0 12px;
    color: #555555;
    font-size: 15px;
    line-height: 1.85;
}

.ps-finance .finance-step p:last-child {
    margin-bottom: 0;
}

.ps-finance .finance-step.active h3 {
    color: var(--pf-green);
}

.ps-finance .finance-step.active p {
    color: #333333;
}


/* =====================================================
   CTA
===================================================== */

.ps-finance .finance-final-cta {
    padding: 36px 0;
    background: linear-gradient(135deg, #dff2e8, #f5fbf8 55%, #fff1aa);
}

.ps-finance .finance-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 27px 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.65);
    flex-wrap: wrap;
}

.ps-finance .finance-cta-inner > div > span {
    color: var(--pf-green);
    font-size: 9px;
    font-weight: 800;
}

.ps-finance .finance-cta-inner h2 {
    margin: 6px 0;
    color: var(--pf-black);
    font-size: 31px;
}

.ps-finance .finance-cta-inner h2 strong {
    color: var(--pf-green);
}

.ps-finance .finance-cta-inner p {
    margin: 0;
    color: var(--pf-text);
    font-size: 11px;
}

.ps-finance .finance-cta-inner button {
    padding: 12px 18px;
    border: none;
    border-radius: 9px;
    background: var(--pf-black);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.ps-finance .finance-cta-inner button:hover {
    background: var(--pf-green);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .ps-finance .finance-hero-content {
        margin-bottom: 30px;
    }

    .ps-finance .finance-hero-visual {
        max-width: 700px;
        margin: auto;
    }

    .ps-finance .experience-panel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ps-finance .experience-content {
        text-align: center;
    }

    .ps-finance .experience-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .ps-finance .experience-list {
        text-align: left;
    }

    .ps-finance .finance-journey-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ps-finance .finance-journey-nav-wrap {
        position: sticky;
        top: 55px;
        z-index: 100;
        padding: 6px 0;
        background: rgba(255, 255, 255, 0.97);
    }

    .ps-finance .journey-small-title {
        display: none;
    }

    .ps-finance .finance-journey-nav {
        flex-direction: row;
        gap: 11px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .ps-finance .finance-journey-nav::-webkit-scrollbar {
        display: none;
    }

    .ps-finance .journey-nav-item {
        width: auto;
        min-width: max-content;
    }

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

}

@media (max-width: 767px) {

    .ps-finance .finance-hero {
        padding: 30px 0;
    }

    .ps-finance .finance-hero h1 {
        font-size: 35px;
    }

    .ps-finance .finance-main-image {
        height: 330px;
    }

    .ps-finance .hero-floating-card {
        display: none;
    }

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

    .ps-finance .experience-switch {
        width: 100%;
    }

    .ps-finance .experience-switch-btn {
        flex: 1;
        min-width: 0;
        padding: 12px 8px;
        font-size: 11px;
    }

    .ps-finance .experience-stage {
        min-height: auto;
        padding: 20px 14px;
    }

    .ps-finance .experience-content h3 {
        font-size: 28px;
    }

    .ps-finance .dashboard-stats,
    .ps-finance .finance-card-grid,
    .ps-finance .dashboard-bottom-actions {
        grid-template-columns: 1fr;
    }

    .ps-finance .finance-step {
        min-height: 0;
        padding-bottom: 28px;
    }

    .ps-finance .finance-step h3 {
        font-size: 23px;
    }

    .ps-finance .finance-step p {
        font-size: 13px;
        line-height: 1.75;
    }

    .ps-finance .finance-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 500px) {

    .ps-finance .finance-hero h1 {
        font-size: 30px;
    }

    .ps-finance .finance-hero-points {
        flex-direction: column;
        gap: 9px;
    }

    .ps-finance .finance-main-image {
        height: 270px;
    }

    .ps-finance .finance-benefits-grid {
        grid-template-columns: 1fr;
    }

    .ps-finance .journey-nav-item strong {
        font-size: 13px;
    }

    .ps-finance .journey-nav-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

}

@media (max-width: 360px) {

    .ps-finance .finance-hero h1 {
        font-size: 26px;
    }

    .ps-finance .finance-primary-btn,
    .ps-finance .finance-secondary-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .ps-finance .finance-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

}

@media (prefers-reduced-motion: reduce) {

    .ps-finance .hero-floating-card,
    .ps-finance .journey-nav-item.active .journey-nav-icon i {
        animation: none !important;
    }

}
