/* ==========================================================
   PARKER PRODUCTIVITY — WRAPPED HERO
========================================================== */

/* Break the Custom HTML block out of Stow's narrow content column */
.wp-block-html:has(.pp-hero-shell) {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
}

/* Full-width outer area */
.pp-hero-shell {
    width: 100%;
    padding: 20px 24px 34px;
    background: #ffffff;
    box-sizing: border-box;
}

/* Centered hero image */
.pp-hero {
    position: relative;

    width: min(100%, 1420px);
    max-width: 1420px;

    aspect-ratio: 3 / 2;

    margin: 0 auto !important;
    padding: 0 !important;

    background-image: url("https://www.dropbox.com/scl/fi/njzp5fhj0edg400q53k3z/HeroImage.png?rlkey=h68vqkp2s2wi2yoxr4qd45oax&raw=1");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 16px 42px rgba(48, 27, 51, 0.09);
}

/* Remove any old HTML overlay content */
.pp-hero-content,
.pp-hero-overlay,
.pp-hero h1,
.pp-hero p,
.pp-hero .pp-button {
    display: none !important;
}

/* Mobile */
@media (max-width: 782px) {

    .pp-hero-shell {
        padding: 14px 12px 24px;
    }

    .pp-hero {
        width: 100%;
        max-width: none;

        aspect-ratio: auto;
        min-height: 560px;

        background-position: center center;

        border-radius: 10px;
    }

}


/* ==========================================================
   PARKER PRODUCTIVITY — SERVICES
========================================================== */

.pp-services {
    width: 100%;
    padding: 88px 28px 100px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbf8fc 100%
        );
    box-sizing: border-box;
}

.pp-section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.pp-eyebrow {
    margin: 0 0 10px;
    color: #276184;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pp-section-heading h2 {
    margin: 0;
    color: #5b2363;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;
    font-weight: 500;
}

.pp-heading-line {
    display: block;
    width: 54px;
    height: 2px;
    margin: 22px auto 0;
    background: #b78ebd;
}

.pp-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: min(100%, 1320px);
    margin: 0 auto;
}

.pp-service-card {
    padding: 38px 34px 34px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(91,35,99,0.10);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(68,38,71,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pp-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #5b2363;
    color: #ffffff;
    font-size: 25px;
    line-height: 1;
}

.pp-service-card h3 {
    margin: 0 0 20px;
    padding-bottom: 16px;
    color: #2f2731;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
    border-bottom: 1px solid rgba(91,35,99,0.18);
}

.pp-service-card ul {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.pp-service-card li {
    position: relative;
    margin: 0 0 11px;
    padding-left: 22px;
    color: #5d5660;
    font-size: 16px;
    line-height: 1.5;
}

.pp-service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #623368;
    font-weight: 700;
}

.pp-service-card a {
    color: #623368;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.pp-service-card a:hover {
    color: #276184;
}

.pp-service-card a span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.pp-service-card a:hover span {
    transform: translateX(4px);
}

@media (max-width: 900px) {

    .pp-services {
        padding: 68px 20px 76px;
    }

    .pp-service-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

}

@media (max-width: 600px) {

    .pp-services {
        padding: 56px 14px 64px;
    }

    .pp-service-card {
        padding: 30px 24px 28px;
    }

}




/* ==========================================================
   HOW IT WORKS
========================================================== */

.pp-process{

    padding:90px 28px;

    background:#ffffff;

}

.pp-process-intro{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.pp-process-copy{

    font-size:20px;

    line-height:1.8;

    color:#666;

}

.pp-process-grid{

    width:min(1320px,100%);

    margin:0 auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:34px;

}

.pp-process-grid article{

    background:white;

    border-radius:18px;

    padding:42px;

    box-shadow:0 16px 40px rgba(0,0,0,.07);

    border:1px solid rgba(98,51,104,.08);

}

.pp-step-number{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#623368;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    font-size:20px;

    margin-bottom:24px;

}

.pp-process-grid h3{

    margin-bottom:18px;

    color:#623368;

    font-size:28px;

}

.pp-process-grid p{

    color:#666;

    line-height:1.8;

}

@media(max-width:900px){

.pp-process-grid{

grid-template-columns:1fr;

}

}


/* ==========================================================
   TESTIMONIAL + FREEDOM
========================================================== */

.pp-proof {
    width: 100%;
    padding: 96px 28px;
    background:
        linear-gradient(
            135deg,
            #fbf8fc 0%,
            #ffffff 55%,
            #f8f3f9 100%
        );
    box-sizing: border-box;
}

.pp-proof-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    width: min(100%, 1320px);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(98, 51, 104, 0.10);
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(60, 35, 64, 0.08);
    overflow: hidden;
}

.pp-testimonial,
.pp-freedom {
    padding: 64px 58px;
}

.pp-testimonial {
    position: relative;
    background: #623368;
    color: #ffffff;
}

.pp-quote-mark {
    margin-bottom: 12px;
    font-family: Georgia, serif;
    font-size: 86px;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.32);
}

.pp-testimonial blockquote {
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.75;
    font-style: normal;
}

.pp-testimonial-name {
    margin: 30px 0 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.pp-stars {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.16em;
}

.pp-freedom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
}

.pp-freedom .pp-eyebrow {
    margin-bottom: 14px;
}

.pp-freedom h2 {
    margin: 0 0 26px;
    color: #5b2363;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.12;
    font-weight: 400;
}

.pp-freedom h2 strong {
    font-weight: 700;
}

.pp-freedom p {
    margin: 0 0 18px;
    color: #5f5961;
    font-size: 18px;
    line-height: 1.75;
}

.pp-freedom .pp-button {
    align-self: flex-start;
    margin-top: 14px;
}

/* Mobile */
@media (max-width: 900px) {

    .pp-proof {
        padding: 72px 20px;
    }

    .pp-proof-inner {
        grid-template-columns: 1fr;
    }

    .pp-testimonial,
    .pp-freedom {
        padding: 48px 38px;
    }

}

@media (max-width: 600px) {

    .pp-proof {
        padding: 58px 14px;
    }

    .pp-testimonial,
    .pp-freedom {
        padding: 38px 26px;
    }

    .pp-testimonial blockquote {
        font-size: 18px;
    }

    .pp-freedom h2 {
        font-size: 36px;
    }

}



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

.pp-cta{

    padding:90px 28px;

    background:#623368;

    color:white;

}

.pp-cta-inner{

    width:min(1320px,100%);

    margin:0 auto;

    display:grid;

    grid-template-columns:110px 1fr auto;

    gap:50px;

    align-items:center;

}

.pp-calendar-icon{

    width:88px;

    height:88px;

    border-radius:50%;

    background:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

}

.pp-cta h2{

    margin:10px 0 20px;

    color:white;

    font-size:44px;

    line-height:1.15;

}

.pp-cta p{

    color:rgba(255,255,255,.88);

    line-height:1.8;

}

.pp-cta-buttons{

    text-align:center;

}

.pp-cta-buttons .pp-button{

    background:white;

    color:#623368 !important;

    min-width:290px;

}

.pp-cta-buttons .pp-button:hover{

    background:#f7f3f8;

}

.pp-cta-buttons p{

    margin-top:16px;

    font-size:14px;

    opacity:.75;

}

@media(max-width:900px){

.pp-cta-inner{

grid-template-columns:1fr;

text-align:center;

}

.pp-calendar-icon{

margin:0 auto;

}

.pp-cta-buttons .pp-button{

width:100%;

min-width:0;

}

}


/* ==========================================================
   PARKER PRODUCTIVITY — GLASS CTA
========================================================== */

.pp-cta {
    position: relative;
    left: 50%;

    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: -50vw !important;
    margin-right: -50vw !important;

    padding: 42px 24px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255,255,255,0.12),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #4f2658 0%,
            #67366f 52%,
            #51265a 100%
        );

    color: #ffffff;
    box-sizing: border-box;
}

/* Glass content panel */
.pp-cta-inner {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 300px;
    gap: 34px;
    align-items: center;

    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
    padding: 34px 38px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(33,14,36,0.22),
        inset 0 1px 0 rgba(255,255,255,0.12);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-sizing: border-box;
}

