/* ═══════════════════════════════════════════════════════════════
   Remote Hive — PPC Services Section
   File: assets/css/ppcservices.css
   Version: 5.2.0
   BG: White + 3D Spinning Pyramid (CSS-only)
   Heading hierarchy: h2 section title, h3 card titles
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
    --rh-ppcservices-fd: 'Syne', sans-serif;
    --rh-ppcservices-fb: 'DM Sans', sans-serif;
    --rh-ppcservices-rad: 16px;
    --rh-ppcservices-ease: cubic-bezier(.22, 1, .36, 1);
    --rh-ppcservices-sea-deep: #0E7C6B;
    --rh-ppcservices-sea-mid: #12A085;
    --rh-ppcservices-sea-light: #14B89A;
    --rh-ppcservices-blue-deep: #0077B6;
    --rh-ppcservices-blue-mid: #0096C7;
    --rh-ppcservices-blue-light: #00B4D8;
    --rh-ppcservices-aqua: #48CAE4;
}

/* ═══ SECTION ═══ */
.rh-ppcservices {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
    padding: 100px 0;
}

/* ═══════════════════════════════════════
   3D SPINNING PYRAMID — Background Deco
   ═══════════════════════════════════════ */
.rh-ppcservices-pyramid-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2800px;
    height: 2800px;
    z-index: 0;
    pointer-events: none;
    opacity: .10;
}

.rh-ppcservices-pyramid {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    transform-style: preserve-3d;
    transform: rotateX(-20deg);
}

.rh-ppcservices-pyramid__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rh-ppcservices-pyramidSpin 4s linear infinite;
}

