
        /* ── Design tokens ── */
        :root {
            --gold:      #C8952A;
            --gold-lt:   #F5D98B;
            --earth:     #3B2F1E;
            --leaf:      #2E6B3E;
            --leaf-lt:   #E8F5EC;
            --slate:     #334155;
            --mist:      #F7F5F0;
            --white:     #FFFFFF;
        }

        /* ── How We Work ── */
        .rmg-how-work { background: var(--white); }
        .rmg-how-work .how-work { border-radius: 6px; overflow: hidden; }
        .rmg-how-work h2 span { color: var(--leaf); }
        .rmg-how-work .text-area p { color: var(--slate); line-height: 1.75; }

        /* ── Section heading badge ── */
        .rmg-badge {
            display: inline-block;
            background: var(--gold);
            color: var(--earth);
            font-weight: 700;
            font-size: 15px;
            letter-spacing: .5px;
            padding: 10px 28px;
            border-radius: 4px;
            margin: 16px auto 24px;
        }

        /* ── Sub-title note ── */
        .rmg-sub {
            display: block;
            max-width: 720px;
            margin: 0 auto 8px;
            color: var(--slate);
            font-size: 15px;
            line-height: 1.65;
        }
        .rmg-sub strong { border-bottom: 2px solid var(--gold); }

        /* ── Service cards ── */
        .srvc-item {
            background: var(--white);
            border: 1px solid #E2DED7;
            border-radius: 8px;
            padding: 24px 16px 20px;
            margin-bottom: 24px;
            text-align: center;
            transition: box-shadow .2s, transform .2s;
        }
        .srvc-item:hover {
            box-shadow: 0 6px 22px rgba(0,0,0,.10);
            transform: translateY(-3px);
        }
        .srvc-item .srvc-icon { margin-bottom: 14px; }
        .srvc-item .srvc-icon img { width: 64px; height: 64px; object-fit: contain; }
        .srvc-item .srvc-icon .flaticon-wrapper {
            width: 64px; height: 64px;
            background: var(--leaf-lt);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto;
            font-size: 28px; color: var(--leaf);
        }
        .srvc-item .inner-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--earth);
            margin-top: 4px;
            line-height: 1.4;
        }

        /* ── Process steps ── */
        .rmg-step {
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.25);
            border-radius: 8px;
            padding: 28px -1px;
            margin-bottom: 20px;
            color: var(--white);
        }
        .rmg-step .step-num {
            display: inline-block;
            width: 40px; height: 40px;
            background: var(--gold);
            color: var(--earth);
            font-weight: 800;
            font-size: 17px;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-bottom: 12px;
        }
        .rmg-step h4 { color: var(--white); font-weight: 700; margin-bottom: 8px; }
        .rmg-step p  { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.6; margin: 0; }

        /* ── Why Partner ── */
        .rmg-why-list { list-style: none; padding: 0; margin: 0; }
        .rmg-why-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid #EDE8E0;
            color: var(--slate);
            font-size: 15px;
            line-height: 1.55;
        }
        .rmg-why-list li:last-child { border-bottom: none; }
        .rmg-why-list li .rmg-tick {
            flex-shrink: 0;
            width: 24px; height: 24px;
            background: var(--leaf);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #fff;
            font-size: 13px;
            margin-top: 1px;
        }

        /* ── Markets strip ── */
        .rmg-markets { background: var(--earth); padding: 10px 0; }
        .rmg-markets .market-pill {
            display: inline-block;
            background: rgba(255,255,255,.10);
            border: 1px solid rgba(255,255,255,.20);
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            padding: 8px 22px;
            border-radius: 30px;
            margin: 6px 4px;
            letter-spacing: .4px;
        }
        .rmg-markets h3 { color: var(--gold-lt); font-weight: 700; margin-bottom: 20px; }

        /* ── CTA band ── */
        .rmg-cta { background: var(--leaf); }
        .rmg-cta h4 { color: var(--white); font-weight: 700; font-size: 20px; }
        .rmg-cta .btn { background: var(--gold); color: var(--earth); font-weight: 700; border: none; padding: 12px 32px; }
        .rmg-cta .btn:hover { background: var(--gold-lt); }

        /* ── Strengths grid ── */
        .rmg-strength-item {
            text-align: center;
            padding: 20px 12px;
        }
        .rmg-strength-item .s-icon {
            font-size: 30px;
            color: var(--leaf);
            margin-bottom: 10px;
        }
        .rmg-strength-item h5 { font-weight: 700; color: var(--earth); font-size: 14px; margin: 0; }

        /* ── Utility ── */
        .bg-mist { background: var(--mist); }
        .section-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--leaf);
            margin-bottom: 6px;
        }
        .title span { color: var(--leaf); }