/* Calendar icon */
.pp-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-calendar-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 66px;
    height: 66px;

    border-radius: 50%;

    background: rgba(255,255,255,0.92);
    color: #623368;

    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 10px 24px rgba(24,10,26,0.18);

    font-size: 27px;
    line-height: 1;
}

/* Eyebrow */
.pp-cta .pp-eyebrow {
    margin: 0 0 8px;

    color: rgba(255,255,255,0.72);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Heading */
.pp-cta h2 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: clamp(34px, 3.7vw, 48px);
    line-height: 1.08;
    font-weight: 400;
}

/* Body copy */
.pp-cta-content > p:last-child {
    max-width: 650px;
    margin: 0;

    color: rgba(255,255,255,0.76);

    font-size: 17px;
    line-height: 1.65;
}

/* Button column */
.pp-cta-buttons {
    width: 100%;
    text-align: center;
}

.pp-cta-buttons .pp-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 52px;
    padding: 14px 22px;

    background: rgba(255,255,255,0.94);
    color: #623368 !important;

    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 9px;

    box-shadow: 0 10px 26px rgba(30,12,32,0.18);

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;

    font-size: 13px;
    font-weight: 700;

    box-sizing: border-box;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pp-cta-buttons .pp-button:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.pp-cta-buttons p {
    margin: 10px 0 0;

    color: rgba(255,255,255,0.56);

    font-size: 13px;
}

/* Tablet */
@media (max-width: 980px) {

    .pp-cta-inner {
        grid-template-columns: 66px minmax(0, 1fr);
        padding: 30px;
    }

    .pp-cta-buttons {
        grid-column: 1 / -1;
        width: min(100%, 420px);
        margin: 6px auto 0;
    }

}

/* Mobile */
@media (max-width: 700px) {

    .pp-cta {
        padding: 28px 12px;
    }

    .pp-cta-inner {
        display: block;
        width: 100%;
        padding: 30px 22px;
        text-align: center;
        border-radius: 16px;
    }

    .pp-calendar-icon {
        margin: 0 auto 20px;
    }

    .pp-cta-content > p:last-child {
        margin-left: auto;
        margin-right: auto;
    }

    .pp-cta-buttons {
        width: 100%;
        margin-top: 24px;
    }

}

/* ==========================================================
   PARKER PRODUCTIVITY — GLOBAL WIDTH SYSTEM
========================================================== */

/*
Break every Parker custom section out of Stow's narrow
article column and let the section span the browser.
*/
.pp-section {
    position: relative;
    left: 50%;

    width: 100vw !important;
    max-width: 100vw !important;

    margin-left: -50vw !important;
    margin-right: -50vw !important;

    box-sizing: border-box;
}

/*
Shared centered content width for every Parker section.
*/
.pp-wrap {
    width: min(calc(100% - 48px), 1180px);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/*
Narrower width for introductory text when needed.
*/
.pp-text-wrap {
    width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;
}

/* Tablet */
@media (max-width: 900px) {

    .pp-wrap {
        width: min(calc(100% - 36px), 1180px);
    }

}

/* Mobile */
@media (max-width: 600px) {

    .pp-wrap {
        width: min(calc(100% - 24px), 1180px);
    }

}




/* ==========================================================
   PARKER PRODUCTIVITY — TESTIMONIAL POLISH
   (Paste at the END of Additional CSS)
========================================================== */

/* Wider, more balanced columns */
.pp-proof-inner{
    grid-template-columns:0.85fr 1.15fr;
    max-width:1180px;
    box-shadow:0 30px 80px rgba(98,51,104,.08);
    border-radius:22px;
    overflow:hidden;
}

/* Purple testimonial side */
.pp-testimonial{

    position:relative;

    background:
        linear-gradient(
            145deg,
            #54295d 0%,
            #693a72 100%
        );

    padding:56px 48px;

}

/* Giant decorative quote */
.pp-quote-mark{

    position:absolute;

    top:18px;
    left:22px;

    font-size:150px;

    color:rgba(255,255,255,.08);

    line-height:1;

    margin:0;

}

/* Keep quote above watermark */
.pp-testimonial blockquote,
.pp-testimonial-name,
.pp-stars{

    position:relative;
    z-index:2;

}

.pp-testimonial blockquote{

    font-size:20px;
    line-height:1.9;

}

.pp-testimonial-name{

    margin-top:32px;
    font-weight:700;

}

/* White side becomes subtle glass */

.pp-freedom{

    background:
        linear-gradient(
            rgba(255,255,255,.82),
            rgba(255,255,255,.82)
        );

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-left:1px solid rgba(255,255,255,.45);

    padding:56px;

}

/* Softer heading */

.pp-freedom h2{

    font-size:clamp(34px,3vw,46px);
    line-height:1.15;

    margin-bottom:24px;

}

/* Improve body spacing */

.pp-freedom p{

    font-size:18px;
    line-height:1.8;

}

/* Better mobile balance */

@media(max-width:900px){

    .pp-proof-inner{

        grid-template-columns:1fr;

    }

    .pp-testimonial,
    .pp-freedom{

        padding:40px 30px;

    }

}

/* ==========================================================
   PARKER PRODUCTIVITY — SECTION SPACING TIGHTENING
   Paste at the END of Additional CSS
========================================================== */

/* Services */
.pp-services {
    padding-top: 58px !important;
    padding-bottom: 68px !important;
}

/* Process */
.pp-process {
    padding-top: 62px !important;
    padding-bottom: 68px !important;
}

/* Testimonial / proof */
.pp-proof {
    padding-top: 62px !important;
    padding-bottom: 68px !important;
}

/* Reduce oversized gaps above section headings */
.pp-section-heading {
    margin-bottom: 34px !important;
}

.pp-process-intro {
    margin-bottom: 38px !important;
}

/* Reduce excess space between cards and section edges */
.pp-service-grid,
.pp-process-grid,
.pp-proof-inner {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Remove accidental empty paragraph spacing between custom blocks */
.entry-content > p:empty,
.entry-content > br,
.entry-content > .wp-block-spacer {
    display: none !important;
}

/* Prevent WordPress from adding large margins between HTML blocks */
.entry-content > .wp-block-html {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Mobile */
@media (max-width: 782px) {

    .pp-services,
    .pp-process,
    .pp-proof {
        padding-top: 46px !important;
        padding-bottom: 52px !important;
    }

    .pp-section-heading,
    .pp-process-intro {
        margin-bottom: 28px !important;
    }

}

/* ==========================================================
   PARKER PRODUCTIVITY — COMPACT SECTION RHYTHM
   Paste at the VERY END of Additional CSS
========================================================== */

/* Stop Stow from inserting margins between our custom sections */
.entry-content > .pp-section,
.entry-content > .pp-section + .pp-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Tighten the three main content sections */
.pp-services,
.pp-process,
.pp-proof {
    padding-top: 36px !important;
    padding-bottom: 40px !important;
}

/* Tighten the space above the cards */
.pp-section-heading,
.pp-process-intro {
    margin-top: 0 !important;
    margin-bottom: 26px !important;
}

/* Remove internal margins that can add hidden space */
.pp-service-grid,
.pp-process-grid,
.pp-proof-inner {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Keep the proof panel close to the section above it */
.pp-proof {
    padding-top: 32px !important;
}

/* Remove theme spacing around any direct custom HTML output */
.entry-content > section.pp-section {
    clear: both;
}

/* Mobile */
@media (max-width: 782px) {

    .pp-services,
    .pp-process,
    .pp-proof {
        padding-top: 28px !important;
        padding-bottom: 32px !important;
    }

    .pp-section-heading,
    .pp-process-intro {
        margin-bottom: 22px !important;
    }

}



/* ==========================================================
   PARKER PRODUCTIVITY — HERO TO FIRST SECTION GAP
   Paste at the VERY END of Additional CSS
========================================================== */

/* Remove excess space beneath the hero */
.pp-hero-shell {
    padding-bottom: 8px !important;
    margin-bottom: 0 !important;
}

/* Pull the first content section closer to the hero */
.pp-hero-shell + .pp-services,
.pp-hero-shell + .pp-section {
    margin-top: 0 !important;
}

/* Tighten only the first section after the hero */
.pp-services {
    padding-top: 24px !important;
}

/* Remove theme-added spacing around the first HTML blocks */
.entry-content > .wp-block-html:first-child,
.entry-content > .wp-block-html:first-child + .wp-block-html {
    margin-bottom: 0 !important;
}

/* Mobile */
@media (max-width: 782px) {

    .pp-hero-shell {
        padding-bottom: 4px !important;
    }

    .pp-services {
        padding-top: 20px !important;
    }

}


/* ==========================================================
   PARKER PRODUCTIVITY — ABOUT PAGE HERO
   Uses unique classes so it cannot conflict with Home hero
========================================================== */

.pp-about-hero {
    padding: 28px 0 38px;
    background: #ffffff;
}

.pp-about-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;

    width: 100%;
    min-height: 560px;

    background:
        linear-gradient(
            135deg,
            rgba(248,244,249,0.98) 0%,
            rgba(255,255,255,0.98) 62%
        );

    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 20px;

    box-shadow: 0 22px 58px rgba(54,31,57,0.09);

    overflow: hidden;
}

.pp-about-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 62px 56px;
}

.pp-about-hero-copy .pp-eyebrow {
    margin: 0 0 16px;

    color: #276184;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pp-about-hero-copy h1 {
    margin: 0 0 26px;

    color: #5b2363;

    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 400;
}

.pp-about-lead {
    margin: 0 0 18px;

    color: #4f4951;

    font-size: 20px;
    line-height: 1.7;
}

.pp-about-hero-copy p:not(.pp-eyebrow):not(.pp-about-lead) {
    margin: 0 0 16px;

    color: #686168;

    font-size: 17px;
    line-height: 1.72;
}

.pp-about-hero-photo {
    position: relative;
    min-height: 560px;
}

.pp-about-hero-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border: 0;
}

@media (max-width: 900px) {

    .pp-about-hero-card {
        grid-template-columns: 1fr;
    }

    .pp-about-hero-copy {
        padding: 46px 38px;
    }

    .pp-about-hero-photo {
        min-height: 420px;
    }

}

@media (max-width: 600px) {

    .pp-about-hero {
        padding: 16px 0 28px;
    }

    .pp-about-hero-card {
        border-radius: 14px;
    }

    .pp-about-hero-copy {
        padding: 36px 24px;
    }

    .pp-about-hero-copy h1 {
        font-size: 38px;
    }

    .pp-about-lead {
        font-size: 18px;
    }

    .pp-about-hero-photo {
        min-height: 330px;
    }

}



/* ==========================================================
   PARKER PRODUCTIVITY — ABOUT VALUE BLOCK
========================================================== */

.pp-about-value {
    padding: 42px 0 46px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbf8fc 100%
        );
}