@keyframes rh-ppcservices-pyramidSpin {
    0%   { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.rh-ppcservices-pyramid__side {
    width: 880px;
    height: 880px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform-origin: center top;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.rh-ppcservices-pyramid__side--1 {
    transform: rotateZ(-30deg) rotateY(90deg);
    background: conic-gradient(#2BDEAC, #F028FD, #D8CCE6, #2F2585);
}
.rh-ppcservices-pyramid__side--2 {
    transform: rotateZ(30deg) rotateY(90deg);
    background: conic-gradient(#2F2585, #D8CCE6, #F028FD, #2BDEAC);
}
.rh-ppcservices-pyramid__side--3 {
    transform: rotateX(30deg);
    background: conic-gradient(#2F2585, #D8CCE6, #F028FD, #2BDEAC);
}
.rh-ppcservices-pyramid__side--4 {
    transform: rotateX(-30deg);
    background: conic-gradient(#2BDEAC, #F028FD, #D8CCE6, #2F2585);
}

.rh-ppcservices-pyramid__shadow {
    width: 720px;
    height: 720px;
    background: #8B5AD5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transform: rotateX(90deg) translateZ(-480px);
    filter: blur(120px);
    border-radius: 50%;
}

/* ═══ CONTAINER ═══ */
.rh-ppcservices-wrap {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ═══ HEADER ═══ */
.rh-ppcservices-hdr {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s var(--rh-ppcservices-ease), transform .8s var(--rh-ppcservices-ease);
}
.rh-ppcservices-hdr.vis {
    opacity: 1;
    transform: translateY(0);
}
.rh-ppcservices-hdr__title {
    font-family: var(--rh-ppcservices-fd);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0a0a0f;
    margin: 0 0 20px;
    letter-spacing: -.03em;
}
.rh-ppcservices-hdr__accent {
    background: linear-gradient(135deg, var(--rh-ppcservices-sea-deep), var(--rh-ppcservices-blue-mid), var(--rh-ppcservices-aqua));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.rh-ppcservices-hdr__sub {
    font-family: var(--rh-ppcservices-fb);
    font-size: 1.05rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══ GRID LAYOUTS ═══ */
.rh-ppcservices-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
    padding: 6px;
    margin-left: -6px;
    margin-right: -6px;
}
.rh-ppcservices-grid--hero {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.rh-ppcservices-grid--hero .rh-ppcservices-card:first-child {
    grid-row: 1 / 3;
}
.rh-ppcservices-grid--3col {
    grid-template-columns: repeat(3, 1fr);
}
.rh-ppcservices-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}
.rh-ppcservices-grid--1col {
    grid-template-columns: 1fr;
}

/* ═══ CARD BASE ═══ */
.rh-ppcservices-card {
    position: relative;
    border-radius: var(--rh-ppcservices-rad);
    padding: 30px 32px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .5s var(--rh-ppcservices-ease), box-shadow .5s var(--rh-ppcservices-ease);
    opacity: 0;
    transform: translateY(40px);
}
.rh-ppcservices-card.vis {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s var(--rh-ppcservices-ease), transform .6s var(--rh-ppcservices-ease), box-shadow .5s var(--rh-ppcservices-ease);
}
.rh-ppcservices-card:hover {
    transform: translateY(-6px) !important;
}

/* Hero tall card */
.rh-ppcservices-grid--hero .rh-ppcservices-card:first-child {
    padding: 38px;
    min-height: 100%;
}
.rh-ppcservices-grid--hero .rh-ppcservices-card:first-child .rh-ppcservices-card__title {
    font-size: clamp(1.35rem, 2.2vw, 1.7rem);
}
.rh-ppcservices-grid--hero .rh-ppcservices-card:first-child .rh-ppcservices-card__desc {
    -webkit-line-clamp: unset;
}

/* Full-width card */
.rh-ppcservices-grid--1col .rh-ppcservices-card {
    min-height: 280px;
    padding: 40px 44px;
}
.rh-ppcservices-grid--1col .rh-ppcservices-card .rh-ppcservices-card__ct {
    max-width: 55%;
}
.rh-ppcservices-grid--1col .rh-ppcservices-card .rh-ppcservices-card__bgi {
    width: clamp(130px, 16vw, 200px);
    height: clamp(130px, 16vw, 200px);
    bottom: -15px;
    right: -5px;
    opacity: .08;
}
.rh-ppcservices-grid--1col .rh-ppcservices-card:hover .rh-ppcservices-card__bgi {
    opacity: .12;
}

/* ═══ BG ICON (decorative) ═══ */
.rh-ppcservices-card__bgi {
    position: absolute;
    bottom: -10px;
    right: -5px;
    width: clamp(90px, 12vw, 150px);
    height: clamp(90px, 12vw, 150px);
    pointer-events: none;
    z-index: 0;
    opacity: .08;
    transition: opacity .4s ease, transform .5s var(--rh-ppcservices-ease);
}
.rh-ppcservices-card:hover .rh-ppcservices-card__bgi {
    opacity: .12;
    transform: scale(1.04) translate(2px, -2px);
}
.rh-ppcservices-grid--hero .rh-ppcservices-card:first-child .rh-ppcservices-card__bgi {
    width: clamp(120px, 16vw, 200px);
    height: clamp(120px, 16vw, 200px);
    bottom: -18px;
    right: -10px;
}

/* BG icon colors per variant */
.rh-ppcservices-card--lt .rh-ppcservices-card__bgi { color: rgba(0,0,0,.9); }
.rh-ppcservices-card--sea .rh-ppcservices-card__bgi,
.rh-ppcservices-card--dk .rh-ppcservices-card__bgi,
.rh-ppcservices-card--teal .rh-ppcservices-card__bgi,
.rh-ppcservices-card--ocean .rh-ppcservices-card__bgi,
.rh-ppcservices-card--mint .rh-ppcservices-card__bgi,
.rh-ppcservices-card--navy .rh-ppcservices-card__bgi,
.rh-ppcservices-card--coral .rh-ppcservices-card__bgi,
.rh-ppcservices-card--slate .rh-ppcservices-card__bgi { color: rgba(255,255,255,.9); }
.rh-ppcservices-card--sand .rh-ppcservices-card__bgi { color: rgba(0,0,0,.7); }

/* ═══ CARD VARIANTS ═══ */
.rh-ppcservices-card--sea   { background: linear-gradient(135deg, #0E7C6B, #12A085); color: #fff; }
.rh-ppcservices-card--sea:hover   { box-shadow: 0 16px 50px rgba(14,124,107,.35); }

.rh-ppcservices-card--lt    { background: #f0f7f6; color: #0a0a0f; }
.rh-ppcservices-card--lt:hover    { box-shadow: 0 16px 50px rgba(0,0,0,.08); }

.rh-ppcservices-card--ocean { background: linear-gradient(135deg, #0077B6, #0096C7); color: #fff; }
.rh-ppcservices-card--ocean:hover { box-shadow: 0 16px 50px rgba(0,119,182,.35); }

.rh-ppcservices-card--dk    { background: #111827; color: #fff; }
.rh-ppcservices-card--dk:hover    { box-shadow: 0 16px 50px rgba(0,0,0,.35); }

.rh-ppcservices-card--teal  { background: linear-gradient(135deg, #0D9488, #14B89A); color: #fff; }
.rh-ppcservices-card--teal:hover  { box-shadow: 0 16px 50px rgba(13,148,136,.3); }

.rh-ppcservices-card--sand  { background: #F5E6D0; color: #1a1a1f; }
.rh-ppcservices-card--sand:hover  { box-shadow: 0 16px 50px rgba(245,230,208,.4); }

.rh-ppcservices-card--mint  { background: linear-gradient(135deg, #059669, #10B981); color: #fff; }
.rh-ppcservices-card--mint:hover  { box-shadow: 0 16px 50px rgba(5,150,105,.3); }

.rh-ppcservices-card--navy  { background: linear-gradient(135deg, #1E3A5F, #2563EB); color: #fff; }
.rh-ppcservices-card--navy:hover  { box-shadow: 0 16px 50px rgba(30,58,95,.35); }

.rh-ppcservices-card--coral { background: linear-gradient(135deg, #0891B2, #06B6D4); color: #fff; }
.rh-ppcservices-card--coral:hover { box-shadow: 0 16px 50px rgba(8,145,178,.3); }

.rh-ppcservices-card--slate { background: #1E293B; color: #fff; }
.rh-ppcservices-card--slate:hover { box-shadow: 0 16px 50px rgba(30,41,59,.35); }

/* ═══ LOGO ICON ═══ */
.rh-ppcservices-card__logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s var(--rh-ppcservices-ease);
}
.rh-ppcservices-card:hover .rh-ppcservices-card__logo {
    transform: scale(1.08) translateY(-2px);
}
.rh-ppcservices-card__logo svg {
    width: 28px;
    height: 28px;
}
.rh-ppcservices-grid--hero .rh-ppcservices-card:first-child .rh-ppcservices-card__logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
}
.rh-ppcservices-grid--hero .rh-ppcservices-card:first-child .rh-ppcservices-card__logo svg {
    width: 32px;
    height: 32px;
}

/* ═══ CONTENT ═══ */
.rh-ppcservices-card__ct {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.rh-ppcservices-card__title {
    font-family: var(--rh-ppcservices-fd);
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -.02em;
}
.rh-ppcservices-card__desc {
    font-family: var(--rh-ppcservices-fb);
    font-size: .88rem;
    font-weight: 500;
    line-height: 1.65;
    margin: 0 0 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tag / badge */
.rh-ppcservices-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--rh-ppcservices-fb);
    font-size: .7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
    width: fit-content;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Tag colors per variant */
.rh-ppcservices-card--sea .rh-ppcservices-card__tag,
.rh-ppcservices-card--teal .rh-ppcservices-card__tag,
.rh-ppcservices-card--mint .rh-ppcservices-card__tag { background: rgba(255,255,255,.2); color: #fff; }
.rh-ppcservices-card--ocean .rh-ppcservices-card__tag,
.rh-ppcservices-card--navy .rh-ppcservices-card__tag,
.rh-ppcservices-card--coral .rh-ppcservices-card__tag { background: rgba(255,255,255,.2); color: #fff; }
.rh-ppcservices-card--dk .rh-ppcservices-card__tag,
.rh-ppcservices-card--slate .rh-ppcservices-card__tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.rh-ppcservices-card--lt .rh-ppcservices-card__tag { background: rgba(14,124,107,.1); color: var(--rh-ppcservices-sea-deep); }
.rh-ppcservices-card--sand .rh-ppcservices-card__tag { background: rgba(0,0,0,.08); color: #1a1a1f; }

/* Text colors per variant */
.rh-ppcservices-card--lt .rh-ppcservices-card__title { color: #0a0a0f; }
.rh-ppcservices-card--lt .rh-ppcservices-card__desc  { color: #4a5568; }

.rh-ppcservices-card--sea .rh-ppcservices-card__title,
.rh-ppcservices-card--ocean .rh-ppcservices-card__title,
.rh-ppcservices-card--dk .rh-ppcservices-card__title,
.rh-ppcservices-card--teal .rh-ppcservices-card__title,
.rh-ppcservices-card--mint .rh-ppcservices-card__title,
.rh-ppcservices-card--navy .rh-ppcservices-card__title,
.rh-ppcservices-card--coral .rh-ppcservices-card__title,
.rh-ppcservices-card--slate .rh-ppcservices-card__title { color: #fff; }

.rh-ppcservices-card--sea .rh-ppcservices-card__desc,
.rh-ppcservices-card--ocean .rh-ppcservices-card__desc,
.rh-ppcservices-card--teal .rh-ppcservices-card__desc,
.rh-ppcservices-card--mint .rh-ppcservices-card__desc,
.rh-ppcservices-card--navy .rh-ppcservices-card__desc,
.rh-ppcservices-card--coral .rh-ppcservices-card__desc { color: rgba(255,255,255,.85); }

.rh-ppcservices-card--dk .rh-ppcservices-card__desc,
.rh-ppcservices-card--slate .rh-ppcservices-card__desc { color: rgba(255,255,255,.72); }

.rh-ppcservices-card--sand .rh-ppcservices-card__title { color: #1a1a1f; }
.rh-ppcservices-card--sand .rh-ppcservices-card__desc  { color: rgba(0,0,0,.68); }

/* ═══ CTA BUTTON ═══ */
.rh-ppcservices-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 10px 22px;
    font-family: var(--rh-ppcservices-fb);
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s var(--rh-ppcservices-ease);
    width: fit-content;
    border-radius: 50px;
    border: 2px solid transparent;
    z-index: 2;
    position: relative;
}
.rh-ppcservices-card__btn svg {
    width: 15px;
    height: 15px;
    transition: transform .3s var(--rh-ppcservices-ease);
}
.rh-ppcservices-card__btn:hover svg {
    transform: translateX(4px);
}

/* Button colors per variant */
.rh-ppcservices-card--lt .rh-ppcservices-card__btn    { color: #0a0a0f; border-color: #0a0a0f; }
.rh-ppcservices-card--lt .rh-ppcservices-card__btn:hover { color: #fff; background: #0a0a0f; }

.rh-ppcservices-card--sea .rh-ppcservices-card__btn,
.rh-ppcservices-card--ocean .rh-ppcservices-card__btn,
.rh-ppcservices-card--dk .rh-ppcservices-card__btn,
.rh-ppcservices-card--teal .rh-ppcservices-card__btn,
.rh-ppcservices-card--mint .rh-ppcservices-card__btn,
.rh-ppcservices-card--navy .rh-ppcservices-card__btn,
.rh-ppcservices-card--coral .rh-ppcservices-card__btn,
.rh-ppcservices-card--slate .rh-ppcservices-card__btn { color: #fff; border-color: #fff; }

.rh-ppcservices-card--sea .rh-ppcservices-card__btn:hover   { background: #fff; color: var(--rh-ppcservices-sea-deep); }
.rh-ppcservices-card--ocean .rh-ppcservices-card__btn:hover { background: #fff; color: var(--rh-ppcservices-blue-deep); }
.rh-ppcservices-card--dk .rh-ppcservices-card__btn:hover    { background: #fff; color: #111827; }
.rh-ppcservices-card--teal .rh-ppcservices-card__btn:hover  { background: #fff; color: #0D9488; }
.rh-ppcservices-card--mint .rh-ppcservices-card__btn:hover  { background: #fff; color: #059669; }
.rh-ppcservices-card--navy .rh-ppcservices-card__btn:hover  { background: #fff; color: #1E3A5F; }
.rh-ppcservices-card--coral .rh-ppcservices-card__btn:hover { background: #fff; color: #0891B2; }
.rh-ppcservices-card--slate .rh-ppcservices-card__btn:hover { background: #fff; color: #1E293B; }

.rh-ppcservices-card--sand .rh-ppcservices-card__btn { color: #1a1a1f; border-color: #1a1a1f; }
.rh-ppcservices-card--sand .rh-ppcservices-card__btn:hover { color: #fff; background: #1a1a1f; }

/* ═══ STATS ROW ═══ */
.rh-ppcservices-card__stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.15);
    flex-wrap: wrap;
}
.rh-ppcservices-card--lt .rh-ppcservices-card__stats { border-top-color: rgba(0,0,0,.08); }
.rh-ppcservices-card--sand .rh-ppcservices-card__stats { border-top-color: rgba(0,0,0,.1); }

.rh-ppcservices-stat__val {
    font-family: var(--rh-ppcservices-fd);
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
}
.rh-ppcservices-stat__lab {
    font-size: .7rem;
    font-weight: 500;
    opacity: .7;
    margin-top: 3px;
}

/* ═══ HIDDEN SECTION ═══ */
.rh-ppcservices-hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .6s var(--rh-ppcservices-ease), opacity .4s var(--rh-ppcservices-ease), margin .4s var(--rh-ppcservices-ease);
    margin-top: 0;
}
.rh-ppcservices-hidden--on {
    max-height: 6000px;
    opacity: 1;
    margin-top: 20px;
    overflow: visible;
}
.rh-ppcservices-hidden--on .rh-ppcservices-grid:nth-child(1) { animation: rh-ppcservices-fu .5s var(--rh-ppcservices-ease) .1s both; }
.rh-ppcservices-hidden--on .rh-ppcservices-grid:nth-child(2) { animation: rh-ppcservices-fu .5s var(--rh-ppcservices-ease) .15s both; }
.rh-ppcservices-hidden--on .rh-ppcservices-grid:nth-child(3) { animation: rh-ppcservices-fu .5s var(--rh-ppcservices-ease) .2s both; }
.rh-ppcservices-hidden--on .rh-ppcservices-grid:nth-child(4) { animation: rh-ppcservices-fu .5s var(--rh-ppcservices-ease) .25s both; }

@keyframes rh-ppcservices-fu {
    from { opacity: 0; transform: translateY(25px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══ TOGGLE BUTTON ═══ */
.rh-ppcservices-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding-bottom: 20px;
}
.rh-ppcservices-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 34px;
    font-family: var(--rh-ppcservices-fd);
    font-size: .95rem;
    font-weight: 600;
    color: var(--rh-ppcservices-blue-deep);
    background: #fff;
    border: 2px solid var(--rh-ppcservices-blue-deep);
    border-radius: 50px;
    cursor: pointer;
    transition: all .4s var(--rh-ppcservices-ease);
    letter-spacing: .02em;
    box-shadow: 0 4px 15px rgba(0,119,182,.12);
}
.rh-ppcservices-toggle:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--rh-ppcservices-sea-deep), var(--rh-ppcservices-blue-mid), var(--rh-ppcservices-aqua));
    border-color: var(--rh-ppcservices-blue-mid);
    box-shadow: 0 8px 25px rgba(0,119,182,.3);
    transform: translateY(-2px);
}
.rh-ppcservices-toggle:hover .rh-ppcservices-toggle__icon { stroke: #fff; }
.rh-ppcservices-toggle:active { transform: translateY(0); }
.rh-ppcservices-toggle:focus { outline: none; }

.rh-ppcservices-toggle--on {
    color: #fff;
    background: linear-gradient(135deg, var(--rh-ppcservices-sea-deep), var(--rh-ppcservices-blue-mid), var(--rh-ppcservices-aqua));
    border-color: var(--rh-ppcservices-blue-mid);
}
.rh-ppcservices-toggle--on:hover {
    background: #fff;
    color: var(--rh-ppcservices-sea-deep);
    border-color: var(--rh-ppcservices-sea-deep);
}
.rh-ppcservices-toggle--on:hover .rh-ppcservices-toggle__icon { stroke: var(--rh-ppcservices-sea-deep); }
.rh-ppcservices-toggle--on .rh-ppcservices-toggle__icon { stroke: #fff; }

.rh-ppcservices-toggle__icon {
    width: 20px;
    height: 20px;
    transition: transform .4s var(--rh-ppcservices-ease), stroke .4s ease;
    stroke: currentColor;
}
.rh-ppcservices-toggle--on .rh-ppcservices-toggle__icon {
    transform: rotate(180deg);
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1100px)
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .rh-ppcservices-grid--hero {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .rh-ppcservices-grid--hero .rh-ppcservices-card:first-child {
        grid-row: 1 / 2;
        grid-column: span 2;
    }
    .rh-ppcservices-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .rh-ppcservices-grid--3col .rh-ppcservices-card:last-child {
        grid-column: span 2;
    }
    .rh-ppcservices-grid--2col {
        grid-template-columns: 1fr 1fr;
    }
    .rh-ppcservices-card__bgi {
        width: clamp(80px, 10vw, 130px);
        height: clamp(80px, 10vw, 130px);
    }
    .rh-ppcservices-grid--1col .rh-ppcservices-card .rh-ppcservices-card__ct {
        max-width: 65%;
    }
    .rh-ppcservices-grid--1col .rh-ppcservices-card .rh-ppcservices-card__bgi {
        width: clamp(100px, 13vw, 160px);
        height: clamp(100px, 13vw, 160px);
    }

    /* Pyramid — tablet */
    .rh-ppcservices-pyramid-wrap {
        width: 2000px;
        height: 2000px;
    }
    .rh-ppcservices-pyramid__side {
        width: 640px;
        height: 640px;
    }
    .rh-ppcservices-pyramid__shadow {
        width: 520px;
        height: 520px;
        transform: rotateX(90deg) translateZ(-360px);
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .rh-ppcservices {
        padding: 60px 0 80px;
    }
    .rh-ppcservices-wrap {
        padding: 0 20px;
    }
    .rh-ppcservices-hdr {
        margin-bottom: 44px;
    }

    /* Pyramid — mobile (smaller, more subtle) */
    .rh-ppcservices-pyramid-wrap {
        width: 1400px;
        height: 1400px;
        opacity: .06;
    }
    .rh-ppcservices-pyramid__side {
        width: 440px;
        height: 440px;
    }
    .rh-ppcservices-pyramid__shadow {
        width: 360px;
        height: 360px;
        transform: rotateX(90deg) translateZ(-240px);
        filter: blur(80px);
    }

    /* All grids single column */
    .rh-ppcservices-grid--hero,
    .rh-ppcservices-grid--3col,
    .rh-ppcservices-grid--2col,
    .rh-ppcservices-grid--1col {
        grid-template-columns: 1fr;
    }
    .rh-ppcservices-grid--hero .rh-ppcservices-card:first-child {
        grid-column: span 1;
        grid-row: auto;
    }
    .rh-ppcservices-grid--3col .rh-ppcservices-card:last-child {
        grid-column: span 1;
    }
    .rh-ppcservices-grid {
        gap: 14px;
        margin-bottom: 14px;
        padding: 4px;
        margin-left: -4px;
        margin-right: -4px;
    }
    .rh-ppcservices-card {
        min-height: auto;
        padding: 24px;
        transform: translateY(40px) !important;
    }
    .rh-ppcservices-card.vis {
        transform: translateY(0) !important;
    }
    .rh-ppcservices-card:hover {
        transform: translateY(0) !important;
    }

    .rh-ppcservices-card__logo {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .rh-ppcservices-card__logo svg {
        width: 24px;
        height: 24px;
    }
    .rh-ppcservices-grid--hero .rh-ppcservices-card:first-child .rh-ppcservices-card__logo {
        width: 44px;
        height: 44px;
    }

    .rh-ppcservices-card__bgi {
        width: 120px;
        height: 120px;
        opacity: .07;
    }
    .rh-ppcservices-card:hover .rh-ppcservices-card__bgi {
        transform: none;
        opacity: .07;
    }

    .rh-ppcservices-card__desc {
        font-size: .82rem;
        -webkit-line-clamp: 2;
        margin-bottom: 12px;
    }
    .rh-ppcservices-card__title {
        font-size: 1rem;
        margin-bottom: 5px;
    }
    .rh-ppcservices-card__btn {
        padding: 9px 18px;
        font-size: .8rem;
    }

    .rh-ppcservices-toggle {
        padding: 13px 28px;
        font-size: .9rem;
    }
    .rh-ppcservices-toggle-wrap {
        margin-top: 36px;
        padding-bottom: 28px;
    }
    .rh-ppcservices-hidden--on {
        margin-top: 14px;
    }

    .rh-ppcservices-grid--1col .rh-ppcservices-card {
        min-height: auto;
        padding: 24px;
    }
    .rh-ppcservices-grid--1col .rh-ppcservices-card .rh-ppcservices-card__ct {
        max-width: 100%;
    }
    .rh-ppcservices-grid--1col .rh-ppcservices-card .rh-ppcservices-card__bgi {
        width: 120px;
        height: 120px;
        opacity: .07;
    }

    .rh-ppcservices-card__stats {
        gap: 16px;
    }
    .rh-ppcservices-stat__val {
        font-size: 1.1rem;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Small mobile (≤ 480px)
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
    .rh-ppcservices-card {
        padding: 18px;
    }
    .rh-ppcservices-card__title {
        font-size: .95rem;
    }
    .rh-ppcservices-card__desc {
        font-size: .78rem;
    }
    .rh-ppcservices-card__logo {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    .rh-ppcservices-card__logo svg {
        width: 20px;
        height: 20px;
    }
    .rh-ppcservices-card__btn {
        padding: 8px 14px;
        font-size: .76rem;
        gap: 6px;
    }
    .rh-ppcservices-card__btn svg {
        width: 13px;
        height: 13px;
    }
    .rh-ppcservices-toggle {
        padding: 11px 22px;
        font-size: .85rem;
    }
    .rh-ppcservices-card__bgi {
        width: 95px;
        height: 95px;
        opacity: .06;
    }

    /* Pyramid — small mobile */
    .rh-ppcservices-pyramid-wrap {
        width: 1040px;
        height: 1040px;
    }
    .rh-ppcservices-pyramid__side {
        width: 320px;
        height: 320px;
    }
    .rh-ppcservices-pyramid__shadow {
        width: 260px;
        height: 260px;
        transform: rotateX(90deg) translateZ(-180px);
        filter: blur(60px);
    }
}