.cashflow-page {
    background: var(--gmp-light);
    color: var(--gmp-dark-deep);
    overflow: hidden;
}

.cashflow-page h1,
.cashflow-page h2,
.cashflow-page h3 {
    color: var(--gmp-dark-deep);
    font-weight: 800;
}

.cashflow-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(var(--gmp-primary-rgb), 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(0, 255, 133, 0.05) 0%, transparent 30%),
        var(--gmp-warm);
    border-bottom: 1px solid rgba(var(--gmp-primary-rgb), 0.05);
}

.cashflow-eyebrow,
.cashflow-section-label,
.cashflow-section-heading > p {
    margin-bottom: 12px;
    color: var(--gmp-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cashflow-hero-title {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    line-height: 1.15;
}

.cashflow-hero-title span {
    color: transparent;
    background: linear-gradient(135deg, var(--gmp-primary), #00b35c);
    -webkit-background-clip: text;
    background-clip: text;
}

.cashflow-hero-subtitle,
.cashflow-lead {
    color: var(--gmp-slate);
    font-size: 1.15rem;
    line-height: 1.6;
}

.cashflow-hero-subtitle {
    max-width: 690px;
    margin-bottom: 30px;
}

.cashflow-hero-image {
    max-height: 320px;
    filter: none;
}

.cashflow-primary-button,
.cashflow-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.cashflow-primary-button {
    color: #fff;
    background: var(--gmp-primary);
    box-shadow: 0 12px 24px rgba(var(--gmp-primary-rgb), 0.2);
}

.cashflow-primary-button:hover,
.cashflow-primary-button:focus-visible {
    color: #fff;
    background: #005a30;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(var(--gmp-primary-rgb), 0.28);
}

.cashflow-secondary-button {
    color: var(--gmp-dark-deep);
    border: 1px solid rgba(15, 23, 42, 0.14);
    background: rgba(255, 255, 255, 0.72);
}

.cashflow-secondary-button:hover,
.cashflow-secondary-button:focus-visible {
    color: var(--gmp-primary);
    border-color: rgba(var(--gmp-primary-rgb), 0.35);
    transform: translateY(-2px);
}

.cashflow-feature-section,
.cashflow-detail-section {
    padding: 90px 0;
}

.cashflow-feature-section {
    background: var(--gmp-light);
}

.cashflow-section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
}

.cashflow-section-heading h2,
.cashflow-detail-section h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.cashflow-section-heading > span {
    display: block;
    color: var(--gmp-slate);
    font-size: 1.05rem;
    line-height: 1.8;
}

.cashflow-feature-card {
    height: 100%;
    padding: 38px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.035);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cashflow-feature-card:hover {
    border-color: rgba(var(--gmp-primary-rgb), 0.16);
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(var(--gmp-primary-rgb), 0.08);
}

.cashflow-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    border-radius: 50%;
    color: var(--gmp-primary);
    background: rgba(var(--gmp-primary-rgb), 0.08);
    font-size: 1.65rem;
}

.cashflow-feature-card h3,
.cashflow-benefit h3,
.cashflow-tab-content h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.cashflow-feature-card p,
.cashflow-benefit p,
.cashflow-tab-content p {
    margin-bottom: 0;
    color: var(--gmp-slate);
    line-height: 1.8;
}

.cashflow-detail-section {
    background: #fff;
    scroll-margin-top: 110px;
}

.cashflow-detail-section-alt {
    background: var(--gmp-light);
}

.cashflow-check-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.cashflow-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cashflow-check-list i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-top: 2px;
    border-radius: 50%;
    color: #fff;
    background: var(--gmp-primary);
    font-size: 0.8rem;
    flex: 0 0 auto;
}

.cashflow-check-list strong,
.cashflow-check-list span {
    display: block;
}

.cashflow-check-list span {
    margin-top: 4px;
    color: var(--gmp-slate);
    line-height: 1.7;
}

.cashflow-image-frame {
    padding: 20px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.cashflow-image-frame img,
.cashflow-tab-content img {
    width: 100%;
    border-radius: 18px;
}

.cashflow-payment-tabs {
    gap: 12px;
}

.cashflow-payment-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 16px 20px;
    border: 1px solid transparent;
    border-radius: 16px;
    color: var(--gmp-slate) !important;
    background: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.cashflow-payment-tabs .nav-link::after {
    display: none;
}

.cashflow-payment-tabs .nav-link:hover {
    color: var(--gmp-primary) !important;
    background: rgba(var(--gmp-primary-rgb), 0.05);
}

.cashflow-payment-tabs .nav-link.active {
    color: #fff !important;
    background: var(--gmp-primary);
    box-shadow: 0 10px 22px rgba(var(--gmp-primary-rgb), 0.18);
}

.cashflow-tab-content {
    min-height: 420px;
    padding: 38px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.04);
}

.cashflow-tab-content img {
    margin-top: 24px;
    border: 1px solid #e2e8f0;
}

.cashflow-benefit {
    display: flex;
    gap: 18px;
    margin-top: 26px;
}

.cashflow-benefit > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: var(--gmp-primary);
    background: rgba(var(--gmp-primary-rgb), 0.08);
    flex: 0 0 auto;
}

.cashflow-cta-section {
    padding: 0 0 100px;
    background: #fff;
}

.cashflow-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 46px 52px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, #064e3b, var(--gmp-primary));
    box-shadow: 0 25px 50px rgba(var(--gmp-primary-rgb), 0.22);
}

.cashflow-cta-card p {
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.cashflow-cta-card h2 {
    margin: 0;
    color: #fff;
}

.cashflow-cta-card .cashflow-primary-button {
    color: var(--gmp-primary);
    background: #fff;
    box-shadow: none;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .cashflow-hero {
        padding: 150px 0 70px;
        text-align: center;
    }

    .cashflow-hero-subtitle {
        margin-right: auto;
        margin-left: auto;
    }

    .cashflow-hero .d-flex {
        justify-content: center;
    }

    .cashflow-feature-section,
    .cashflow-detail-section {
        padding: 72px 0;
    }

    .cashflow-payment-tabs {
        flex-direction: row !important;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .cashflow-payment-tabs .nav-link {
        width: auto;
        min-width: max-content;
    }
}

@media (max-width: 575.98px) {
    .cashflow-feature-card,
    .cashflow-tab-content {
        padding: 26px;
    }

    .cashflow-cta-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 34px 28px;
    }
}