.pp-about-value-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
}

.pp-about-value-card {
    padding: 38px 36px;

    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 18px;

    box-shadow: 0 18px 46px rgba(55,31,58,0.07);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pp-about-value-card .pp-eyebrow {
    margin: 0 0 10px;
}

.pp-about-value-card h2 {
    margin: 0 0 18px;

    color: #5b2363;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 400;
}

.pp-about-value-card > p:not(.pp-eyebrow) {
    margin: 0 0 22px;

    color: #625c63;

    font-size: 17px;
    line-height: 1.72;
}

.pp-check-list {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.pp-check-list li {
    position: relative;

    margin: 0 0 13px;
    padding-left: 27px;

    color: #544e56;

    font-size: 16px;
    line-height: 1.55;
}

.pp-check-list li::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #623368;
    font-weight: 700;
}

.pp-about-note {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: center;

    margin-top: 24px;
    padding: 18px 20px;

    background:
        linear-gradient(
            135deg,
            rgba(98,51,104,0.08),
            rgba(255,255,255,0.75)
        );

    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 14px;
}

.pp-about-note-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;
    background: #623368;
    color: #ffffff;

    font-weight: 700;
}

.pp-about-note p {
    margin: 0;

    color: #5f5661;

    font-size: 15px;
    line-height: 1.55;
}

.pp-benefit-list {
    display: grid;
    gap: 12px;
}

.pp-benefit-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: start;

    padding: 16px 18px;

    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 13px;
}

.pp-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(98,51,104,0.09);
    color: #623368;

    font-size: 19px;
    font-weight: 700;
}

.pp-benefit-item h3 {
    margin: 1px 0 5px;

    color: #2f2830;

    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.pp-benefit-item p {
    margin: 0;

    color: #69626a;

    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 900px) {

    .pp-about-value-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .pp-about-value {
        padding: 30px 0 34px;
    }

    .pp-about-value-card {
        padding: 30px 24px;
    }

    .pp-about-note,
    .pp-benefit-item {
        grid-template-columns: 42px minmax(0, 1fr);
    }

}

/* ==========================================================
   PARKER PRODUCTIVITY — ABOUT PROCESS
========================================================== */

.pp-about-process {
    padding: 44px 0 50px;
    background: #ffffff;
}

.pp-about-process-heading {
    width: min(100%, 820px);
    margin: 0 auto 34px;
    text-align: center;
}

.pp-about-process-heading .pp-eyebrow {
    margin-bottom: 10px;
}

.pp-about-process-heading h2 {
    margin: 0 0 16px;

    color: #5b2363;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.14;
    font-weight: 400;
}

.pp-about-process-heading > p:last-child {
    margin: 0;

    color: #686168;

    font-size: 18px;
    line-height: 1.7;
}

.pp-about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pp-about-process-step {
    position: relative;

    min-height: 270px;
    padding: 26px 24px 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.95),
            rgba(249,245,250,0.82)
        );

    border: 1px solid rgba(98,51,104,0.11);
    border-radius: 16px;

    box-shadow: 0 14px 34px rgba(54,31,57,0.06);

    overflow: hidden;
}

.pp-about-process-step::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #623368,
            #9a6ca2
        );
}

.pp-about-step-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #623368;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pp-about-step-label {
    margin: 0 0 7px;

    color: #276184;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pp-about-process-step h3 {
    margin: 0 0 12px;

    color: #332c34;

    font-size: 22px;
    line-height: 1.22;
    font-weight: 700;
}

.pp-about-process-step > p:last-child {
    margin: 0;

    color: #6c656d;

    font-size: 15px;
    line-height: 1.62;
}

/* Give the first step a subtle highlighted state */
.pp-about-process-step:first-child {
    background:
        linear-gradient(
            145deg,
            rgba(98,51,104,0.09),
            rgba(255,255,255,0.92)
        );

    border-color: rgba(98,51,104,0.18);
}

@media (max-width: 1050px) {

    .pp-about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 650px) {

    .pp-about-process {
        padding: 34px 0 38px;
    }

    .pp-about-process-heading {
        margin-bottom: 26px;
        text-align: left;
    }

    .pp-about-process-grid {
        grid-template-columns: 1fr;
    }

    .pp-about-process-step {
        min-height: 0;
    }

}


/* ==========================================================
   ABOUT — TEAM
========================================================== */

.pp-team{

    padding:46px 0 54px;

    background:
    linear-gradient(
        180deg,
        #fbf8fc,
        #ffffff
    );

}

.pp-team-heading{

    max-width:760px;

    margin:0 auto 42px;

    text-align:center;

}

.pp-team-heading h2{

    margin:10px 0 18px;

    color:#5b2363;

    font-size:clamp(36px,4vw,52px);

    line-height:1.12;

    font-weight:400;

}

.pp-team-heading>p{

    color:#666;

    font-size:18px;

    line-height:1.8;

}

.pp-team-grid{

    display:grid;

    gap:30px;

}

.pp-team-card{

    display:grid;

    grid-template-columns:260px 1fr;

    gap:34px;

    align-items:center;

    padding:32px;

    background:
    rgba(255,255,255,.86);

    border-radius:20px;

    border:1px solid rgba(98,51,104,.08);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:
    0 16px 42px rgba(0,0,0,.06);

}

