    :root {
        --pp-green: #05603a;
        --pp-green-dark: #034a2c;
        --pp-green-light: #eef8f1;
        --pp-ink: #101827;
        --pp-muted: #5b6472;
        --pp-border: #e6e9ee;
        --pp-bg: #ffffff;
        --pp-bg-soft: #f7f9f8;
        --pp-radius: 16px;
        --pp-radius-sm: 10px;
        --pp-shadow: 0 4px 24px rgba(16, 24, 39, 0.06);
        --pp-shadow-hover: 0 10px 32px rgba(16, 24, 39, 0.10);
    }

    .pp-wrap * {
        box-sizing: border-box;
    }

    .pp-wrap {
        color: var(--pp-ink);
        -webkit-font-smoothing: antialiased;
    }



    /* ---------- Breadcrumb ---------- */
    .pp-breadcrumb {
        padding: 14px 0;
        border-bottom: 1px solid var(--pp-border);
    }

    .pp-breadcrumb ol {
        display: flex;
        align-items: center;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 13px;
        color: var(--pp-muted);
    }

    .pp-breadcrumb a {
        font-size: 12px;
        color: #034437;
        text-decoration: none;
        font-weight: 500;
    }

    .pp-breadcrumb a:hover {
        color: var(--pp-green);
    }


    .pp-breadcrumb .pp-current {
      font-size: 12px;
    }

    /* ---------- Hero ---------- */
    .pp-hero {
        padding: 0px 0 64px;
    }

    .pp-hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 48px;
        align-items: center;
    }

    .pp-badge {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        background: #fdfffe;
        border: 1px solid #bcbcbc;
        border-radius: 8px;
        padding: 6px 14px;
        font-size: 11px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 20px;
    }

    .pp-hero h1 {
        font-size: 42px;
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: -0.02em;
        margin: 0 0 18px;
        color: var(--pp-ink);
    }

    .pp-hero p.pp-lead {
        font-size: 17px;
        line-height: 1.6;
        color: var(--pp-muted);
        margin: 0 0 32px;
        max-width: 520px;
    }

    .pp-hero-actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }

    .pp-hero-img {
        border-radius: var(--pp-radius);
        overflow: hidden;
    }

    .pp-hero-img img {
        width: 100%;
        display: block;
    }

    @media (max-width: 900px) {
        .pp-hero-grid {
            grid-template-columns: 1fr;
            gap: 28px;
        }
    }

    /* ---------- Buttons ---------- */
    .pp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 48px;
        padding: 0 24px;
        border-radius: 50px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        border: 1px solid transparent;
        transition: all 0.15s ease;
        white-space: nowrap;
    }

    .pp-btn-primary {
        background: #034737;
        color: #fff;
        border: none;
    }



    .pp-btn-outline {
        background: #fff;
        color: #0a0a0a;
        border: 1px solid #0a0a0a;
    }

    .arrow-icon {
        flex-shrink: 0;
        display: inline-block;
        transition: transform 0.2s ease;
    }

    .pp-btn:hover .arrow-icon {
        transform: translateX(3px);
    }

    @media (max-width: 768px) {
        .pp-hero-actions {
            flex-direction: column;
            width: 100%;
        }

        .pp-btn {
            width: 100%;
        }
    }

    /* ---------- Section heading ---------- */
    .pp-section {
        padding: 60px 0;
    }

    .pp-section-soft {
        background: #fff;
    }

    .pp-eyebrow {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -0.01em;
        margin: 0 0 14px;
        color: var(--pp-ink);
    }

    .pp-h2 {
        text-align: center;
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -0.01em;
        margin: 0 0 14px;
        color: var(--pp-ink);
    }

    .pp-subtext {
        text-align: center;
        font-size: 16px;
        color: var(--pp-muted);
        max-width: 680px;
        margin: 0 auto 18px;
        line-height: 1.6;
    }

    /* ---------- Logos (brands marquee, same as homepage) ---------- */
    .brands-section {
        background: rgb(240 240 240);
    }

    .brands-inner {
        position: relative;
        overflow: hidden;
        max-width: 100%;
        margin: 0 auto;
        padding: 24px 0;
    }

    .brands-inner::before,
    .brands-inner::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 10%;
        pointer-events: none;
        z-index: 2;
    }

    .brands-inner::before {
        left: 0;
        background: linear-gradient(to right, #f7f7f7c9 0, rgba(255, 255, 255, 0) 100%);
    }

    .brands-inner::after {
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 100%, #f7f7f7c9 0);
    }

    .brands-track {
        display: flex;
        width: max-content;
        gap: 40px;
        animation: 25s linear infinite brandsScroll;
    }

    .brands-inner-dual {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .brands-track-left,
    .brands-track-right {
        display: flex;
        width: max-content;
        gap: 40px;
    }

    .brands-track-left {
        animation: 50s linear infinite brandsScrollLeft;
    }

    .brands-track-right {
        animation: 50s linear infinite brandsScrollRight;
    }

    @keyframes brandsScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-20%);
        }
    }

    @keyframes brandsScrollLeft {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes brandsScrollRight {
        0% {
            transform: translateX(-50%);
        }

        100% {
            transform: translateX(0);
        }
    }

    .brand-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 9999px;
        padding: 6px 12px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
        transition: transform .2s, box-shadow .2s;
    }

    .brand-badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    }

    /* ---------- Intro text block ---------- */
    .pp-intro-card {
        border-radius: var(--pp-radius);
        padding: 0px 30px 0px;
        margin: 0 auto;
    }

    .pp-intro-card p {
        font-size: 16px;
        line-height: 1.7;
        color: var(--pp-muted);
        margin: 0 0 14px;
    }

    .pp-intro-card p:last-child {
        margin-bottom: 0;
    }

    .pp-intro-card a {
        color: #4353ff;
        text-decoration: none;
    }

    /* ---------- Partner tabs ---------- */
    .pp-tabs-bar {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 4px;
        flex-wrap: wrap;
    }

    .pp-tabs-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding: 8px;
        gap: 4px;
        max-width: 100%;
        background: #ffffff;
        border: 1px solid rgb(139 201 243 / 54%);
        border-radius: 999px;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
        /* filter: blur(1px); */
    }

    .pp-tab-btn {
        padding: 10px 20px;
        border-radius: 999px;
        color: var(--pp-muted);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        background: transparent;
        border: none;
        outline: none;
    }

    .pp-tab-btn:focus,
    .pp-tab-btn:focus-visible {
        outline: none;
        box-shadow: none;
    }

    .pp-tab-short {
        display: none;
    }

    @media (max-width: 768px) {
        .pp-tabs-bar {
            flex-wrap: nowrap;
            justify-content: flex-start;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            margin-bottom: 0px;
        }

        .pp-tabs-bar::-webkit-scrollbar {
            display: none;
        }

        .pp-tab-btn {
            flex: 0 0 auto;
            white-space: nowrap;
            font-size: 13px;
            padding: 8px 16px;
        }

        .pp-tab-full {
            display: none;
        }

        .pp-tab-short {
            display: inline;
        }
    }

    .pp-tab-btn.active {
        color: #000000 !important;
        font-weight: 700;
        background: #ffffff !important;
        border-color: #ffffff !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    }

    .pp-tab-panel {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 40px;
        align-items: center;
        background: #fff;

        border-radius: var(--pp-radius);
        padding: 40px;
    }

    .pp-tab-panel img {
        width: 100%;
        border-radius: var(--pp-radius-sm);
    }

    .pp-tab-lead {
        font-size: 17px;
        font-weight: 600;
        color: var(--pp-ink);
        margin: 0 0 14px;
        line-height: 1.5;
    }

    .pp-tab-panel p.pp-body {
        font-size: 15px;
        color: var(--pp-muted);
        line-height: 1.65;
        margin: 0 0 18px;
    }

    .pp-tab-list {
        list-style: none;
        margin: 0 0 24px;
        padding: 0;
        display: grid;
        gap: 10px;
    }

    .pp-tab-list li {
        display: flex;
        gap: 10px;
        font-size: 14px;
        color: var(--pp-ink);
        line-height: 1.5;
    }

    .pp-tab-list li::before {
        content: "";
        flex-shrink: 0;
        width: 18px;
        height: 18px;
        margin-top: 2px;
        border-radius: 50%;
        background: var(--pp-green-light);
        border: 1px solid #cfe8d8;
    }

    .pp-tab-link {
        color: var(--pp-green);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
    }

    @media (max-width: 900px) {
        .pp-tab-panel {
            grid-template-columns: 1fr;
            padding: 28px;
        }

        .pp-tab-panel img {
            order: 1;
        }

        .pp-tab-panel>div {
            order: 0;
        }
    }

    /* ---------- Feature grid ---------- */
    .pp-feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .pp-feature-card {
        border-radius: var(--pp-radius);
        padding: 32px 24px;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 220px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        transform-origin: center bottom;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    }

    .pp-feature-card:nth-child(1) {
        background: linear-gradient(135deg, #3b4a63 0%, #232f3f 100%);
    }

    .pp-feature-card:nth-child(2) {
        background: linear-gradient(135deg, #0f6a52 0%, #084c3c 100%);
    }

    .pp-feature-card:nth-child(3) {
        background: linear-gradient(135deg, #2b2b2b 0%, #121212 100%);
    }

    .pp-feature-card:nth-child(4) {
        background: linear-gradient(135deg, #ff6b3d 0%, #d1350f 100%);
    }

    .pp-feature-card:nth-child(5) {
        background: #673AB7;
    }

    .pp-feature-card:nth-child(6) {
        background: #2196f3;
    }

    .pp-feature-card:nth-child(7) {
        background: linear-gradient(135deg, #c2185b 0%, #880e4f 100%);
    }

    .pp-feature-card:nth-child(8) {
        background: linear-gradient(135deg, #00838f 0%, #00575f 100%);
    }

    .pp-feature-card:nth-child(9) {
        background: linear-gradient(135deg, #b8860b 0%, #7a5c00 100%);
    }

    .pp-feature-card:hover,
    .pp-feature-card:focus-within {
        transform: scale(1.18) translateY(-14px) rotate(-2deg);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        z-index: 20;
    }

    .pp-feature-grid .pp-feature-card:nth-child(-n+3) {
        transform-origin: center top;
    }

    .pp-feature-grid .pp-feature-card:nth-child(-n+3):hover,
    .pp-feature-grid .pp-feature-card:nth-child(-n+3):focus-within {
        transform: scale(1.18) translateY(14px) rotate(-2deg);
    }

    .pp-feature-grid .pp-feature-card:nth-child(even):hover,
    .pp-feature-grid .pp-feature-card:nth-child(even):focus-within {
        transform: scale(1.18) translateY(-14px) rotate(2deg);
    }

    .pp-feature-grid .pp-feature-card:nth-child(-n+3):nth-child(even):hover,
    .pp-feature-grid .pp-feature-card:nth-child(-n+3):nth-child(even):focus-within {
        transform: scale(1.18) translateY(14px) rotate(2deg);
    }

    .pp-feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        font-size: 18px;
        color: #fff;
    }

    .pp-feature-default {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        opacity: 1;
        transform: scale(1);
        transition: opacity 0.2s ease 0.18s, transform 0.2s ease 0.18s;
    }

    .pp-feature-card:hover .pp-feature-default,
    .pp-feature-card:focus-within .pp-feature-default {
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
    }

    .pp-feature-default h3,
    .pp-feature-expand h3 {
        font-size: 15px;
        font-weight: 700;
        margin: 0;
        color: #fff;
        line-height: 1.4;
    }

    .pp-feature-expand {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 22px 20px;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        transform: translateY(8px);
        pointer-events: none;
        transition: opacity 0.2s ease 0s, transform 0.2s ease 0s;
    }

    .pp-feature-card:hover .pp-feature-expand,
    .pp-feature-card:focus-within .pp-feature-expand {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        transition: opacity 0.25s ease 0.18s, transform 0.25s ease 0.18s;
    }

    .pp-feature-expand h3 {
        margin-bottom: 8px;
    }

    .pp-feature-expand p {
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.92) !important;
        line-height: 1.6;
        margin: 0;
    }

    /* Touch devices can't hover — show everything statically, no move/zoom */
    @media (hover: none),
    (max-width: 600px) {

        .pp-feature-card,
        .pp-feature-card:hover,
        .pp-feature-card:focus-within {
            transform: none !important;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18) !important;
            z-index: auto !important;
        }

        .pp-feature-default {
            opacity: 1 !important;
            transform: none !important;
        }

        .pp-feature-expand {
            position: static;
            display: flex;
            opacity: 1 !important;
            transform: none !important;
            pointer-events: auto;
            background: none;
            padding: 10px 0 0;
        }

        .pp-feature-expand h3 {
            display: none;
        }
    }

    @media (max-width: 900px) {
        .pp-feature-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .pp-feature-grid {
            display: flex;
            grid-template-columns: unset;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            gap: 16px;
            padding: 4px 20px 12px;
        }

        .pp-feature-grid::-webkit-scrollbar {
            display: none;
        }

        .pp-feature-card {
            flex: 0 0 80%;
            scroll-snap-align: center;
        }

        .pp-feature-dots {
            display: flex !important;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 18px;
        }

        .pp-feature-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--pp-border);
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .pp-feature-dot.active {
            width: 20px;
            border-radius: 4px;
            background: var(--pp-green);
        }
    }

    .pp-feature-dots {
        display: none;
    }

    @media (max-width: 400px) {
        .pp-tab-btn {
            padding: 7px 17px;
            border-radius: 999px;
            background: #fff;
            color: var(--pp-muted);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }

        .pp-tabs-bar {
            flex-wrap: normal;
        }
    }

    /* ---------- What You Can Offer (numbered offer cards, slider) ---------- */
    .offer-heading-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }

    .offer-heading {
        text-align: left;
        font-size: 28px;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: var(--pp-ink);
        margin: 0;
    }

    @media (max-width: 560px) {
        .offer-heading-row {
            flex-direction: column;
            align-items: flex-start;
        }

        .offer-heading-row .pp-btn {
            width: 100%;
        }
    }

    .reseller-steps-grid {
        display: grid;
        grid-template-columns: 0.9fr 1.3fr;
        gap: 60px;
        align-items: start;
    }

    .reseller-steps-sticky {
        position: sticky;
        top: 160px;
        align-self: start;
    }

    .reseller-steps-heading {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: var(--pp-ink);
        margin: 0 0 24px;
        line-height: 1.25;
    }

    .reseller-steps-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .reseller-step {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        background: #fff;
        border: 1px solid var(--pp-border);
        border-radius: var(--pp-radius);
        padding: 28px;
        box-shadow: 0 8px 20px rgba(16, 24, 39, 0.05);
    }

    .reseller-step-number {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #034737;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reseller-step-title {
        font-size: 19px;
        font-weight: 700;
        color: var(--pp-ink);
        margin: 0 0 6px;
    }

    .reseller-step-text {
        font-size: 15px;
        line-height: 1.6;
        color: var(--pp-muted);
        margin: 0;
    }

    @media (max-width: 860px) {
        .reseller-steps-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .reseller-steps-sticky {
            position: static;
        }
    }

    .offer-slider-wrap {
        position: relative;
    }

    .offer-grid {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 22px 4px 4px;
    }

    .offer-grid::-webkit-scrollbar {
        display: none;
    }

    .offer-card {
        position: relative;
        flex: 0 0 calc(45% - 12px);
        min-width: 260px;
        scroll-snap-align: start;
        border-radius: 24px;
        padding: 28px 28px 24px;
        border: 10px solid #f8f8f8;
    }

    .offer-media {
        width: 100%;
        border-radius: 14px;
        overflow: hidden;
        margin-bottom: 20px;
        background: rgb(0 0 0 / 6%);
    }

    .offer-media img {
        width: 100%;
        height: auto;
        display: block;
    }

    .offer-card h3 {

        font-size: 20px;
        font-weight: 700;
        margin: 0 0 8px;
    }

    .offer-card p {
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    .offer-slider-arrows {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 16px;
    }

    @media (max-width: 992px) {
        .offer-card {
            flex: 0 0 calc(38% - 16px);
        }
    }

    @media (max-width: 560px) {
        .offer-card {
            flex: 0 0 78%;
        }
    }

    /* ---------- Grow slider (dark cards, arrow-controlled) ---------- */
    .grow-slider-wrap {
        position: relative;
    }

    .grow-slider {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .grow-slider::-webkit-scrollbar {
        display: none;
    }

    .grow-card {
        flex: 0 0 calc(44% - 12px);
        min-width: 320px;
        scroll-snap-align: start;
        background: linear-gradient(160deg, #1d2620 0%, #0d100c 100%);
        border-radius: 24px;
        padding: 28px 28px 24px;
        color: #fff;
    }

    .grow-card-visual {
        position: relative;
        height: 200px;
        margin-bottom: 24px;
        overflow: hidden;
    }

    .grow-badge {
        position: absolute;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 999px;
        padding: 6px 14px 6px 6px;
        font-size: 13px;
        font-weight: 600;
        color: #d7ffcf;
        backdrop-filter: blur(6px);
    }

    .grow-badge i {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #b6f36b;
        color: #10140f;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        flex-shrink: 0;
    }

    .grow-badge-1 {
        top: 4px;
        right: 10px;
    }

    .grow-badge-2 {
        top: 92px;
        left: 70px;
    }

    .grow-badge-3 {
        top: 148px;
        left: 0;
    }

    .grow-link-pill {
        position: absolute;
        top: 44px;
        left: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        padding: 12px 20px;
        font-size: 15px;
        color: #a9b6ff;
        max-width: 92%;
    }

    .grow-link-bar {
        width: 90px;
        height: 8px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.18);
    }

    .grow-social {
        position: absolute;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 2;
    }

    .grow-social-1 {
        top: 0;
        left: 90px;
        color: #000;
    }

    .grow-social-2 {
        top: 6px;
        right: 0;
        background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
        color: #fff;
    }

    .grow-social-3 {
        top: 44px;
        left: 20px;
    }

    .grow-social-4 {
        bottom: 20px;
        left: 90px;
        background: #1877f2;
        color: #fff;
    }

    .grow-social-5 {
        bottom: 0;
        right: 30px;
        background: #ff0000;
        color: #fff;
    }

    .grow-mock-img {
        position: absolute;
        top: 30px;
        left: 60px;
        right: 20px;
        width: calc(100% - 80px);
        height: 160px;
        object-fit: cover;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

    .grow-card h3 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 8px;
        color: #fff;
    }

    .grow-card p {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.65);
        margin: 0;
    }

    .grow-slider-arrows {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-top: 20px;
    }

    .grow-arrow {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--pp-border);
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--pp-ink);
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .grow-arrow:hover {
        background: var(--pp-green-light);
        border-color: var(--pp-green);
    }

    @media (max-width: 700px) {
        .grow-card {
            flex: 0 0 85%;
            min-width: unset;
        }
    }

    /* ---------- Showcase rows ---------- */
    .pp-showcase-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
        margin-bottom: 64px;
    }

    .pp-showcase-row:last-child {
        margin-bottom: 0;
    }

    .pp-showcase-row.pp-reverse .pp-showcase-media {
        order: 2;
    }

    .pp-showcase-row.pp-reverse .pp-showcase-copy {
        order: 1;
    }

    .pp-showcase-media img {
        width: 100%;
        border-radius: var(--pp-radius);
        box-shadow: var(--pp-shadow);
        display: block;
    }

    .pp-showcase-copy h3 {
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 14px;
        color: var(--pp-ink);
    }

    .pp-showcase-copy p {
        font-size: 15px;
        line-height: 1.7;
        color: var(--pp-muted);
        margin: 0 0 14px;
    }

    @media (max-width: 900px) {

        .pp-showcase-copy {
            order: 1;
        }

        .pp-showcase-media {
            order: 2;
        }

        .pp-showcase-row {
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 40px;
        }
    }

    /* ---------- FAQ ---------- */
    .custom-faq-accordion {
        margin-top: 10px;
    }

    .faq-itemm {
        background: #fff;
        border: 1px solid var(--pp-border);
        border-radius: var(--pp-radius-sm);
        margin-bottom: 12px;
        overflow: hidden;
    }

    .faq-questionn {
        width: 100%;
        text-align: left;
        background: #fff;
        padding: 18px 20px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--pp-ink);
    }

    .faq-text {
        flex: 1;
        font-size: 15px !important;
        margin-bottom: 0;
    }

    .faq-arrow {
        display: inline-block;
        width: 9px;
        height: 9px;
        border-right: 2px solid var(--pp-green);
        border-bottom: 2px solid var(--pp-green);
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: 12px;
    }

    .faq-question.open .faq-arrow {
        transform: rotate(-135deg);
    }

    .faq-answerr {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.3s ease;
        padding: 0 20px;
        background: #fff;
        color: var(--pp-muted);
    }

    .faq-itemm p {
        font-size: 15px !important;
    }

    .faq-answerr.open {
        opacity: 1;
        padding: 0 20px 18px;
        border-top: 1px solid var(--pp-border);
        padding-top: 14px;
    }

    /* ---------- Who Can Join: sticky stacking cards ---------- */
    .pp-stack-section {
        padding: 20px 0 36px;
    }

    .stack-heading-row {
        margin: 0 auto 28px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
    }

    .stack-heading {
        text-align: left;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: -0.01em;
        color: var(--pp-ink);
        margin: 0;
        max-width: 480px;
    }

    .pp-stack-wrapper {
        position: relative;
        margin: 0 auto;
    }

    .stack-card {
        position: sticky;
        border-radius: 20px;
        padding: 24px;
        margin-bottom: 16px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        min-height: 345px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    }


    .stack-card:nth-child(1) {
        top: 20%;
        z-index: 1;
        background: linear-gradient(270deg, #ffcf94 0%, #ffab6b 32%, #ff7a3d 55%);
    }

    .stack-card:nth-child(2) {
        top: 22%;
        z-index: 2;
        background: linear-gradient(270deg, #9aa8ff 0%, #7c8cf5 32%, #5b6be0 55%);
    }

    .stack-card:nth-child(3) {
        top: 24%;
        z-index: 3;
        background: linear-gradient(270deg, #ff8ab0 0%, #ff5f96 32%, #ec2f7b 55%);
    }

    .stack-card:nth-child(4) {
        top: 26%;
        z-index: 4;
        background: linear-gradient(270deg, #8fe0c4 0%, #6bcfae 32%, #3fae8c 55%);
    }

    .stack-card:nth-child(5) {
        top: 28%;
        z-index: 5;
        background: linear-gradient(270deg, #cbb8f5 0%, #b79af0 32%, #9575e0 55%);
    }

    .stack-card:nth-child(6) {
        top: 30%;
        z-index: 6;
        background: linear-gradient(270deg, #f5dd94 0%, #f0cf6b 32%, #e0ab3f 55%);
    }

    .stack-card:nth-child(7) {
        top: 32%;
        z-index: 7;
        background: linear-gradient(270deg, #0b392a 0%, #134c3a 45%, #064e3b 100%);
    }

    .stack-card.stack-card--cta {
        justify-content: center;
        text-align: center;
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .stack-card.stack-card--cta.is-visible {
        opacity: 1;
        transform: scale(1);
    }

    .stack-card--cta .stack-card-text {
        flex: none;
        background: none;
        padding: 0;
        max-width: 460px;
        margin: 0 auto;
    }

    .stack-card--cta .stack-card-text h3 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .stack-card--cta .stack-card-btn {
        margin-top: 16px;
    }

    .stack-card-text {
        position: relative;
        z-index: 1;
        flex: 1.2;
        color: #fff;
        border-radius: 16px;
        padding: 18px 22px;
    }

    .stack-card-text h3 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 20px;
        color: #fff;

    }

    .stack-card-text p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        color: #fff !important;
        margin: 0 0 0px;

    }

    .stack-card-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        height: 38px;
        padding: 0 18px;
        background: #fff;
        color: #101827;
        font-size: 13px;
        font-weight: 700;
        border-radius: 999px;
        text-decoration: none;
        white-space: nowrap;
        transition: all 0.15s ease;
    }

    .stack-card-btn:hover {
        background: #f1f5f2;
        color: #101827;
    }

    .stack-card-btn .arrow-icon {
        flex-shrink: 0;
        transition: transform 0.2s ease;
    }

    .stack-card-btn:hover .arrow-icon {
        transform: translateX(3px);
    }

    .stack-card-media {
        position: relative;
        z-index: 1;
        flex: 0 0 38%;
        align-self: stretch;
        min-height: 300px;
        max-height: 300px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    }

    .stack-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    @media (min-width: 701px) and (max-width: 900px) {
        .stack-card {
            padding: 20px;
            gap: 16px;
        }

        .stack-card-media {
            min-height: 110px;
            max-height: 140px;
        }

    }

    @media (max-width: 700px) {
        .stack-card {
            flex-direction: column;
            text-align: center;
            padding: 20px;
            min-height: unset;
        }

        .stack-card-media {
            flex-basis: auto;
            width: 100%;
            border-radius: 16px;
            order: -1;
        }

        .stack-card--cta {
            min-height: 85vh;
            padding: 32px 24px;
        }

        .stack-card--cta .stack-card-text h3 {
            font-size: 26px;
        }
    }

    /* ---------- Final CTA ---------- */
    .pp-cta {
        background: linear-gradient(135deg, var(--pp-green) 0%, #024a2e 100%);
        border-radius: var(--pp-radius);
        padding: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        position: relative;
        overflow: hidden;
    }

    .pp-cta::before,
    .pp-cta::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.07);
        pointer-events: none;
    }

    .pp-cta::before {
        width: 260px;
        height: 260px;
        top: -130px;
        left: 15%;
    }

    .pp-cta::after {
        width: 220px;
        height: 220px;
        bottom: -120px;
        right: 8%;
    }

    .pp-cta-copy {
        position: relative;
        z-index: 1;
        text-align: left;
    }

    .pp-cta h2 {
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        line-height: 1.3;
        margin: 0 0 8px;
    }

    .pp-cta p {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 15px !important;
        margin: 0;
    }

    .pp-cta .pp-hero-actions {
        position: relative;
        z-index: 1;
        flex-shrink: 0;
    }

    @media (max-width: 700px) {
        .pp-cta {
            flex-direction: column;
            align-items: flex-start;
            padding: 36px 28px;
            gap: 24px;
        }

        .pp-cta .pp-hero-actions {
            width: 100%;
        }
    }

    .pp-cta .pp-btn-outline {
        background: transparent;
        color: #fff;
        border-color: rgba(255, 255, 255, 0.4);
    }

    .pp-cta .pp-btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
        color: #fff;
    }

    .pp-cta .pp-btn-primary {
        background: #fff;
        color: var(--pp-green);
    }

    .pp-cta .pp-btn-primary:hover {
        background: #f1f5f2;
        transform: translateY(-1px);
    }