.pp-team-card img{

    width:100%;

    border-radius:18px;

    display:block;

}

.pp-role{

    display:inline-block;

    margin-bottom:10px;

    color:#276184;

    text-transform:uppercase;

    letter-spacing:.12em;

    font-size:12px;

    font-weight:700;

}

.pp-team-card h3{

    margin:0 0 18px;

    color:#623368;

    font-size:34px;

    font-weight:400;

}

.pp-team-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:16px;

}

@media(max-width:900px){

.pp-team-card{

grid-template-columns:1fr;

}

.pp-team-card img{

max-width:340px;

margin:auto;

}

}


/* ==========================================================
   PARKER PRODUCTIVITY — COMPACT TEAM + CTA
========================================================== */

.pp-team-strip {
    padding: 38px 0 44px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbf8fc 100%
        );
}

.pp-team-strip-card {
    padding: 28px 30px 30px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.92),
            rgba(248,243,250,0.82)
        );

    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(54,31,57,0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pp-team-strip-heading {
    margin-bottom: 20px;
}

.pp-team-strip-heading .pp-eyebrow {
    margin: 0;
}

.pp-team-strip-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(270px, 0.9fr);

    gap: 0;
    align-items: stretch;
}

.pp-mini-bio {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;

    padding: 8px 28px 8px 0;
}

.pp-mini-bio + .pp-mini-bio {
    padding-left: 28px;

    border-left:
        1px solid rgba(98,51,104,0.10);
}

.pp-mini-bio img {
    display: block;

    width: 72px;
    height: 72px;

    object-fit: cover;
    object-position: center;

    border-radius: 14px;

    box-shadow:
        0 8px 20px rgba(47,29,50,0.12);
}

.pp-mini-bio-copy h3 {
    margin: 0 0 5px;

    color: #5b2363;

    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.pp-mini-role {
    margin: 0 0 9px !important;

    color: #623368 !important;

    font-size: 12px !important;
    line-height: 1.45 !important;
    font-weight: 700;
}

.pp-mini-bio-copy > p:last-child {
    margin: 0;

    color: #696269;

    font-size: 14px;
    line-height: 1.55;
}

.pp-team-cta {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;

    margin-left: 28px;
    padding: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(98,51,104,0.09),
            rgba(255,255,255,0.72)
        );

    border: 1px solid rgba(98,51,104,0.12);
    border-radius: 16px;
}

.pp-team-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: rgba(255,255,255,0.9);
    color: #623368;

    border: 1px solid rgba(98,51,104,0.12);

    font-size: 22px;
}

.pp-team-cta-copy h3 {
    margin: 2px 0 5px;

    color: #5b2363;

    font-size: 18px;
    line-height: 1.25;
}

.pp-team-cta-copy p {
    margin: 0;

    color: #6d6570;

    font-size: 13px;
    line-height: 1.45;
}

.pp-team-cta-button {
    grid-column: 1 / -1;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 12px;
    min-height: 50px;
    padding: 13px 18px;

    background:
        linear-gradient(
            135deg,
            #623368,
            #774481
        );

    color: #ffffff !important;

    border-radius: 9px;

    text-decoration: none;
    text-align: center;
    text-transform: uppercase;

    letter-spacing: 0.05em;

    font-size: 12px;
    font-weight: 700;

    box-shadow:
        0 10px 24px rgba(54,25,58,0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pp-team-cta-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(54,25,58,0.22);
}

/* Tablet */
@media (max-width: 1050px) {

    .pp-team-strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .pp-team-cta {
        grid-column: 1 / -1;

        margin-left: 0;
    }

}

/* Mobile */
@media (max-width: 720px) {

    .pp-team-strip {
        padding: 30px 0 34px;
    }

    .pp-team-strip-card {
        padding: 24px 20px;
    }

    .pp-team-strip-grid {
        grid-template-columns: 1fr;
    }

    .pp-mini-bio,
    .pp-mini-bio + .pp-mini-bio {
        padding: 18px 0;

        border-left: 0;
        border-top:
            1px solid rgba(98,51,104,0.10);
    }

    .pp-mini-bio:first-child {
        border-top: 0;
    }

    .pp-team-cta {
        grid-column: auto;

        margin-top: 8px;
    }

}

/* Extra-small screens */
@media (max-width: 460px) {

    .pp-mini-bio {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 14px;
    }

    .pp-mini-bio img {
        width: 58px;
        height: 58px;

        border-radius: 12px;
    }

}


.pp-team-cta-button {

    grid-column: 1 / -1;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-top:18px;
    min-height:54px;
    padding:16px 24px;

    background:linear-gradient(
        135deg,
        #623368,
        #7a4b82
    );

    color:#fff !important;

    border-radius:10px;

    text-decoration:none !important;

    font-size:16px;
    font-weight:600;

    letter-spacing:.01em;

    line-height:1.3;

    text-align:center;

    box-shadow:
        0 12px 28px rgba(70,35,75,.18);

    transition:.25s ease;
}

.pp-team-cta-button:hover{

    transform:translateY(-2px);

    box-shadow:
        0 18px 34px rgba(70,35,75,.24);
}





/* ==========================================================
   PARKER PRODUCTIVITY — SERVICES PAGE HERO
========================================================== */

.pp-services-hero {
    padding: 28px 0 38px;
    background: #ffffff;
}

.pp-services-hero-card {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: stretch;

    width: 100%;
    min-height: 560px;

    background:
        linear-gradient(
            135deg,
            rgba(248,244,249,0.98) 0%,
            rgba(255,255,255,0.98) 62%
        );

    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 20px;

    box-shadow:
        0 22px 58px rgba(54,31,57,0.09);

    overflow: hidden;
}

.pp-services-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 58px 54px;
}

.pp-services-hero-copy .pp-eyebrow {
    margin: 0 0 16px;

    color: #276184;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pp-services-hero-copy h1 {
    margin: 0 0 24px;

    color: #5b2363;

    font-size: clamp(42px, 4.3vw, 62px);
    line-height: 1.04;
    font-weight: 400;
}

.pp-services-lead {
    margin: 0 0 18px;

    color: #4f4951;

    font-size: 20px;
    line-height: 1.68;
}

.pp-services-hero-copy p:not(.pp-eyebrow):not(.pp-services-lead) {
    margin: 0 0 18px;

    color: #686168;

    font-size: 17px;
    line-height: 1.72;
}

.pp-services-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;

    min-height: 52px;
    margin-top: 10px;
    padding: 14px 25px;

    background:
        linear-gradient(
            135deg,
            #623368,
            #7a4b82
        );

    color: #ffffff !important;

    border-radius: 10px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;

    box-shadow:
        0 12px 28px rgba(70,35,75,0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pp-services-hero-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 34px rgba(70,35,75,0.24);
}

.pp-services-hero-photo {
    position: relative;
    min-height: 560px;
}

.pp-services-hero-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border: 0;
}

/* Tablet */
@media (max-width: 900px) {

    .pp-services-hero-card {
        grid-template-columns: 1fr;
    }

    .pp-services-hero-copy {
        padding: 46px 38px;
    }

    .pp-services-hero-photo {
        min-height: 420px;
    }

}

/* Mobile */
@media (max-width: 600px) {

    .pp-services-hero {
        padding: 16px 0 28px;
    }

    .pp-services-hero-card {
        border-radius: 14px;
    }

    .pp-services-hero-copy {
        padding: 36px 24px;
    }

    .pp-services-hero-copy h1 {
        font-size: 40px;
    }

    .pp-services-lead {
        font-size: 18px;
    }

    .pp-services-hero-button {
        width: 100%;
        align-self: stretch;
    }

    .pp-services-hero-photo {
        min-height: 330px;
    }

}




/* ==========================================================
   PARKER PRODUCTIVITY — SERVICES TESTIMONIAL
========================================================== */

.pp-services-testimonial {
    padding: 38px 0 44px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8f4f9 100%
        );
}

.pp-services-testimonial-card {
    position: relative;

    padding: 54px 64px;

    background:
        linear-gradient(
            135deg,
            #285866 0%,
            #356977 100%
        );

    border-radius: 20px;

    box-shadow:
        0 22px 54px rgba(24, 60, 69, 0.16);

    overflow: hidden;
}

.pp-services-testimonial-card::after {
    content: "";

    position: absolute;
    right: -90px;
    bottom: -120px;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.08),
            transparent 68%
        );
}

.pp-services-quote-mark {
    position: absolute;

    top: 18px;
    left: 34px;

    color: rgba(255,255,255,0.10);

    font-family: Georgia, serif;
    font-size: 150px;
    line-height: 1;
}

.pp-services-testimonial-card blockquote {
    position: relative;
    z-index: 2;

    max-width: 1040px;
    margin: 0;

    color: #ffffff;

    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.45;
    font-weight: 300;
    font-style: normal;
}

.pp-services-testimonial-name {
    position: relative;
    z-index: 2;

    margin: 34px 0 0;

    color: rgba(255,255,255,0.92);

    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.pp-services-testimonial-name::before {
    content: "— ";
}

/* Mobile */
@media (max-width: 700px) {

    .pp-services-testimonial {
        padding: 28px 0 34px;
    }

    .pp-services-testimonial-card {
        padding: 40px 28px;
        border-radius: 16px;
    }

    .pp-services-testimonial-card blockquote {
        font-size: 25px;
        line-height: 1.5;
    }

    .pp-services-quote-mark {
        top: 12px;
        left: 18px;
        font-size: 110px;
    }

}




/* ==========================================================
   PARKER PRODUCTIVITY — SERVICES OVERVIEW
========================================================== */

.pp-services-overview {
    padding: 46px 0 52px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbf8fc 100%
        );
}

.pp-services-overview-heading {
    width: min(100%, 820px);
    margin: 0 auto 34px;
    text-align: center;
}

.pp-services-overview-heading .pp-eyebrow {
    margin: 0 0 10px;
}

.pp-services-overview-heading h2 {
    margin: 0 0 16px;

    color: #5b2363;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.14;
    font-weight: 400;
}

.pp-services-overview-heading > p:last-child {
    margin: 0;

    color: #686168;

    font-size: 18px;
    line-height: 1.7;
}

.pp-services-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.pp-services-overview-card {
    display: flex;
    flex-direction: column;

    min-height: 320px;
    padding: 30px 28px 26px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.96),
            rgba(249,245,250,0.82)
        );

    border: 1px solid rgba(98,51,104,0.11);
    border-radius: 17px;

    box-shadow:
        0 16px 38px rgba(54,31,57,0.06);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pp-services-overview-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 22px 46px rgba(54,31,57,0.10);
}

.pp-services-overview-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin-bottom: 22px;

    border-radius: 50%;

    background: rgba(98,51,104,0.09);
    color: #623368;

    border: 1px solid rgba(98,51,104,0.13);

    font-size: 24px;
    line-height: 1;
}

.pp-services-overview-card h3 {
    margin: 0 0 14px;

    color: #372f38;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.pp-services-overview-card p {
    margin: 0 0 24px;

    color: #696269;

    font-size: 16px;
    line-height: 1.65;
}

.pp-services-overview-card a {
    margin-top: auto;

    color: #623368;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.pp-services-overview-card a span {
    display: inline-block;
    margin-left: 4px;

    transition: transform 0.2s ease;
}

.pp-services-overview-card a:hover span {
    transform: translateX(4px);
}

.pp-services-overview-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin: 30px auto 0;
    padding: 15px 22px;

    width: fit-content;

    background: rgba(98,51,104,0.06);
    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 999px;
}

.pp-services-overview-note span {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #623368;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.pp-services-overview-note p {
    margin: 0;

    color: #5b4d5e;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}

/* Tablet */
@media (max-width: 1000px) {

    .pp-services-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

/* Mobile */
@media (max-width: 650px) {

    .pp-services-overview {
        padding: 34px 0 38px;
    }

    .pp-services-overview-heading {
        margin-bottom: 26px;
        text-align: left;
    }

    .pp-services-overview-grid {
        grid-template-columns: 1fr;
    }

    .pp-services-overview-card {
        min-height: 0;
    }

    .pp-services-overview-note {
        width: 100%;
        border-radius: 14px;
        box-sizing: border-box;
    }

}


/* ==========================================================
   PARKER PRODUCTIVITY — SERVICES PROCESS
========================================================== */

.pp-services-process {
    padding: 48px 0 54px;

    background:
        linear-gradient(
            135deg,
            rgba(248,243,250,0.96),
            rgba(255,255,255,0.98)
        );
}

.pp-services-process-heading {
    width: min(100%, 760px);
    margin: 0 auto 38px;
    text-align: center;
}

.pp-services-process-heading .pp-eyebrow {
    margin: 0 0 10px;
}

.pp-services-process-heading h2 {
    margin: 0 0 14px;

    color: #5b2363;

    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.14;
    font-weight: 400;
}

.pp-services-process-heading > p:last-child {
    margin: 0;

    color: #696269;

    font-size: 18px;
    line-height: 1.7;
}

.pp-services-process-grid {
    position: relative;

    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

/* Connecting line */
.pp-services-process-grid::before {
    content: "";

    position: absolute;
    top: 25px;
    left: 7%;
    right: 7%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(98,51,104,0.12),
            rgba(98,51,104,0.28),
            rgba(98,51,104,0.12)
        );
}

.pp-services-process-step {
    position: relative;
    z-index: 2;

    text-align: center;
}

.pp-services-process-number {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #623368,
            #7a4b82
        );

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;

    box-shadow:
        0 8px 20px rgba(67,31,71,0.16);
}

.pp-services-process-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: rgba(255,255,255,0.86);
    color: #623368;

    border: 1px solid rgba(98,51,104,0.13);

    font-size: 20px;
}

.pp-services-process-step h3 {
    margin: 0 0 10px;

    color: #372f38;

    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}

.pp-services-process-step p {
    margin: 0;

    color: #6c656d;

    font-size: 14px;
    line-height: 1.55;
}

/* Tablet */
@media (max-width: 1100px) {

    .pp-services-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 34px 22px;
    }

    .pp-services-process-grid::before {
        display: none;
    }

}

/* Mobile */
@media (max-width: 700px) {

    .pp-services-process {
        padding: 36px 0 40px;
    }

    .pp-services-process-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .pp-services-process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pp-services-process-step {
        display: grid;
        grid-template-columns: 50px minmax(0, 1fr);
        column-gap: 16px;
        row-gap: 4px;

        padding: 20px;

        background: rgba(255,255,255,0.82);
        border: 1px solid rgba(98,51,104,0.10);
        border-radius: 14px;

        text-align: left;
    }

    .pp-services-process-number {
        grid-row: 1 / 4;

        margin: 0;
    }

    .pp-services-process-icon {
        display: none;
    }

    .pp-services-process-step h3,
    .pp-services-process-step p {
        grid-column: 2;
    }

}



/* ==========================================================
   PARKER PRODUCTIVITY — WHO WE HELP
========================================================== */

.pp-who-we-help {
    padding: 44px 0 48px;
    background: #ffffff;
}

.pp-who-we-help-heading {
    width: min(100%, 760px);
    margin: 0 auto 34px;
    text-align: center;
}

.pp-who-we-help-heading .pp-eyebrow {
    margin: 0 0 10px;
}

.pp-who-we-help-heading h2 {
    margin: 0 0 14px;

    color: #5b2363;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.14;
    font-weight: 400;
}

.pp-who-we-help-heading > p:last-child {
    margin: 0;

    color: #686168;

    font-size: 18px;
    line-height: 1.7;
}

.pp-who-we-help-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid rgba(98,51,104,0.10);
    border-bottom: 1px solid rgba(98,51,104,0.10);
}

.pp-who-card {
    padding: 30px 26px;
    text-align: center;
}

.pp-who-card + .pp-who-card {
    border-left: 1px solid rgba(98,51,104,0.10);
}

.pp-who-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: rgba(98,51,104,0.08);
    color: #623368;

    border: 1px solid rgba(98,51,104,0.12);

    font-size: 25px;
}

.pp-who-card h3 {
    margin: 0 0 11px;

    color: #423744;

    font-size: 20px;
    line-height: 1.28;
    font-weight: 700;
}

.pp-who-card p {
    margin: 0;

    color: #6a636b;

    font-size: 15px;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 900px) {

    .pp-who-we-help-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pp-who-card:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(98,51,104,0.10);
    }

    .pp-who-card:nth-child(4) {
        border-top: 1px solid rgba(98,51,104,0.10);
    }

}

/* Mobile */
@media (max-width: 600px) {

    .pp-who-we-help {
        padding: 34px 0 38px;
    }

    .pp-who-we-help-heading {
        text-align: left;
        margin-bottom: 26px;
    }

    .pp-who-we-help-grid {
        grid-template-columns: 1fr;
    }

    .pp-who-card,
    .pp-who-card + .pp-who-card {
        border-left: 0;
    }

    .pp-who-card + .pp-who-card {
        border-top: 1px solid rgba(98,51,104,0.10);
    }

}


/* ===================================================
   SERVICES PAGE END PANEL
=================================================== */

.pp-services-final{
    padding:60px 0 80px;
}

.pp-final-panel{

    display:grid;
    grid-template-columns:1.8fr .95fr;
    gap:50px;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            #2d6573 0%,
            #3b7382 45%,
            #2b5f6b 100%
        );

    padding:60px;

    box-shadow:
        0 28px 70px rgba(37,72,85,.18);
}

.pp-final-testimonial{
    color:white;
    position:relative;
}

.pp-quote{

    position:absolute;
    top:-10px;
    left:-8px;

    font-size:88px;
    line-height:1;

    color:rgba(255,255,255,.13);
}

.pp-final-testimonial blockquote{

    margin:0;

    font-size:clamp(34px,3vw,54px);
    line-height:1.45;
    font-weight:300;

    max-width:850px;

    position:relative;
    z-index:2;
}

.pp-final-testimonial cite{

    display:block;

    margin-top:42px;

    font-style:normal;
    font-weight:700;

    color:white;
    font-size:22px;
}

.pp-final-cta{

    align-self:center;

    background:rgba(255,255,255,.96);

    border-radius:24px;

    padding:38px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.12);

    backdrop-filter:blur(16px);
}

.pp-final-icon{

    width:66px;
    height:66px;

    border-radius:50%;

    background:#f4eef7;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:22px;
}

.pp-final-cta h3{

    margin:0 0 14px;

    color:#623368;

    font-size:34px;
    line-height:1.2;
}

.pp-final-cta p{

    color:#666;

    line-height:1.75;

    margin-bottom:28px;
}

.pp-final-cta .pp-btn{

    display:block;

    background:#623368;
    color:white;

    text-align:center;

    padding:18px 24px;

    border-radius:12px;

    text-decoration:none;

    font-weight:700;

    transition:.25s;
}

.pp-final-cta .pp-btn span{

    display:block;

    margin-top:4px;

    font-size:22px;
}

.pp-final-cta .pp-btn:hover{

    background:#764080;
    transform:translateY(-2px);
}

.pp-final-cta small{

    display:block;

    text-align:center;

    margin-top:18px;

    color:#777;
}

@media (max-width:900px){

    .pp-final-panel{

        grid-template-columns:1fr;

        padding:40px;

        gap:34px;
    }

    .pp-final-testimonial blockquote{

        font-size:34px;
    }

}


/* ==========================================================
   PARKER PRODUCTIVITY — CONTACT INTAKE PLACEHOLDER
========================================================== */

.pp-contact-intake {
    padding: 40px 0 48px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf7fb 100%
        );
}

.pp-contact-intake-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) minmax(250px, 320px);
    gap: 28px;
    align-items: center;

    padding: 34px 38px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.94),
            rgba(246,239,248,0.84)
        );

    border: 1px solid rgba(98,51,104,0.12);
    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(54,31,57,0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pp-contact-intake-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #623368,
            #7a4b82
        );

    color: #ffffff;

    font-size: 25px;

    box-shadow:
        0 12px 28px rgba(63,31,68,0.18);
}

.pp-contact-intake-copy .pp-eyebrow {
    margin: 0 0 8px;
}

.pp-contact-intake-copy h2 {
    margin: 0 0 10px;

    color: #5b2363;

    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 1.12;
    font-weight: 400;
}

.pp-contact-intake-copy > p:last-child {
    max-width: 680px;
    margin: 0;

    color: #696269;

    font-size: 17px;
    line-height: 1.65;
}

.pp-contact-intake-action {
    text-align: center;
}

.pp-contact-intake-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 54px;
    padding: 15px 22px;

    appearance: none;
    border: 0;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #623368,
            #7a4b82
        );

    color: #ffffff;

    font: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.01em;

    cursor: pointer;

    box-shadow:
        0 12px 28px rgba(64,31,69,0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pp-contact-intake-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 17px 34px rgba(64,31,69,0.23);
}

.pp-contact-intake-action small {
    display: block;

    margin-top: 11px;

    color: #7a727b;

    font-size: 13px;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 900px) {

    .pp-contact-intake-card {
        grid-template-columns: 60px minmax(0, 1fr);
    }

    .pp-contact-intake-action {
        grid-column: 1 / -1;

        width: min(100%, 420px);
        margin: 2px auto 0;
    }

}

/* Mobile */
@media (max-width: 600px) {

    .pp-contact-intake {
        padding: 28px 0 34px;
    }

    .pp-contact-intake-card {
        display: block;

        padding: 30px 24px;

        border-radius: 16px;
        text-align: center;
    }

    .pp-contact-intake-icon {
        margin: 0 auto 20px;
    }

    .pp-contact-intake-copy > p:last-child {
        margin-left: auto;
        margin-right: auto;
    }

    .pp-contact-intake-action {
        width: 100%;
        margin-top: 24px;
    }

}



/* ==========================================================
   PARKER PRODUCTIVITY — CONTACT OPTIONS
========================================================== */

.pp-contact-options {
    padding: 38px 0 20px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbf8fc 100%
        );
}

.pp-contact-options-card {
    padding: 36px 38px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.94),
            rgba(247,241,249,0.84)
        );

    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 20px;

    box-shadow:
        0 20px 50px rgba(54,31,57,0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.pp-contact-options-heading {
    width: min(100%, 760px);
    margin: 0 auto 30px;
    text-align: center;
}

.pp-contact-options-heading .pp-eyebrow {
    margin: 0 0 9px;
}

.pp-contact-options-heading h2 {
    margin: 0 0 12px;

    color: #5b2363;

    font-size: clamp(32px, 3.6vw, 46px);
    line-height: 1.14;
    font-weight: 400;
}

.pp-contact-options-heading > p:last-child {
    margin: 0;

    color: #696269;

    font-size: 17px;
    line-height: 1.68;
}

.pp-contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pp-contact-option {
    padding: 26px 30px;
    text-align: center;
}

.pp-contact-option + .pp-contact-option {
    border-left: 1px solid rgba(98,51,104,0.10);
}

.pp-contact-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: rgba(98,51,104,0.09);
    color: #623368;

    border: 1px solid rgba(98,51,104,0.13);

    font-size: 22px;
    font-weight: 700;
}

.pp-contact-option h3 {
    margin: 0 0 10px;

    color: #423744;

    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
}

.pp-contact-option p {
    margin: 0 0 18px;

    color: #6a636b;

    font-size: 15px;
    line-height: 1.6;
}

.pp-contact-option a {
    color: #623368;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    text-decoration: none;
    overflow-wrap: anywhere;
}

.pp-contact-option a:hover {
    color: #276184;
}

.pp-contact-option-button {
    appearance: none;

    padding: 12px 20px;

    background: transparent;
    color: #623368;

    border: 1px solid rgba(98,51,104,0.28);
    border-radius: 9px;

    font: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.pp-contact-option-button:hover {
    background: #623368;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 900px) {

    .pp-contact-options-grid {
        grid-template-columns: 1fr;
    }

    .pp-contact-option + .pp-contact-option {
        border-left: 0;
        border-top: 1px solid rgba(98,51,104,0.10);
    }

}

/* Mobile */
@media (max-width: 600px) {

    .pp-contact-options {
        padding: 28px 0 16px;
    }

    .pp-contact-options-card {
        padding: 30px 22px;
    }

    .pp-contact-options-heading {
        text-align: left;
        margin-bottom: 20px;
    }

    .pp-contact-option {
        padding: 24px 8px;
    }

}


/* ==========================================================
   PARKER PRODUCTIVITY — CONTACT PAGE HERO
========================================================== */

.pp-contact-hero {
    padding: 28px 0 38px;
    background: #ffffff;
}

.pp-contact-hero-card {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);

    align-items: stretch;

    width: 100%;
    min-height: 560px;

    background:
        linear-gradient(
            135deg,
            rgba(248,244,249,0.98) 0%,
            rgba(255,255,255,0.98) 62%
        );

    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 20px;

    box-shadow:
        0 22px 58px rgba(54,31,57,0.09);

    overflow: hidden;
}

.pp-contact-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 58px 54px;
}

.pp-contact-hero-copy .pp-eyebrow {
    margin: 0 0 16px;

    color: #276184;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pp-contact-hero-copy h1 {
    margin: 0 0 24px;

    color: #5b2363;

    font-size: clamp(42px, 4.2vw, 60px);
    line-height: 1.06;
    font-weight: 400;
}

.pp-contact-hero-lead {
    margin: 0 0 18px;

    color: #4f4951;

    font-size: 20px;
    line-height: 1.68;
}

.pp-contact-hero-copy p:not(.pp-eyebrow):not(.pp-contact-hero-lead) {
    margin: 0 0 18px;

    color: #686168;

    font-size: 17px;
    line-height: 1.72;
}

.pp-contact-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;

    min-height: 52px;
    margin-top: 10px;
    padding: 14px 25px;

    appearance: none;

    background:
        linear-gradient(
            135deg,
            #623368,
            #7a4b82
        );

    color: #ffffff;

    border: 0;
    border-radius: 10px;

    font: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;

    cursor: pointer;

    box-shadow:
        0 12px 28px rgba(70,35,75,0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.pp-contact-hero-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 34px rgba(70,35,75,0.24);
}

.pp-contact-hero-photo {
    position: relative;
    min-height: 560px;
}

.pp-contact-hero-photo img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border: 0;
}

/* Tablet */
@media (max-width: 900px) {

    .pp-contact-hero-card {
        grid-template-columns: 1fr;
    }

    .pp-contact-hero-copy {
        padding: 46px 38px;
    }

    .pp-contact-hero-photo {
        min-height: 420px;
    }

}

/* Mobile */
@media (max-width: 600px) {

    .pp-contact-hero {
        padding: 16px 0 28px;
    }

    .pp-contact-hero-card {
        border-radius: 14px;
    }

    .pp-contact-hero-copy {
        padding: 36px 24px;
    }

    .pp-contact-hero-copy h1 {
        font-size: 40px;
    }

    .pp-contact-hero-lead {
        font-size: 18px;
    }

    .pp-contact-hero-button {
        width: 100%;
        align-self: stretch;
    }

    .pp-contact-hero-photo {
        min-height: 330px;
    }

}


/* ==========================================================
   PARKER PRODUCTIVITY — COMPACT MODERN HEADER
   Paste at the VERY END of Additional CSS
========================================================== */

/* Overall header */
#masthead.site-header {
    position: relative;
    z-index: 50;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 104px;
    padding: 14px 40px;

    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(98, 51, 104, 0.10);

    box-shadow: 0 8px 28px rgba(46, 27, 49, 0.05);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-sizing: border-box;
}

/* Remove the giant centered branding area */
#masthead .site-branding {
    display: flex;
    align-items: center;

    width: auto !important;
    max-width: none !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
}

/* Logo wrapper */
#masthead .site-logo {
    display: flex;
    align-items: center;

    margin: 0 !important;
    padding: 0 !important;
}

/* Logo link */
#masthead .custom-logo-link {
    display: flex;
    align-items: center;

    margin: 0 !important;
    padding: 0 !important;
}

/* Actual logo */
#masthead img.custom-logo {
    display: block;

    width: auto !important;
    height: 76px !important;
    max-width: 290px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
}

/* Navigation bar */
#masthead .main-navigation,
#masthead nav {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* If the purple menu sits outside the header, tighten it */
.main-navigation,
.site-navigation,
#site-navigation {
    min-height: 0 !important;

    background:
        linear-gradient(
            135deg,
            #59285f 0%,
            #67336d 100%
        ) !important;
}

/* Menu list */
.main-navigation ul,
.site-navigation ul,
#site-navigation ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none;
}

/* Menu links */
.main-navigation a,
.site-navigation a,
#site-navigation a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 16px !important;

    color: #ffffff !important;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;

    text-decoration: none;
    text-transform: uppercase;
}

/* Remove decorative dots between menu items if theme inserts them */
.main-navigation li::before,
.main-navigation li::after,
.site-navigation li::before,
.site-navigation li::after,
#site-navigation li::before,
#site-navigation li::after {
    content: none !important;
}

/* Hover/current page */
.main-navigation a:hover,
.site-navigation a:hover,
#site-navigation a:hover,
.main-navigation .current-menu-item > a,
.site-navigation .current-menu-item > a,
#site-navigation .current-menu-item > a {
    background: rgba(255, 255, 255, 0.10);
}

/* Reduce gap between header/nav and page content */
#masthead + .main-navigation,
#masthead + #site-navigation,
.site-header + .main-navigation,
.site-header + #site-navigation {
    margin-top: 0 !important;
}

/* Logged-in admin bar offset for sticky header */
.admin-bar #masthead.site-header {
    top: 32px;
}

/* Tablet */
@media (max-width: 900px) {

    #masthead.site-header {
        min-height: 86px;
        padding: 10px 22px;
    }

    #masthead img.custom-logo {
        height: 62px !important;
        max-width: 235px !important;
    }

    .main-navigation a,
    .site-navigation a,
    #site-navigation a {
        padding: 0 11px !important;
        font-size: 12px;
    }

}

/* Mobile */
@media (max-width: 700px) {

    #masthead.site-header {
        display: block;

        min-height: 0;
        padding: 12px 16px;

        text-align: center;
    }

    #masthead .site-branding,
    #masthead .site-logo,
    #masthead .custom-logo-link {
        justify-content: center;
    }

    #masthead img.custom-logo {
        height: 58px !important;
        max-width: 220px !important;
    }

    .main-navigation ul,
    .site-navigation ul,
    #site-navigation ul {
        flex-wrap: wrap;
    }

    .main-navigation a,
    .site-navigation a,
    #site-navigation a {
        min-height: 42px;
        padding: 0 10px !important;
        font-size: 11px;
    }

}


/* ==========================================================
   PARKER PRODUCTIVITY — LIGHTER HEADER / NAV
   Paste at the VERY END of Additional CSS
========================================================== */

/* Turn the navigation from a solid purple bar into a light glass strip */
.main-navigation,
.site-navigation,
#site-navigation {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.96),
            rgba(248,243,250,0.92)
        ) !important;

    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 14px;

    box-shadow:
        0 10px 28px rgba(54,31,57,0.07);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Darker text instead of white */
.main-navigation a,
.site-navigation a,
#site-navigation a {
    color: #4f3f52 !important;

    min-height: 44px;
    padding: 0 15px !important;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* Softer hover/current state */
.main-navigation a:hover,
.site-navigation a:hover,
#site-navigation a:hover,
.main-navigation .current-menu-item > a,
.site-navigation .current-menu-item > a,
#site-navigation .current-menu-item > a {
    background: rgba(98,51,104,0.08) !important;
    color: #623368 !important;
}

/* If Stow is generating dot separators, soften them rather than showing white */
.main-navigation li::after,
.site-navigation li::after,
#site-navigation li::after {
    color: rgba(98,51,104,0.28) !important;
}

/* Give the whole header a little more visual cohesion */
#masthead.site-header {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.98),
            rgba(251,248,252,0.96)
        );
}

/* Slightly reduce the logo so it feels less dominant */
#masthead img.custom-logo {
    height: 68px !important;
    max-width: 255px !important;
}

/* Mobile */
@media (max-width: 700px) {

    .main-navigation,
    .site-navigation,
    #site-navigation {
        border-radius: 12px;
    }

    .main-navigation a,
    .site-navigation a,
    #site-navigation a {
        min-height: 40px;
        padding: 0 10px !important;
    }

}/* Nudge navigation to the right */
.main-navigation,
.site-navigation,
#site-navigation{
    margin-left: 130px;
}


/* Parker logo size correction */
#masthead img.custom-logo {
    width: 190px !important;
    height: auto !important;
    max-width: 190px !important;
}

/* Keep the logo wrapper transparent */
#masthead .site-logo,
#masthead .custom-logo-link,
#masthead .site-branding {
    background: transparent !important;
}



/* ==========================================================
   PARKER PRODUCTIVITY — WORKING HOME HERO BUTTON
========================================================== */

.pp-home-hero-section {
    width: 100%;
    padding: 28px 24px 38px;
    background: #ffffff;
    box-sizing: border-box;
}

.pp-home-hero-wrap {
    width: min(100%, 1240px);
    margin: 0 auto;
}

.pp-home-hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 18px 50px rgba(48, 27, 51, 0.10);
}

.pp-home-hero-image img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;
    padding: 0;
}

/*
 * Real button positioned over the button baked into the image.
 * Percentages allow it to scale with the image.
 */
.pp-home-hero-hotspot {
    position: absolute;

    left: 5.5%;
    top: 64.7%;

    width: 29%;
    height: 5.5%;

    margin: 0;
    padding: 0;

    appearance: none;
    border: 0;
    border-radius: 8px;

    background: transparent;

    cursor: pointer;
    z-index: 5;
}

/* Keyboard accessibility */
.pp-home-hero-hotspot:focus-visible {
    outline: 3px solid #276184;
    outline-offset: 3px;
}

/* Optional subtle confirmation on hover */
.pp-home-hero-hotspot:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Screen-reader-only label */
.pp-home-hero-hotspot .screen-reader-text {
    position: absolute !important;

    width: 1px !important;
    height: 1px !important;

    padding: 0 !important;
    margin: -1px !important;

    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;

    border: 0 !important;
}

/* Mobile */
@media (max-width: 700px) {

    .pp-home-hero-section {
        padding: 16px 14px 26px;
    }

    .pp-home-hero-image {
        border-radius: 12px;
    }

}

/* ==========================================================
   HOME HERO — FORCE WIDE LAYOUT
   This bypasses Stow's narrow content wrapper directly.
========================================================== */

.pp-home-hero-section {
    position: relative !important;
    left: 50% !important;

    width: 100vw !important;
    max-width: 100vw !important;

    margin: 0 0 38px !important;
    padding: 28px 28px 38px !important;

    transform: translateX(-50%) !important;

    background: #ffffff;
    box-sizing: border-box;
}

.pp-home-hero-wrap {
    width: calc(100vw - 56px) !important;
    max-width: 1240px !important;

    margin: 0 auto !important;
    padding: 0 !important;
}

.pp-home-hero-image {
    position: relative !important;

    width: 100% !important;
    max-width: 1240px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 18px 50px rgba(48, 27, 51, 0.10);
}

.pp-home-hero-image img {
    display: block !important;

    width: 100% !important;
    max-width: none !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* Real clickable area over the baked-in image button */
.pp-home-hero-hotspot {
    position: absolute !important;

    left: 5.5% !important;
    top: 55.8% !important;

    width: 29% !important;
    height: 5.7% !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 8px !important;

    background: transparent !important;

    cursor: pointer;
    z-index: 20;
}

.pp-home-hero-hotspot:focus-visible {
    outline: 3px solid #276184 !important;
    outline-offset: 3px !important;
}

/* Prevent the theme's general image limits from shrinking this one */
.entry-content .pp-home-hero-image img,
.site-content .pp-home-hero-image img,
main .pp-home-hero-image img {
    width: 100% !important;
    max-width: none !important;
}

/* Mobile */
@media (max-width: 700px) {

    .pp-home-hero-section {
        width: 100vw !important;
        padding: 16px 14px 26px !important;
    }

    .pp-home-hero-wrap {
        width: calc(100vw - 28px) !important;
    }

    .pp-home-hero-image {
        border-radius: 12px;
    }
}




.site-info {
    display: none;
}



/* Footer links */

.pp-footer-links{
    text-align:center;
    margin:28px auto 0;
    font-size:.92rem;
    color:#8b8b8b;
    line-height:1.8;
}

.pp-footer-links a{
    color:#7a4b8a;
    text-decoration:none;
    font-weight:500;
    transition:.2s;
}

.pp-footer-links a:hover{
    color:#276184;
}

.pp-footer-links span{
    color:#bdbdbd;
    margin:0 10px;
}


/* ==========================================================
   PARKER PRODUCTIVITY — TESTIMONIALS PAGE
========================================================== */

.pp-testimonials-page {
    padding: 42px 0 58px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #faf7fb 100%
        );
}

.pp-testimonials-header {
    width: min(100%, 820px);
    margin: 0 auto 34px;
    text-align: center;
}

.pp-testimonials-header .pp-eyebrow {
    margin: 0 0 10px;
}

.pp-testimonials-header h1 {
    margin: 0 0 16px;
    color: #5b2363;
    font-size: clamp(42px, 6vw, 66px);
    line-height: 1.05;
    font-weight: 400;
}

.pp-testimonials-header > p:last-child {
    margin: 0;
    color: #686168;
    font-size: 18px;
    line-height: 1.7;
}

.pp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.pp-testimonial-card {
    position: relative;
    padding: 38px 36px 32px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.96),
            rgba(248,243,250,0.84)
        );

    border: 1px solid rgba(98,51,104,0.10);
    border-radius: 18px;

    box-shadow:
        0 18px 44px rgba(54,31,57,0.07);

    overflow: hidden;
}

.pp-testimonial-card-featured {
    background:
        linear-gradient(
            145deg,
            rgba(98,51,104,0.09),
            rgba(255,255,255,0.94)
        );

    border-color: rgba(98,51,104,0.17);
}

.pp-testimonial-mark {
    position: absolute;
    top: 8px;
    left: 20px;

    color: rgba(98,51,104,0.09);

    font-family: Georgia, serif;
    font-size: 110px;
    line-height: 1;
}

.pp-testimonial-card blockquote {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #5e5760;

    font-size: 17px;
    line-height: 1.76;
    font-style: normal;
}

.pp-testimonial-card cite {
    position: relative;
    z-index: 2;

    display: block;
    margin-top: 24px;

    color: #623368;

    font-size: 15px;
    font-weight: 700;
    font-style: normal;
}

.pp-testimonial-card cite::before {
    content: "— ";
}

.pp-testimonials-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;

    margin-top: 30px;
    padding: 34px 38px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.94),
            rgba(245,238,247,0.88)
        );

    border: 1px solid rgba(98,51,104,0.11);
    border-radius: 18px;

    box-shadow:
        0 18px 44px rgba(54,31,57,0.07);
}

.pp-testimonials-cta h2 {
    margin: 6px 0 8px;

    color: #5b2363;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 400;
}

.pp-testimonials-cta p {
    margin: 0;
    color: #686168;
    line-height: 1.65;
}

.pp-testimonials-button {
    min-width: 220px;
    min-height: 54px;
    padding: 14px 24px;

    border: 0;
    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #623368,
            #7a4b82
        );

    color: #ffffff;

    font: inherit;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 12px 28px rgba(64,31,69,0.18);
}

@media (max-width: 800px) {

    .pp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pp-testimonials-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pp-testimonials-button {
        width: min(100%, 360px);
        margin: 0 auto;
    }

}

@media (max-width: 600px) {

    .pp-testimonials-page {
        padding: 30px 0 40px;
    }

    .pp-testimonials-header {
        text-align: left;
    }

    .pp-testimonial-card {
        padding: 32px 25px 28px;
    }

    .pp-testimonials-cta {
        padding: 28px 24px;
    }

}