/* Blocksy Child - Custom Styles */

body {
    outline: 3px solid transparent;
}

.ct-back-to-top {
    background: var(--ps-green-dark) !important;
    border-radius: 999px !important;
}

.ct-back-to-top:hover {
    background: var(--ps-green) !important;
    border-radius: 999px !important;
}

[data-header*="type-1"] #offcanvas .ct-panel-inner {
    background-color: rgb(169 217 186) !important;
}

/* =========================================================
   BRAND COLORS — Pinnacle Consulting Solutions Inc
   Single source of truth
========================================================= */
:root {
    --ps-green-dark: #276c1f !important;
    /* Main headings */
    --ps-green: #2c9008 !important;
    /* Accents / buttons */
    --ps-green-soft: #eaf4ef;
    /* Pills / soft backgrounds */

    --ps-text-main: #1e2b26;
    --ps-text-muted: #5f6f69;

    --ps-bg-main: #ffffff;

    --theme-link-initial-color: var(--ps-text-main);
    --theme-link-hover-color: var(--ps-green);
    --theme-link-active-color: var(--ps-green-dark);
}

/* =========================================================
   GLOBAL CONTAINER (align custom sections with Blocksy header)
   Header .ct-container = 1290px ✅
========================================================= */
:root {
    --ps-wrap: 1290px;
    --ps-pad: 20px;
    /* side padding on mobile */
}

/* Your custom container */
.ps-container {
    width: 100%;
    max-width: var(--ps-wrap);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--ps-pad);
    padding-right: var(--ps-pad);
}

/* Safety: remove unexpected WP block spacing around our sections */
.ps-container> :first-child {
    margin-top: 0;
}

.ps-container> :last-child {
    margin-bottom: 0;
}



/* =========================================================
   HEADER MENU: default / hover / active
   Blocksy uses CSS variables for menu colors
========================================================= */

/* Default menu link color */
#header .ct-menu a,
#header [class*="header-menu"] a {
    color: var(--ps-text-main) !important;
}

/* Hover color */
#header .ct-menu a:hover,
#header [class*="header-menu"] a:hover {
    color: var(--ps-green) !important;
}

/* Active (current page) color */
#header .current-menu-item>a,
#header .current_page_item>a,
#header .current-menu-ancestor>a {
    color: var(--ps-green-dark) !important;
}

/* Optional: active underline (looks premium) */
#header .current-menu-item>a {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

/* =========================================================
   HEADER BUTTON (your "Download" / CTA)
========================================================= */
#header .ct-header-cta .ct-button,
#header .ct-header-cta .ct-button-ghost,
#header .ct-header-cta .ct-button-solid,
#header .ct-header-cta a.ct-button,
#header .ct-header-cta a.ct-button-solid {
    background: var(--ps-green) !important;
    border-color: var(--ps-green) !important;
    color: #fff !important;
    border-radius: 10px;
}

/* Hover for header button */
#header .ct-header-cta .ct-button:hover,
#header .ct-header-cta a.ct-button:hover {
    background: var(--ps-green-dark) !important;
    border-color: var(--ps-green-dark) !important;
    transform: translateY(-3px);
}


/* Headings */
.ps-hero h1,
.ps-hero h2,
.ps-section-title {
    color: var(--ps-green-dark);
}

/* Text */
.ps-hero p,
.ps-text {
    color: var(--ps-text-main);
}



/* =========================================================
   GLOBAL: Reveal animation
   Premium slow reveal (200px, x2 slower)
========================================================= */

/* =========================================================
   REVEAL BASE (shared)
========================================================= */
.ps-reveal,
.ps-reveal-left,
.ps-reveal-right {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 1.2s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* =========================================================
   FROM BOTTOM
========================================================= */
.ps-reveal {
    transform: translateY(200px);
}

.ps-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
    border-radius: 22px;
}

/* =========================================================
   FROM LEFT
========================================================= */
.ps-reveal-left {
    transform: translateX(-200px);
}

.ps-reveal-left.is-in {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================
   FROM RIGHT
========================================================= */
.ps-reveal-right {
    transform: translateX(200px);
}

.ps-reveal-right.is-in {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================
   OPTIONAL SPEED MODIFIERS
========================================================= */
.ps-reveal[data-speed="2"],
.ps-reveal-left[data-speed="2"],
.ps-reveal-right[data-speed="2"] {
    transition-duration: 2.4s;
}

.ps-reveal[data-speed="3"],
.ps-reveal-left[data-speed="3"],
.ps-reveal-right[data-speed="3"] {
    transition-duration: 3.6s;
}







/* =========================================================
   GLOBAL: Typography helpers (reuse across site)
========================================================= */
.ps-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0E3B2E;
}

.ps-h1 {
    margin: 14px 0 14px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.08;
    font-size: clamp(34px, 4.2vw, 56px);
    color: #0E3B2E;
}

.ps-text {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.75;
    color: #1A1A1A;
}

/* =========================================================
   GLOBAL: Buttons (reuse)
========================================================= */
.ps-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    line-height: 1;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
    border: 1px solid #2C9008;
}

.ps-btn:active {
    transform: translateY(1px);
}

.ps-btn--primary {
    background: #2C9008;
    color: #fff;
}

.ps-btn--primary:hover {
    background: var(--ps-green-dark) !important;
    border-color: var(--ps-green-dark) !important;
    color: #fff;
    transform: translateY(-3px);
}

.ps-btn--ghost {
    background: rgb(221 227 225 / 97%);
    color: #0E3B2E;
    border: 1px solid #c2c2c2;
}

.ps-btn--ghost:hover {
    background: #f9f7f0;
    transform: translateY(-3px);
}

/* =========================================================
   BLOCK: Hero
========================================================= */
/* =========================================================
   HERO: remove top spacing added by Blocksy container
========================================================= */
.page-id-18 .ct-container-full {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* =========================================================
   HERO spacing (clean & premium)
========================================================= */
.ps-hero {
    position: relative;
    padding: 60px 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    /* overflow: hidden; */

    /* Soft mint canvas */
    background:
        radial-gradient(1100px 520px at 12% 22%, #FBF3E8, transparent 62%),
        radial-gradient(920px 520px at 88% 18%, rgba(137, 251, 209, .18), transparent 66%),
        linear-gradient(180deg, rgba(238, 251, 245, .92), rgba(255, 255, 255, .98));
}

/* Extra “corner haze” like your example */
.ps-hero::before,
.ps-hero::after {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    z-index: 0;
}

.ps-hero::before {
    background:
        radial-gradient(560px 360px at 0% 0%, rgba(137, 251, 209, .22), transparent 70%),
        radial-gradient(520px 340px at 100% 0%, rgba(137, 251, 209, .16), transparent 72%);
    opacity: .95;
}

.ps-hero::after {
    background:
        radial-gradient(620px 380px at 0% 100%, rgba(137, 251, 209, .14), transparent 72%),
        radial-gradient(620px 380px at 100% 100%, rgba(137, 251, 209, .12), transparent 74%);
    opacity: .9;
}

/* Ensure content stays above background haze */
.ps-hero__inner {
    position: relative;
    z-index: 1;
}

.ps-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: center;
}

.ps-hero__lead {
    max-width: 54ch;
    margin-top: 10px;
}

.ps-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.ps-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.ps-hero__badges li {
    font-size: 13px;
    color: #0E3B2E;
    border: 1px solid #DDE7E2;
    background: #F6FBF8;
    padding: 8px 12px;
    border-radius: 999px;
}

/* =========================================================
   Hero Visual Card
========================================================= */
.ps-hero__card {
    border-radius: 18px;
    border: 1px solid #E6EBF0;
    background: linear-gradient(180deg, #F6FBF8 0%, #FFFFFF 60%);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.ps-hero__cardTop {
    padding: 18px 18px 0;
}

.ps-hero__tag {
    display: inline-flex;
    font-size: 12px;
    color: #0E3B2E;
    background: rgba(30, 127, 92, 0.10);
    border: 1px solid rgba(30, 127, 92, 0.18);
    padding: 8px 10px;
    border-radius: 999px;
}

.ps-hero__stat {
    margin-top: 14px;
    display: grid;
    gap: 2px;
}

.ps-hero__statNum {
    font-weight: 800;
    color: #0E3B2E;
    font-size: 18px;
}

.ps-hero__statLabel {
    font-size: 13px;
    color: rgba(26, 26, 26, 0.75);
}

/* =========================================================
   HERO IMAGE
========================================================= */
.ps-hero__img {
    height: 260px;
    margin: 18px;
    border-radius: 14px;

    background-image:
        linear-gradient(rgba(14, 59, 46, 0.18), rgba(14, 59, 46, 0.18)),
        url("/wp-content/uploads/hero-consulting.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}


.ps-hero__cardBottom {
    padding: 0 18px 18px;
    display: grid;
    gap: 10px;
}

.ps-hero__mini {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(26, 26, 26, 0.78);
}

.ps-hero__link {
    display: inline-flex;
    width: fit-content;
    font-weight: 700;
    text-decoration: none;
    color: #0E3B2E;
}

.ps-hero__link:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 992px) {
    .ps-hero {
        padding: 72px 0 56px;
    }

    .ps-hero__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .ps-hero__img {
        height: 220px;
    }
}

@media (max-width: 520px) {
    .ps-text {
        font-size: 16px;
    }

    .ps-btn {
        width: 100%;
    }
}


@media (max-width: 992px) {
    .ps-hero__img {
        height: 220px;
    }
}

@media (max-width: 520px) {
    .ps-hero__img {
        height: 200px;
        margin: 12px;
    }
}

/* =========================================================
   HERO: Mobile perfection (visual first, compact, premium)
========================================================= */

@media (max-width: 992px) {
    .ps-hero {
        padding: 64px 0 52px;
    }

    .ps-hero__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* 1) Visual first on mobile/tablet */
    .ps-hero__visual {
        order: -1;
    }

    .ps-hero__content {
        order: 0;
    }

    /* 2) Center the card and keep it elegant */
    .ps-hero__card {
        max-width: 640px;
        margin: 0 auto;
    }

    .ps-hero__cardTop {
        padding: 16px 16px 0;
    }

    .ps-hero__img {
        height: 220px;
        margin: 14px;
        border-radius: 14px;
    }

    .ps-hero__cardBottom {
        padding: 0 16px 16px;
    }
}

@media (max-width: 520px) {
    .ps-hero {
        padding: 25px 0 46px;
    }

    /* Typography a bit tighter */
    .ps-kicker {
        font-size: 11px;
        letter-spacing: .22em;
    }

    /* If your .ps-h1 is global, this will only affect hero title */
    .ps-hero .ps-h1 {
        font-size: clamp(34px, 9vw, 38px);
        line-height: 1.05;
    }

    .ps-hero__lead {
        margin-top: 10px;
        max-width: none;
    }

    /* Buttons: clean full-width stack */
    .ps-hero__cta {
        gap: 10px;
    }

    .ps-hero__cta .ps-btn {
        width: 100%;
        justify-content: center;
    }

    /* Badges: neat grid (2 columns) */
    .ps-hero__badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .ps-hero__badges li {
        font-size: 12px;
        padding: 8px 10px;
        text-align: center;
    }

    /* Card image a bit smaller on phones */
    .ps-hero__card {
        border-radius: 18px;
    }

    .ps-hero__img {
        height: 200px;
        margin: 12px;
    }
}





/* =========================================================
   SECTION: Services Preview
========================================================= */
.ps-services {
    padding: clamp(56px, 6vw, 66px) 0;
    background: #fff;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.ps-services__head {
    text-align: center;
    margin-bottom: clamp(24px, 3vw, 36px);
}

.ps-kicker {
    margin: 0 0 10px;
    letter-spacing: .18em;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(30, 42, 50, .65);
}

.ps-section-title {
    margin: 0 0 12px;
    color: var(--ps-green-dark);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.1;
}

.ps-lead {
    margin: 0 auto;
    max-width: 720px;
    color: rgba(30, 42, 50, .75);
    font-size: 16px;
    line-height: 1.7;
}

.ps-services__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
    margin-top: 28px;
}

/* =========================================================
   Services Card Hover Effect
   Soft green highlight on hover
========================================================= */

.ps-card {
    background: #ffffff;
    grid-column: span 4;
    border: 1px solid rgba(21, 86, 64, .14);
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 18px 50px rgba(15, 35, 28, .06);
    transition:
        background-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease,
        border-color .35s ease;
}

.ps-card:hover {
    background-color: #E9FBF4;
    /* soft mint green */
    border-color: #89FBD1;
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(31, 122, 90, .18);
}

/* Title stays strong */
.ps-card:hover .ps-card__title {
    color: var(--ps-green-dark);
}

/* Link becomes more confident */
.ps-card:hover .ps-card__link {
    color: var(--ps-green-dark);
}

/* Icon background slightly stronger */
.ps-card:hover .ps-card__icon {
    background: rgba(137, 251, 209, .35);
}


.ps-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(31, 122, 90, .10);
    margin-bottom: 14px;
    font-size: 20px;
}

.ps-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--ps-green-dark);
}

.ps-card__text {
    margin: 0 0 14px;
    color: rgba(30, 42, 50, .78);
    line-height: 1.7;
    font-size: 15px;
}

.ps-card__link {
    color: var(--ps-green);
    font-weight: 600;
    text-decoration: none;
}

.ps-card__link:hover {
    color: var(--ps-green-dark);
    text-decoration: underline;
    text-underline-offset: 6px;
}

.ps-services__cta {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.ps-services__grid:hover .ps-card {
    opacity: .92;
}

.ps-services__grid:hover .ps-card:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 980px) {
    .ps-card {
        grid-column: span 6;
    }
}

@media (max-width: 640px) {
    .ps-services__head {
        text-align: left;
    }

    .ps-lead {
        margin-inline: 0;
    }

    .ps-card {
        grid-column: span 12;
    }

    .ps-services__cta {
        justify-content: flex-start;
    }
}





/* =========================================================
  SECTION: Why Pinnacle (Trust / Benefits)
========================================================= */
.ps-why {
    padding: 60px 0;
}

.ps-why__head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 34px;
}

.ps-kicker {
    display: inline-block;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-size: 12px;
    opacity: .72;
    margin-bottom: 10px;
}

.ps-h2 {
    margin: 0 0 10px;
    line-height: 1.08;
    font-size: clamp(28px, 3.2vw, 44px);
    color: var(--ps-green-dark);
}

.ps-lead {
    margin: 0 auto;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ps-text-main);
    opacity: .92;
}

/* Grid */
.ps-why__grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ps-why-card {
    padding: 22px 18px;
    border-radius: 18px;
}

.ps-why-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(137, 251, 209, .22);
    border: 1px solid rgba(21, 86, 64, .14);
    font-weight: 700;
    margin-bottom: 12px;
}

/* Reuse card text system */
.ps-card__title {
    margin: 0 0 8px;
    font-size: 18px;
    color: var(--ps-green-dark);
}

.ps-card__text {
    margin: 0;
    color: var(--ps-text-main);
    line-height: 1.65;
    opacity: .92;
}

/* Stats */
.ps-stats {
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(233, 251, 244, .6);
    border: 1px solid rgba(21, 86, 64, .12);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ps-stat {
    text-align: center;
    padding: 10px 8px;
}

.ps-stat__num {
    font-size: 26px;
    font-weight: 700;
    color: var(--ps-green-dark);
    line-height: 1.1;
}

.ps-stat__label {
    margin-top: 6px;
    font-size: 13px;
    color: var(--ps-text-main);
    opacity: .86;
}

/* CTA */
.ps-why__cta {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ps-hero__content .ps-btn:hover {
    background: var(--ps-green-dark);
    color: #fff;
    transform: translateY(-3px);
}

.ps-btn-primary {
    background: #2c9008;
    color: #fff;
    box-shadow: 0 18px 40px rgba(31, 122, 90, .16);
    border: 1px solid #56a63a;
}

.ps-btn-primary:hover {
    background: var(--ps-green-dark);
    transform: translateY(-3px);
    color: #fff !important;
}

.ps-btn-ghost {
    background: #dbf3ea;
    border: 1px solid rgba(21, 86, 64, .18);
    color: var(--ps-green-dark);
}

.ps-btn-ghost:hover {
    background: #E9FBF4;
    border-color: #89FBD1;
    transform: translateY(-3px);
    color: #1f6a50;
}

/* Responsive */
@media (max-width: 980px) {
    .ps-why__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ps-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .ps-why {
        padding: 72px 0;
    }

    .ps-why__grid {
        grid-template-columns: 1fr;
    }

    .ps-stats {
        grid-template-columns: 1fr;
    }
}




/* =========================================================
   SECTION: How It Works (Timeline)
   Notes:
   - Different look from Services cards
   - Soft green background + vertical milestones
========================================================= */

.ps-how.ps-section {
    margin: 0;
    padding: 96px 0;
    background: linear-gradient(180deg,
            rgba(137, 251, 209, 0.35) 0%,
            rgba(137, 251, 209, 0.26) 35%,
            rgba(255, 255, 255, 1) 100%);
    width: 100%;
    max-width: 100%;
}

.ps-how__inner {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto;
}

.ps-how__head {
    text-align: center;
    margin-bottom: 44px;
}

.ps-kicker {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 10px;
}

.ps-section-title {
    margin: 0 0 10px;
    line-height: 1.05;
}

.ps-lead {
    margin: 0 auto;
    max-width: 720px;
    opacity: 0.85;
}

/* Timeline layout */
.ps-how__timeline {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 10px 0 0;
}

/* Decorative vertical line */
.ps-how__line {
    position: absolute;
    left: 28px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg,
            rgba(22, 102, 74, 0.10),
            rgba(22, 102, 74, 0.22),
            rgba(22, 102, 74, 0.10));
    border-radius: 999px;
}

/* One step row */
.ps-how__step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: start;
    gap: 18px;
}

/* Dot with number */
.ps-how__dot {
    position: sticky;
    top: 122px;
    /* nice effect when scrolling */
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(22, 102, 74, 0.14);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
    display: grid;
    place-items: center;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ps-how__num {
    font-weight: 700;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

/* Content card */
.ps-how__card {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(22, 102, 74, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    padding: 24px 26px;
    transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.ps-how__card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 40px 95px rgba(0, 0, 0, 0.10);
}

.ps-how__cardTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.ps-how__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}

.ps-how__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    border: 1px solid rgba(22, 102, 74, 0.16);
    background: rgba(137, 251, 209, 0.18);
    color: rgba(10, 46, 34, 0.92);
    white-space: nowrap;
}

.ps-how__badge svg {
    display: block;
    opacity: 0.9;
}

.ps-how__text {
    margin: 0 0 14px;
    opacity: 0.9;
}

.ps-how__bullets {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    opacity: 0.92;
}

/* CTA row */
.ps-how__cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 720px) {
    .ps-how.ps-section {
        padding: 76px 0;
    }

    .ps-how__line {
        left: 22px;
    }

    .ps-how__step {
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .ps-how__dot {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        top: 90px;
    }

    .ps-how__card {
        padding: 18px 18px;
        border-radius: 18px;
    }

    .ps-how__title {
        font-size: 18px;
    }
}





/* =========================================================
   HOW IT WORKS: Premium background (SAFE for sticky)
   - No overflow
   - No pseudo layers
========================================================= */

.ps-how.ps-section {
    background:
        radial-gradient(900px 420px at 15% 20%, rgba(137, 251, 209, 0.16), transparent 60%),
        radial-gradient(700px 380px at 80% 35%, rgba(137, 251, 209, 0.12), transparent 62%),
        linear-gradient(180deg, rgba(245, 252, 249, 0.90), rgba(255, 255, 255, 0.98));
}

/* =========================================================
   HOW IT WORKS: Premium cards (SAFE)
========================================================= */

.ps-how__card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(22, 102, 74, 0.14);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.10);
}

.ps-how__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}






/* =========================================================
   SECTION: Results / Mini Case Studies
========================================================= */

.ps-results.ps-section {
    margin: 0;
    padding: 60px 0;
    width: 100%;
    max-width: 100%;
    background:
        radial-gradient(900px 420px at 15% 15%, rgba(137, 251, 209, .14), transparent 60%),
        radial-gradient(700px 380px at 85% 35%, rgba(137, 251, 209, .10), transparent 62%),
        linear-gradient(180deg, rgba(245, 252, 249, .92), rgba(255, 255, 255, .98));
}

.ps-results__head {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 42px;
}

.ps-results__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: start;
}

.ps-results__metrics {
    display: grid;
    gap: 18px;
}

.ps-metric {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(22, 102, 74, .14);
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .10);
}

.ps-metric__top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: baseline;
    margin-bottom: 10px;
}

.ps-metric__label {
    font-weight: 700;
    color: var(--ps-green-dark);
    letter-spacing: .2px;
}

.ps-metric__value {
    font-weight: 800;
    font-size: 34px;
    line-height: 1;
    color: var(--ps-green-dark);
}

.ps-metric__value span {
    font-size: 18px;
    font-weight: 800;
    opacity: .9;
}

.ps-metric__bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(22, 102, 74, .10);
    overflow: hidden;
}

.ps-metric__bar span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--ps-green-dark);
}

.ps-metric__note {
    margin-top: 10px;
    color: rgba(11, 17, 28, .74);
    font-size: 14px;
    line-height: 1.5;
}

.ps-results__cases {
    display: grid;
    gap: 18px;
}

.ps-case {
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(22, 102, 74, .14);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .10);
}

.ps-case__tag {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(137, 251, 209, .18);
    border: 1px solid rgba(22, 102, 74, .12);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .12em;
    color: rgba(22, 102, 74, .86);
    margin-bottom: 10px;
}

.ps-case__title {
    margin: 0 0 10px;
    color: var(--ps-green-dark);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.25;
}

.ps-case__list {
    margin: 0 0 14px;
    padding-left: 18px;
    color: rgba(11, 17, 28, .74);
}

.ps-case__list li {
    margin: 6px 0;
}

.ps-case__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ps-case__pill {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(22, 102, 74, .06);
    border: 1px solid rgba(22, 102, 74, .12);
    color: rgba(22, 102, 74, .88);
    font-weight: 700;
    font-size: 13px;
}

.ps-results__cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 26px;
}

/* Responsive */
@media (max-width: 980px) {
    .ps-results__grid {
        grid-template-columns: 1fr;
    }

    .ps-results__cta {
        flex-direction: column;
        align-items: center;
    }
}






/* =========================================================
  SECTION: About / Why Choose Us (Premium polish + Image hover zoom)
========================================================= */

.ps-about.ps-section {
    margin: 0;
    padding: 65px 0;
    width: 100%;
    max-width: 100%;
    background:
        radial-gradient(1100px 520px at 14% 24%, rgba(137, 251, 209, .18), transparent 62%),
        radial-gradient(900px 520px at 86% 18%, rgba(137, 251, 209, .12), transparent 66%),
        linear-gradient(180deg, rgba(245, 252, 249, .94), rgba(255, 255, 255, .99));
}

/* Layout */
.ps-about__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
    align-items: center;
    position: relative;
}

/* Subtle vertical divider (soft, not a harsh line) */
.ps-about__grid::after {
    content: "";
    position: absolute;
    top: 8%;
    bottom: 8%;
    left: 50%;
    width: 1px;
    transform: translateX(-0.5px);
    background: linear-gradient(180deg, transparent, rgba(22, 102, 74, .18), transparent);
    opacity: .55;
    pointer-events: none;
}

/* Left panel */
.ps-about__panel {
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(22, 102, 74, .14);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
    padding: 22px;
    backdrop-filter: blur(10px);
}

.ps-about__panelTop {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(22, 102, 74, .12);
    margin-bottom: 16px;
}

.ps-about__mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(11, 17, 28, .68);
}

.ps-about__markDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(22, 102, 74, .78);
    box-shadow: 0 0 0 5px rgba(137, 251, 209, .25);
}

.ps-about__panelTitle {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
    color: var(--ps-green-dark);
    font-weight: 800;
}

.ps-about__panelText {
    margin: 0;
    color: rgba(11, 17, 28, .74);
    line-height: 1.65;
}

/* =========================================================
   Premium image strip + Hover Zoom
   IMPORTANT: we use ::before as the image layer so we can scale it
========================================================= */

.ps-about__media {
    margin-top: 14px;
    height: 235px;
    /* slightly taller = more premium */
    border-radius: 18px;
    border: 1px solid rgba(22, 102, 74, .14);
    position: relative;
    overflow: hidden;
    /* KEY: keeps zoom inside frame */
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
    transform: translateZ(0);
    /* prevents micro-jitter */
}

/* Image layer (scales on hover) */
.ps-about__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/wp-content/uploads/about-consulting.jpg");
    /* <-- your image */
    background-size: cover;
    background-position: center;
    transform: scale(1);
    filter: saturate(.92) contrast(1.03) brightness(.98);
    transition: transform 700ms cubic-bezier(.2, .8, .2, 1), filter 700ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

/* Overlay layer (keeps brand tint) */
.ps-about__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 59, 46, 0.24), rgba(14, 59, 46, 0.10) 55%, rgba(14, 59, 46, 0.00));
    opacity: .85;
    transition: opacity 700ms cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
}

/* Hover effect */
.ps-about__media:hover::before {
    transform: scale(1.06);
    filter: saturate(.98) contrast(1.05) brightness(1);
}

.ps-about__media:hover::after {
    opacity: .65;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .ps-about__media::before,
    .ps-about__media::after {
        transition: none !important;
    }
}

/* Tiles */
.ps-about__tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ps-about__tile {
    border-radius: 18px;
    background: rgba(233, 251, 244, .62);
    border: 1px solid rgba(22, 102, 74, .12);
    padding: 14px 14px 12px;
    min-height: 94px;
    /* makes them feel aligned */
    display: grid;
    align-content: start;
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.ps-about__tile:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 251, 209, .75);
    background: rgba(233, 251, 244, .92);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.ps-about__tileNum {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--ps-green-dark);
    margin-bottom: 4px;
}

.ps-about__tileLabel {
    font-size: 13px;
    color: rgba(11, 17, 28, .70);
}

/* Panel bottom */
.ps-about__panelBottom {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.ps-about__miniLine {
    height: 1px;
    background: linear-gradient(90deg,
            rgba(22, 102, 74, 0.00),
            rgba(22, 102, 74, 0.26),
            rgba(22, 102, 74, 0.00));
}

.ps-about__mini {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(11, 17, 28, .70);
}

/* Right content */
.ps-about__content .ps-kicker {
    display: inline-block;
    margin-bottom: 10px;
}

.ps-about__lead {
    margin: 12px 0 16px;
    color: rgba(11, 17, 28, .76);
    line-height: 1.8;
    /* more premium readability */
}

/* Bullets */
.ps-about__bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.ps-about__bullets li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(22, 102, 74, .12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

/* First bullet slightly stronger (hierarchy) */
.ps-about__bullets li:first-child {
    background: rgba(255, 255, 255, .86);
    border-color: rgba(22, 102, 74, .18);
    box-shadow: 0 16px 46px rgba(22, 102, 74, .10);
}

.ps-about__check {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(137, 251, 209, .26);
    border: 1px solid rgba(22, 102, 74, .14);
    color: rgba(22, 102, 74, .92);
    font-weight: 900;
}

/* CTA row */
.ps-about__cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px) {
    .ps-about__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ps-about__grid::after {
        display: none;
    }

    .ps-about.ps-section,
    .ps-results.ps-section {
        padding: 45px 0;
    }
}






/* =========================================================
  SECTION: How We Work + Who We Work With (Green premium style)
========================================================= */

.ps-how.ps-section,
.ps-who.ps-section {
    margin: 0;
    padding: 65px 0;
    width: 100%;
    max-width: 100%;
}

/* Light green play background like screenshot */
.ps-how.ps-section {
    background:
        radial-gradient(1050px 520px at 14% 20%, rgba(137, 251, 209, .20), transparent 62%),
        radial-gradient(900px 520px at 84% 25%, rgba(137, 251, 209, .13), transparent 66%),
        linear-gradient(180deg, rgba(245, 252, 249, .96), rgba(255, 255, 255, .98));
}

.ps-who.ps-section {
    background:
        radial-gradient(950px 480px at 18% 25%, rgba(137, 251, 209, .16), transparent 62%),
        radial-gradient(820px 520px at 88% 18%, rgba(137, 251, 209, .11), transparent 66%),
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 252, 249, .94));
}

/* Grid */
.ps-how__grid,
.ps-who__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 30px;
    align-items: center;
}

.ps-who__grid {
    grid-template-columns: .95fr 1.05fr;
}

/* Text panel */
.ps-how__content,
.ps-who__content {
    position: relative;
}

.ps-how__lead,
.ps-who__lead {
    margin: 12px 0 18px;
    color: rgba(11, 17, 28, .76);
    line-height: 1.8;
}

/* === Green cards (like screenshot) === */
.ps-greenCard {
    border-radius: 20px;
    background: rgb(20 80 13);
    border: 1px solid rgba(20, 80, 13, .16);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .16);
    overflow: hidden;
    position: relative;
}

.ps-greenCard::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(700px 260px at 10% 0%, rgba(137, 251, 209, .18), transparent 60%);
    pointer-events: none;
}

/* Inside */
.ps-greenCard__inner {
    padding: 22px;
    position: relative;
    z-index: 1;
}

.ps-greenCard__kicker {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(220, 255, 245, .72);
    margin-bottom: 10px;
}

.ps-greenCard__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(137, 251, 209, .86);
    box-shadow: 0 0 0 6px rgba(137, 251, 209, .16);
}

.ps-greenCard__title {
    margin: 0 0 10px;
    color: rgba(240, 255, 250, .96);
    font-weight: 850;
    line-height: 1.15;
    font-size: clamp(22px, 2.2vw, 28px);
}

.ps-greenCard__text {
    margin: 0;
    color: rgba(220, 255, 245, .78);
    line-height: 1.75;
}

/* Steps list */
.ps-steps {
    margin-top: 16px;
    display: grid;
    gap: 12px;
}

.ps-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(22, 102, 74, .12);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
}

.ps-step:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .86);
    border-color: rgba(137, 251, 209, .55);
}

.ps-step__num {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: rgba(14, 59, 46, .96);
    background: rgba(137, 251, 209, .30);
    border: 1px solid rgba(22, 102, 74, .14);
}

.ps-step__h {
    margin: 0 0 4px;
    font-weight: 850;
    color: rgba(11, 17, 28, .92);
}

.ps-step__p {
    margin: 0;
    color: rgba(11, 17, 28, .70);
    line-height: 1.7;
}

/* =========================================================
   Media frame (2 images) + hover-zoom (images must be visible)
   Use: data-img="1" or data-img="2"
========================================================= */

.ps-mediaFrame {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(22, 102, 74, .14);
    background: rgba(255, 255, 255, .70);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .10);
    transform: translateZ(0);
    min-height: 320px;
    /* safety: ensures you see the image */
}

/* Default image = 1 */
.ps-mediaFrame::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/wp-content/uploads/approach-meeting.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1);
    /* Make image more visible */
    filter: saturate(1) contrast(1.08) brightness(1.03);
    transition: transform 750ms cubic-bezier(.2, .8, .2, 1), filter 750ms cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

/* Second image */
.ps-mediaFrame[data-img="2"]::before {
    background-image: url("/wp-content/uploads/approach-meeting-02.jpg");
}

/* Overlay (reduced so photo is visible) */
.ps-mediaFrame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(14, 59, 46, .18),
            rgba(14, 59, 46, .08) 55%,
            rgba(14, 59, 46, 0));
    opacity: .55;
    transition: opacity 750ms cubic-bezier(.2, .8, .2, 1);
}

/* Second block: overlay even lighter (faces read better) */
.ps-who .ps-mediaFrame::after {
    opacity: .45;
}

/* Hover */
.ps-mediaFrame:hover::before {
    transform: scale(1.06);
    filter: saturate(1.05) contrast(1.10) brightness(1.06);
}

.ps-mediaFrame:hover::after {
    opacity: .40;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .ps-mediaFrame::before,
    .ps-mediaFrame::after {
        transition: none !important;
    }
}

/* Small badge inside image (optional, looks expensive) */
.ps-mediaBadge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(22, 102, 74, .14);
    backdrop-filter: blur(10px);
    color: rgba(11, 17, 28, .78);
    font-weight: 700;
    font-size: 13px;
    z-index: 2;
}

/* Industries cards grid (dark green tiles like screenshot) */
.ps-industryGrid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ps-industry {
    border-radius: 18px;
    background: #276c1f;
    border: 1px solid rgba(137, 251, 209, .16);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .14);
    padding: 16px 16px;
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.ps-industry:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 251, 209, .45);
    background: rgba(16, 66, 52, .98);
}

.ps-industry__h {
    margin: 0 0 6px;
    color: rgba(240, 255, 250, .96);
    font-weight: 850;
}

.ps-industry__p {
    margin: 0;
    color: rgba(220, 255, 245, .76);
    line-height: 1.7;
    font-size: 14px;
}

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

    .ps-how__grid,
    .ps-who__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ps-industryGrid {
        grid-template-columns: 1fr;
    }

    .ps-mediaFrame {
        min-height: 260px;
    }
}

/* ✅ Mobile: WHO block order (Text first, Image second) */
@media (max-width: 980px) {

    /* We do NOT rely on classes here — only on element order in HTML */
    .ps-who__grid> :first-child {
        order: 2 !important;
        /* image goes second */
    }

    .ps-who__grid> :last-child {
        order: 1 !important;
        /* text goes first */
    }
}

@media (max-width: 980px) {

    /* 1) Turn grid into column */
    .ps-who__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
    }

    /* 2) Order: content first, image second */
    .ps-who__content {
        order: 1 !important;
    }

    .ps-who__grid>.ps-reveal-left {
        order: 2 !important;
    }

    /* 3) Make sure the image frame is visible on mobile */
    .ps-who__grid .ps-mediaFrame {
        width: 100% !important;
        min-height: 240px !important;
        /* IMPORTANT */
        height: 240px !important;
        /* IMPORTANT */
    }

    /* 4) Ensure pseudo-elements actually render full size */
    .ps-who__grid .ps-mediaFrame::before,
    .ps-who__grid .ps-mediaFrame::after {
        inset: 0 !important;
    }

}

/* =========================================================
   FIX: WHO block mobile (text first + image not hidden)
========================================================= */
@media (max-width: 980px) {

    /* 1) Order on mobile */
    .ps-who__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
    }

    .ps-who__content {
        order: 1 !important;
    }

    .ps-who__grid>.ps-reveal-left {
        order: 2 !important;
    }

    /* 2) IMPORTANT: reveal wrapper must not collapse / hide on mobile */
    .ps-who__grid>.ps-reveal-left {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        height: auto !important;
    }

    /* 3) Give the image a real height on mobile */
    .ps-who__grid .ps-mediaFrame {
        width: 100% !important;
        height: 240px !important;
        min-height: 240px !important;
    }

    /* 4) Ensure pseudo elements render */
    .ps-who__grid .ps-mediaFrame::before,
    .ps-who__grid .ps-mediaFrame::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
    }

}

/* =========================================================
   WHO block mobile: fix collapsed image width + order
========================================================= */
@media (max-width: 980px) {

    /* Order: text first, image second */
    .ps-who__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
    }

    .ps-who__content {
        order: 1 !important;
    }

    .ps-who__grid>.ps-reveal-left {
        order: 2 !important;
    }

    /* IMPORTANT: force full width (prevents thin "line") */
    .ps-who__grid>.ps-reveal-left {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .ps-who__grid>.ps-reveal-left .ps-mediaFrame {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        height: 240px !important;
        min-height: 240px !important;
        opacity: 1 !important;
        transform: none !important;
    }
}




/* =========================================================
   POLISH: desktop layout (remove empty gaps) + mobile softer sizing
========================================================= */

/* ---------- DESKTOP / TABLET: remove "empty boxes" ---------- */
.ps-how__grid,
.ps-who__grid {
    align-items: start;
    /* was center -> created empty space */
}

/* Make the image column always look "filled" */
.ps-mediaFrame {
    min-height: 420px;
    /* desktop image presence */
}

/* In HOW block: let image visually cover both left rows (text + steps) */
.ps-how__grid {
    grid-template-rows: auto 1fr;
    /* top row: greenCard, bottom row: steps */
}

.ps-how__content {
    grid-row: 1;
}

.ps-steps {
    grid-row: 2;
}

/* right column wrapper (image). Works with your current HTML wrapper */
.ps-how__grid>.ps-reveal,
.ps-how__grid>.ps-reveal-left,
.ps-how__grid>.ps-reveal-right {
    grid-row: 1 / 3;
    /* span both rows -> no empty area */
    align-self: stretch;
}

/* WHO block: keep image aligned nicely with text top */
.ps-who__grid>.ps-reveal-left {
    align-self: start;
}

/* Optional: slightly softer badge on desktop */
.ps-mediaBadge {
    padding: 9px 12px;
    font-size: 12.5px;
}

/* ---------- MOBILE: make everything softer & smaller ---------- */
@media (max-width: 980px) {

    /* Section spacing */
    .ps-how.ps-section,
    .ps-who.ps-section,
    .ps-faq.ps-section {
        padding: 45px 0;
    }

    /* Image smaller on mobile (more elegant) */
    .ps-mediaFrame {
        height: 210px !important;
        min-height: 210px !important;
        border-radius: 18px;
    }

    /* Badge smaller */
    .ps-mediaBadge {
        left: 14px;
        bottom: 14px;
        padding: 8px 10px;
        font-size: 12px;
        border-radius: 999px;
    }

    /* Steps: softer sizes */
    .ps-step {
        padding: 12px 12px;
        border-radius: 14px;
    }

    .ps-step__num {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 14px;
    }

    .ps-step__h {
        font-size: 16px;
        line-height: 1.25;
    }

    .ps-step__p {
        font-size: 14px;
        line-height: 1.65;
    }

    /* Industry cards: make them less "huge" */
    .ps-industry {
        padding: 14px 14px;
        border-radius: 16px;
    }

    .ps-industry__h {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .ps-industry__p {
        font-size: 13.5px;
        line-height: 1.6;
    }

    /* Green card: slightly smaller and softer */
    .ps-greenCard {
        border-radius: 18px;
    }

    .ps-greenCard__inner {
        padding: 18px;
    }

    .ps-greenCard__title {
        font-size: clamp(20px, 6vw, 26px);
    }

    .ps-greenCard__text {
        font-size: 14px;
        line-height: 1.7;
    }
}






/* =========================================================
  SECTION: FAQ (2 columns) + CTA (premium green)
========================================================= */

.ps-faq.ps-section {
    margin: 0;
    padding: 60px 0;
    width: 100%;
    max-width: 100%;
    background:
        radial-gradient(1050px 520px at 14% 18%, rgba(137, 251, 209, .18), transparent 62%),
        radial-gradient(900px 520px at 86% 22%, rgba(137, 251, 209, .10), transparent 66%),
        linear-gradient(180deg, rgba(245, 252, 249, .96), rgba(255, 255, 255, .98));
}

.ps-faq__top {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 22px;
}

.ps-faq__title {
    margin: 6px 0 10px;
    line-height: 1.05;
}

.ps-faq__sub {
    margin: 0;
    color: rgba(11, 17, 28, .76);
    line-height: 1.75;
    max-width: 58ch;
}

/* Grid: 2 columns */
.ps-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    align-items: start;
    margin-top: 18px;
}

.ps-faq__col {
    display: grid;
    gap: 14px;
}

/* FAQ item */
.ps-faqItem {
    border-radius: 18px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(22, 102, 74, .12);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.ps-faqCta.ps-reveal.is-in.is-visible {
    margin-top: 65px;
}

/* Button row */
.ps-faqBtn {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 18px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
}

.ps-faqQ {
    font-weight: 850;
    color: rgba(11, 17, 28, .94);
    font-size: 18px;
    line-height: 1.25;
}

.ps-faqIcon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: rgba(137, 251, 209, .26);
    border: 1px solid rgba(22, 102, 74, .14);
    color: rgba(11, 17, 28, .85);
    font-size: 22px;
    font-weight: 900;
    transition: transform .25s ease;
}

/* Panel */
.ps-faqPanel {
    height: 0;
    /* IMPORTANT: start closed */
    overflow: hidden;
    transition: height 320ms ease;
}

.ps-faqA {
    padding: 0 18px 18px;
    color: rgba(11, 17, 28, .74);
    line-height: 1.75;
}

/* Open state */
.ps-faqItem.is-open .ps-faqIcon {
    transform: rotate(45deg);
    /* plus -> x */
}

/* CTA (full width bottom) */
/* .ps-faqCta {
    margin-top: 22px;
    border-radius: 26px;
    background: rgba(14, 59, 46, .94); 
    background: rgb(20 128 96 / 94%);
    border: 1px solid rgba(137, 251, 209, .16);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
    overflow: hidden;
    position: relative;
}

.ps-faqCta::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(900px 320px at 12% 0%, rgba(137, 251, 209, .18), transparent 62%);
    pointer-events: none;
} */

/* =========================================================
   CONTACT CTA — Premium Gradient
========================================================= */
.ps-faqCta {
    background:
        radial-gradient(1200px 400px at -10% -20%, rgba(255, 255, 255, .14), transparent 60%),
        linear-gradient(135deg, #206620 0%, #33803f 45%, #5ea579 100%);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(15, 77, 63, .35), inset 0 1px 0 rgba(255, 255, 255, .15);
}

/* subtle noise / depth */
.ps-faqCta::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .08),
            rgba(0, 0, 0, .12));
    pointer-events: none;
}


.ps-faqCta__inner {
    position: relative;
    z-index: 1;
    padding: 26px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 14px 18px;
    align-items: center;
}

.ps-faqCta__copy {
    grid-column: 1;
    grid-row: 1;
}

.ps-faqCta__actions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: nowrap;
    /* IMPORTANT: one line always */
}

.ps-faqCta__actions .ps-btn {
    white-space: nowrap;
    /* IMPORTANT */
    flex: 0 0 auto;
}

.ps-faqCta__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(220, 255, 245, .72);
    margin-bottom: 10px;
}

.ps-faqCta__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(137, 251, 209, .86);
    box-shadow: 0 0 0 6px rgba(137, 251, 209, .16);
}

.ps-faqCta__title {
    margin: 0 0 8px;
    color: rgba(240, 255, 250, .96);
    font-weight: 900;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.15;
}

.ps-faqCta__text {
    margin: 0;
    color: rgba(220, 255, 245, .78);
    line-height: 1.75;
    max-width: 68ch;
}

.ps-faqCta__meta {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(220, 255, 245, .70);
    font-size: 14px;
}

.ps-faqCta__metaDot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(137, 251, 209, .26);
    border: 1px solid rgba(137, 251, 209, .18);
}



/* Responsive */
@media (max-width: 980px) {
    .ps-faq__grid {
        grid-template-columns: 1fr;
    }

    .ps-faqCta__inner {
        grid-template-columns: 1fr;
    }

    .ps-faqCta__actions {
        grid-column: 1;
        justify-content: flex-start;
    }

    .ps-faqCta__actions {
        grid-row: auto;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .ps-faqBtn {
        padding: 16px 16px;
    }

    .ps-faqQ {
        font-size: 16px;
    }

    .ps-faqIcon {
        width: 40px;
        height: 40px;
    }

    /* Buttons still one line, but smaller */
    .ps-faqCta__actions {
        gap: 10px;
    }

    .ps-faqCta__actions .ps-btn {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 999px;
    }
}







/* =========================================================
  SECTION: Reviews / Testimonials
  Premium, elegant, unique "quote rail" slider
========================================================= */

.ps-reviews.ps-section {
    margin: 0;
    padding: 60px 0;
    width: 100%;
    max-width: 100%;
    background:
        radial-gradient(980px 520px at 16% 22%, rgba(137, 251, 209, .14), transparent 62%),
        radial-gradient(860px 520px at 86% 26%, rgba(137, 251, 209, .10), transparent 66%),
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(245, 252, 249, .94));
}

.ps-reviews__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.ps-reviews__title {
    margin: 6px 0 10px;
    line-height: 1.05;
}

.ps-reviews__lead {
    margin: 0;
    color: rgba(11, 17, 28, .76);
    line-height: 1.75;
    max-width: 64ch;
}

/* Controls */
.ps-reviews__controls {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 0 0 auto;
}

.ps-rBtn {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    border: 1px solid rgba(22, 102, 74, .14);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
    font-weight: 900;
    font-size: 18px;
}

.ps-rBtn:active {
    transform: scale(.98);
}

.ps-rBtn--ghost {
    background: rgba(255, 255, 255, .72);
    color: rgba(11, 17, 28, .84);
}

.ps-rBtn--solid {
    background: #2c9008;
    border-color: rgba(137, 251, 209, .18);
    color: rgba(240, 255, 250, .96);
}

.ps-rBtn:hover {
    transform: translateY(-3px);
    border-color: rgba(137, 251, 209, .55);
}

/* Slider wrap */
.ps-reviews__wrap {
    border-radius: 26px;
    background: rgba(255, 255, 255, .60);
    border: 1px solid rgba(22, 102, 74, .12);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .08);
    overflow: hidden;
    position: relative;
}

.ps-reviews__wrap::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(900px 340px at 10% 0%, rgba(137, 251, 209, .14), transparent 62%);
    pointer-events: none;
}

.ps-reviews__track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 14px;
    padding: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.ps-reviews__track::-webkit-scrollbar {
    display: none;
}

/* Cards */
.ps-review {
    flex: 0 0 clamp(320px, 36vw, 550px);
    border-radius: 22px;
    background: rgb(21 86 13);
    border: 1px solid rgba(137, 251, 209, .16);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .16);
    padding: 18px 18px 16px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, filter .25s ease;
}

.ps-review::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(720px 260px at 12% 0%, rgba(137, 251, 209, .18), transparent 62%);
    opacity: .9;
    pointer-events: none;
}

.ps-review:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 251, 209, .42);
    filter: saturate(1.03);
}

.ps-review__top {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.ps-review__mark {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(137, 251, 209, .16);
    border: 1px solid rgba(137, 251, 209, .18);
    color: rgba(240, 255, 250, .96);
    font-size: 22px;
    font-weight: 900;
}

.ps-review__name {
    color: rgba(240, 255, 250, .96);
    font-weight: 900;
    line-height: 1.1;
}

.ps-review__sub {
    color: rgba(220, 255, 245, .68);
    font-size: 13px;
    margin-top: 2px;
}

.ps-review__stars {
    color: rgba(220, 255, 245, .80);
    letter-spacing: .08em;
    font-size: 13px;
    font-weight: 900;
}

.ps-review__text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(220, 255, 245, .78);
    line-height: 1.8;
    font-size: 15px;
}

.ps-review__tagRow {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ps-review__tag {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(137, 251, 209, .14);
    color: rgba(220, 255, 245, .74);
    font-size: 12px;
    font-weight: 750;
}

/* Footer: bar + dots */
.ps-reviews__footer {
    position: relative;
    z-index: 1;
    padding: 0 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.ps-reviews__bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(11, 17, 28, .08);
    border: 1px solid rgba(22, 102, 74, .10);
    overflow: hidden;
    flex: 1 1 auto;
}

.ps-reviews__barFill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: rgba(14, 59, 46, .86);
    transition: width 320ms ease;
}

.ps-reviews__dots {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.ps-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(22, 102, 74, .18);
    background: rgba(255, 255, 255, .60);
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease;
}

.ps-dot.is-active {
    background: rgba(14, 59, 46, .86);
    transform: scale(1.15);
}

/* Stats strip */
.ps-reviews__stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ps-stat {
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(22, 102, 74, .12);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .06);
    padding: 14px 14px;
}

.ps-stat__num {
    font-weight: 950;
    letter-spacing: -0.02em;
    color: rgba(14, 59, 46, .96);
    font-size: 20px;
    margin-bottom: 4px;
}

.ps-stat__label {
    color: rgba(11, 17, 28, .70);
    font-size: 13px;
    line-height: 1.45;
}



/* Responsive */
@media (max-width: 980px) {
    .ps-reviews__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .ps-reviews__controls {
        width: 100%;
        justify-content: flex-start;
    }

    .ps-reviews__stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .ps-reviews.ps-section {
        padding: 50px 0;
    }

    .ps-review {
        flex-basis: 75vw;
    }

    .ps-reviews__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .ps-reviews__dots {
        justify-content: center;
    }
}









/* =========================================================
   FOOTER (Pinnacle Via) — fixed layout + full width
========================================================= */

/* Footer background full width + inner aligned */
.ps-footer {
    width: 100%;
}

.ps-footer__inner {
    width: 100%;
    max-width: var(--ps-wrap);
    margin: 0 auto;
    padding: 0 var(--ps-pad);
}


/* Make Blocksy footer row full width (removes side gutters) */
#footer [data-row="middle"] .ct-container,
#footer [data-row="middle"] .ct-container-fluid {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Remove extra spacing around footer widget area */
#footer [data-row="middle"] {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#footer [data-row="middle"] .ct-widget {
    margin: 0 !important;
}

#footer [data-row="middle"] .ct-widget>*:first-child {
    margin-top: 0 !important;
}

/* Footer base */
.ps-footer {
    width: 100%;
    margin: 0;
    background:
        radial-gradient(1200px 400px at 50% 0%, rgba(255, 255, 255, 0.08), transparent 60%),
        linear-gradient(180deg, #205d19 0%, #0d3708 100%);
    color: rgba(255, 255, 255, 0.92);
}

/* Inner spacing (top too big before — fixed) */
.ps-footer__inner {
    padding: 50px 20px 30px;
}

/* Grid: 30 / 20 / 20 / 30 */
.ps-footer__grid {
    display: grid;
    grid-template-columns: 35% 15% 20% 30%;
    gap: 20px;
    align-items: start;
}

/* Titles */
.ps-footer__title {
    margin: 0 0 12px;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}

.ct-container {
    padding: 0 !important;
}

/* Brand */
.ps-footer__logo {
    font-weight: 900;
    letter-spacing: 0.2px;
    font-size: 18px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.ps-footer__text {
    margin: 0 0 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
    max-width: 52ch;
}

.ps-footer__meta {
    font-size: 14px;
    color: rgba(205, 242, 228, 0.88);
}

/* Links */
.ps-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.ps-footer__link {
    text-decoration: none;
    color: rgba(205, 242, 228, 0.92);
    font-weight: 650;
}

.ps-footer__link:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Contact — strictly vertical & clean */
.ps-footer__contactList {
    display: grid;
    gap: 10px;
    margin-top: 2px;
}

.ps-footer__contactItem {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(205, 242, 228, 0.92);
    font-weight: 700;
    line-height: 1.4;
    width: fit-content;
}

.ps-footer__contactItem:hover {
    color: #fff;
}

.ps-footer__icon {
    width: 26px;
    height: 26px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(205, 242, 228, 0.12);
    border: 1px solid rgba(205, 242, 228, 0.18);
}

/* CTA links in footer (stacked & readable) */
.ps-footer__ctaLinks {
    margin-top: 14px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-direction: row;
}

.ps-footer__cta {
    text-decoration: none;
    font-weight: 800;
    color: #fff;
    opacity: 0.95;
}

.ps-footer__cta:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Bottom: policies + copyright (tight, not floating) */
.ps-footer__bottom {
    margin-top: 25px;
    padding-top: 14px;
    border-top: 1px solid rgba(205, 242, 228, 0.16);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ps-footer__legal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ps-footer__smallLink {
    color: rgba(205, 242, 228, 0.9);
    font-weight: 750;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ps-footer__smallLink:hover {
    color: #fff;
    text-decoration: none;
}

.ps-footer__dot {
    color: rgba(205, 242, 228, 0.55);
}

.ps-footer__copy {
    font-size: 14px;
    color: rgba(205, 242, 228, 0.82);
    font-weight: 650;
}

/* Responsive */
@media (max-width: 1024px) {
    .ps-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .ps-footer__inner {
        padding: 26px 16px 16px;
    }

    .ps-footer__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ps-footer__bottom {
        align-items: flex-start;
    }
}






/* LEGAL PAGES (ft-*) */
.ft-legal {
    padding: 84px 0;
}

.ft-container {
    width: min(980px, calc(100% - 40px));
    margin: 0 auto;
}

.ft-legal__head {
    margin-bottom: 22px;
}

.ft-legal__title {
    margin: 0 0 10px;
    font-size: clamp(34px, 3.2vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.ft-legal__meta {
    margin: 0 0 12px;
    opacity: .8;
}

.ft-legal__lead {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    opacity: .95;
}

.ft-legal__body h2 {
    margin: 26px 0 10px;
    font-size: 22px;
}

.ft-legal__body h3 {
    margin: 16px 0 6px;
    font-size: 18px;
    opacity: .95;
}

.ft-legal__body p,
.ft-legal__body li {
    font-size: 16px;
    line-height: 1.8;
}

.ft-legal__body ul {
    padding-left: 18px;
    margin: 10px 0 0;
}

.ft-legal__body a {
    text-decoration: underline;
    text-underline-offset: 3px;
}






/* =========================================================
   CONTACT (Pinnacle) + REVEAL SYSTEM
========================================================= */

/* Section */
.ft-contact {
    padding: 60px 0;
}

/* Container (fallback if not global) */
.ft-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Grid */
.ft-contact__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    align-items: start;
}

/* Left */
.ft-contact__kicker {
    display: inline-flex;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .8;
    margin-bottom: 10px;
}

.ft-contact__title {
    margin: 0 0 12px;
    font-size: clamp(34px, 3.2vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.ft-contact__lead {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.85;
    opacity: .92;
    max-width: 60ch;
}

/* Cards */
.ft-contact__cards {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.ft-contactCard {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .04);
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.ft-contactCard:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .18);
}

.ft-contactCard__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .08);
    flex: 0 0 auto;
    font-size: 18px;
}

.ft-contactCard__label {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .75;
    margin-bottom: 4px;
}

.ft-contactCard__value {
    font-size: 16px;
    line-height: 1.4;
    word-break: break-word;
}

/* Form */
.ft-contactForm {
    padding: 25px 15px;
    border: 1px solid rgba(15, 36, 48, .12);
    background:
        radial-gradient(900px 260px at 33% 14%, rgb(44 144 8 / 26%), transparent 58%),
        radial-gradient(700px 260px at 98% 53%, rgb(44 144 8 / 19%), transparent 62%),
        rgba(255, 255, 255, .78);
    box-shadow: var(--bk-shadow);
    backdrop-filter: blur(10px);
}

.ft-contactForm__title {
    margin: 0 0 6px;
    font-size: 22px;
    letter-spacing: -0.01em;
}

.ft-contactForm__sub {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    opacity: .86;
}

.ft-contactForm__embed {
    margin-top: 14px;
}

.ft-contactForm__note {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.7;
    opacity: .82;
}

.ft-contactForm__note a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ft-contactForm__note a:hover {
    text-decoration: none;
}

/* Trust */
.ft-contactTrust {
    margin-top: 14px;
    display: grid;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .14);
}

.ft-contactTrust__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ft-contactTrust__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
    opacity: .9;
}

.ft-contactTrust__text {
    font-size: 14px;
    line-height: 1.6;
    opacity: .9;
}




/* Responsive */
@media (max-width: 1024px) {
    .ft-contact__grid {
        grid-template-columns: 1fr;
    }

    .ft-contact {
        padding: 45px 0;
    }
}

@media (max-width: 480px) {
    .ft-container {
        width: min(1180px, calc(100% - 28px));
    }

    .ft-contactCard {
        padding: 12px;
    }

    .ft-contactForm {
        padding: 16px;
    }
}

/* =========================================================
   CONTACT PAGE — FORCE WPForms STYLES (Guaranteed)
========================================================= */

.ft-contactForm .wpforms-container {
    margin: 0 !important;
}

.ft-contactForm .wpforms-field {
    margin-bottom: 12px !important;
    padding: 0 !important;
}

/* labels */
.ft-contactForm .wpforms-field-label {
    margin-bottom: 6px !important;
    font-weight: 600 !important;
}

/* inputs */
.ft-contactForm input[type="text"],
.ft-contactForm input[type="email"],
.ft-contactForm textarea {
    width: 100% !important;
    max-width: 100% !important;
    height: 46px !important;
    padding: 12px 14px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(15, 23, 42, .18) !important;
    background: #fff !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .06) !important;
    font-size: 14px !important;
}

/* textarea */
.ft-contactForm textarea {
    height: auto !important;
    min-height: 140px !important;
}

/* focus */
.ft-contactForm input:focus,
.ft-contactForm textarea:focus {
    border-color: #2c9008 !important;
    box-shadow: 0 10px 24px rgba(16, 110, 85, .18) !important;
    outline: none !important;
}

/* submit */
.ft-contactForm .wpforms-submit {
    background: #2c9008 !important;
    border: 1px solid #2c9008d2 !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
    font-weight: 700 !important;
    box-shadow: 0 14px 26px rgba(16, 110, 85, .22) !important;
}

.ft-contactForm .wpforms-submit:hover {
    background: var(--ps-green-dark) !important;
    border-color: var(--ps-green-dark) !important;
    transform: translateY(-3px);
}






/* =========================================================
   ABOUT PAGE (Pinnacle) — Sections
   Safe: only ft-about* classes
========================================================= */

.ft-aboutHero {
    padding: 45px 0 54px;
}

.ft-aboutHero__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 28px;
    align-items: start;
}

.ft-aboutHero__title {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 10px 0 14px;
}

.ft-aboutHero__lead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0, 0, 0, .72);
    margin: 0 0 18px;
    max-width: 62ch;
}

.ft-aboutHero__bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ft-aboutPill {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .75);
    font-size: 13px;
    color: rgba(0, 0, 0, .70);
}

.ft-aboutHero__right {
    position: relative;
}

.ft-aboutHero__card {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .90);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    padding: 18px;
    display: grid;
    gap: 12px;
}

.ft-aboutHero__metric {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .03);
}

.ft-aboutHero__metricNum {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(16, 110, 85, .12);
    color: rgba(16, 110, 85, 1);
    font-weight: 800;
}

.ft-aboutHero__metricText {
    font-size: 13px;
    color: rgba(0, 0, 0, .70);
    line-height: 1.4;
}

.ft-aboutIntro {
    padding: 40px 0 70px;
}

.ft-aboutIntro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.ft-h2 {
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin: 10px 0 12px;
}

.ft-text {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(0, 0, 0, .70);
    margin: 0;
    max-width: 68ch;
}

.ft-aboutItem {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .80);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .06);
    padding: 16px;
    margin-bottom: 10px;
}

.ft-aboutItem__title {
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}

.ft-aboutItem__text {
    color: rgba(0, 0, 0, .68);
    line-height: 1.65;
    font-size: 14px;
}

.ft-aboutWhy {
    padding: 10px 0 70px;
}

.ft-aboutWhy__head {
    max-width: 760px;
    margin-bottom: 18px;
}

.ft-aboutWhy__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ft-whyCard {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: linear-gradient(210deg, #2c90088a 0%, #eaf8f3 60% 60%, #f6fcfa 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
    padding: 18px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.ft-whyCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .08);
    background: linear-gradient(0deg, #2c90088a 0%, #eaf8f3 60% 60%, #f6fcfa 100%);
}

.ft-whyCard__title {
    margin: 0 0 8px;
    font-size: 16px;
    letter-spacing: -0.01em;
}

.ft-whyCard__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, .70);
}

.ft-aboutProcess {
    padding: 10px 0 70px;
}

.ft-aboutProcess__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.ft-aboutSteps {
    display: grid;
    gap: 12px;
}

.ft-step {
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .06);
    padding: 16px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
}

.ft-step__num {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(16, 110, 85, .12);
    color: rgba(16, 110, 85, 1);
    font-weight: 900;
}

.ft-step__title {
    font-weight: 900;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.ft-step__text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(0, 0, 0, .70);
}

.ft-aboutPrinciples {
    padding: 10px 0 80px;
}

.ft-aboutPrinciples__inner {
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .80);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .07);
    padding: 22px;
}

.ft-principlesGrid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.ft-principle {
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(0, 0, 0, .03);
    padding: 10px 12px;
    font-size: 13px;
    color: rgba(0, 0, 0, .72);
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .ft-aboutHero__grid {
        grid-template-columns: 1fr;
    }

    .ft-aboutIntro__grid {
        grid-template-columns: 1fr;
    }

    .ft-aboutWhy__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ft-aboutProcess__grid {
        grid-template-columns: 1fr;
    }

    .ft-principlesGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .ft-aboutWhy__grid {
        grid-template-columns: 1fr;
    }

    .ft-principlesGrid {
        grid-template-columns: 1fr;
    }
}














/* =========================================================
   SERVICES PAGE (isolated styles)
   Prefix: svs-
   Uses only existing animation class: .ps-reveal
========================================================= */

.svs-page {
    --svs-maxw: 1200px;
    --svs-pad: 20px;

    --svs-ink: #0f2230;
    --svs-ink2: rgba(15, 34, 48, .72);
    --svs-muted: rgba(15, 34, 48, .62);

    --svs-green: #0a7a5a;
    /* primary */
    --svs-green2: #0b6b50;
    /* darker */
    --svs-mint: rgba(8, 180, 140, .14);
    --svs-mint2: rgba(8, 180, 140, .10);

    --svs-blueSoft: rgba(80, 160, 255, .16);
    --svs-border: rgba(15, 34, 48, .12);
    --svs-shadow: 0 18px 50px rgba(10, 25, 35, .10);
    --svs-shadow2: 0 10px 30px rgba(10, 25, 35, .08);

    color: var(--svs-ink);
}

.svs-container {
    width: min(var(--svs-maxw), calc(100% - (var(--svs-pad) * 2)));
    margin: 0 auto;
}

.svs-block {
    padding: 70px 0;
}

@media (max-width: 900px) {
    .svs-block {
        padding: 56px 0;
    }
}

.svs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(15, 34, 48, .55);
    font-weight: 700;
}

.svs-kicker__dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: rgba(8, 180, 140, .20);
    box-shadow: 0 0 0 6px rgba(8, 180, 140, .10);
}

.svs-kicker--light {
    color: rgba(255, 255, 255, .78);
}

.svs-kicker--light .svs-kicker__dot {
    background: rgba(255, 255, 255, .22);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .10);
}

.svs-h1 {
    margin: 10px 0 12px;
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.svs-h2 {
    margin: 12px 0 10px;
    font-size: clamp(26px, 2.4vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.svs-h3 {
    margin: 0 0 6px;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.svs-lead {
    margin: 0;
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--svs-ink2);
    max-width: 70ch;
}

.svs-sublead {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: var(--svs-ink2);
    max-width: 72ch;
}

.svs-text {
    margin: 0 0 12px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--svs-muted);
}

/* Buttons */
.svs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .01em;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
    user-select: none;
    white-space: nowrap;
}

.svs-btn:active {
    transform: translateY(1px);
}

.svs-btn--solid {
    background: var(--ps-green) !important;
    border-color: var(--ps-green) !important;
    color: #fff !important;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(10, 122, 90, .22);
}

.svs-btn--solid:hover {
    background: var(--ps-green-dark) !important;
    border-color: var(--ps-green-dark) !important;
    transform: translateY(-3px);
    color: #fff;
}

.svs-btn--soft {
    background: #ffffffe2;
    /* soft blue */
    border-color: rgba(80, 160, 255, .22);
    color: var(--svs-ink);
}

.svs-btn--soft:hover {
    background: rgba(255, 255, 255, 0.281);
    transform: translateY(-3px);
}

.svs-btn--sm {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 10px;
}

.svs-btn--dark {
    background: var(--ps-green) !important;
    border-color: var(--ps-green) !important;
    color: #fff !important;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(10, 122, 90, .22);
    border-color: rgba(255, 255, 255, .14);
}

.svs-btn--dark:hover {
    background: var(--ps-green-dark) !important;
    border-color: var(--ps-green-dark) !important;
    transform: translateY(-3px);
    color: #fff;
}

.svs-btn--softlight {
    background: #dbf3ea;
    border: 1px solid rgba(21, 86, 64, .18);
    color: var(--ps-green-dark);
}

.svs-btn--softlight:hover {
    background: #fcfcfc;
    border-color: #89FBD1;
    transform: translateY(-3px);
    color: #1f6a50;
}

.svs-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .02em;
    color: rgba(15, 34, 48, .82);
    text-decoration: none;
    padding: 8px 8px;
    border-radius: 10px;
}

.svs-link:hover {
    background: rgba(8, 180, 140, .10);
}

/* HERO */
.svs-hero {
    padding: 88px 0 40px;
}

.svs-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .svs-hero {
        padding: 45px 0 28px;
    }

    .svs-hero__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.svs-chiprow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.svs-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(15, 34, 48, .10);
    background: rgba(255, 255, 255, .70);
    box-shadow: 0 10px 22px rgba(10, 25, 35, .06);
}

/* right panel */
.svs-panel {
    position: relative;
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: var(--svs-shadow2);
    overflow: hidden;
    background: linear-gradient(210deg, #42cb1152 0%, #eaf8f3 60% 60%, #f6fcfa 100%);
    border: 1px solid rgba(20, 120, 90, 0.12);
}

.svs-panel__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(15, 34, 48, .60);
    font-weight: 900;
}

.svs-panel__dot {
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: rgba(8, 180, 140, .22);
    box-shadow: 0 0 0 6px rgba(8, 180, 140, .10);
}

.svs-list {
    margin: 12px 0 14px;
    padding: 0 0 0 18px;
    color: rgba(15, 34, 48, .72);
    line-height: 1.7;
    font-size: 13px;
}

.svs-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.svs-note {
    margin: 12px 0 0;
    font-size: 12px;
    color: rgba(15, 34, 48, .55);
}

/* HEAD */
.svs-head {
    margin-bottom: 18px;
}

.svs-head .svs-sublead {
    margin-top: 6px;
}

/* CARDS */
.svs-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
}

@media (max-width: 980px) {
    .svs-cards {
        grid-template-columns: 1fr;
    }
}

.svs-card {
    border-radius: 18px;
    border: 1px solid rgba(15, 34, 48, .10);
    background: #fff;
    box-shadow: var(--svs-shadow2);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    min-height: 100%;
}

.svs-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--svs-shadow);
    border-color: rgba(8, 180, 140, .22);
}

.svs-card__media {
    position: relative;
    background: rgba(15, 34, 48, .04);
}

.svs-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svs-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .40);
    background: rgba(255, 255, 255, .80);
    color: rgba(15, 34, 48, .85);
    backdrop-filter: blur(6px);
}

.svs-card__body {
    padding: 16px 16px 14px;
}

.svs-bullets {
    margin: 0;
    padding: 0 0 0 18px;
    font-size: 13px;
    color: rgba(15, 34, 48, .70);
    line-height: 1.7;
}

.svs-bullets li {
    margin: 4px 0;
}

.svs-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
}

/* PROCESS STEPS */
.svs-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

@media (max-width: 980px) {
    .svs-steps {
        grid-template-columns: 1fr;
    }
}

.svs-step {
    border-radius: 16px;
    border: 1px solid rgba(15, 34, 48, .10);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 22px rgba(10, 25, 35, .06);
    padding: 14px 14px 14px;
}

.svs-step__num {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 12px;
    color: rgba(15, 34, 48, .86);
    background: linear-gradient(180deg, rgba(8, 180, 140, .18), rgba(8, 180, 140, .10));
    border: 1px solid rgba(8, 180, 140, .18);
}

.svs-step__title {
    margin: 10px 0 6px;
    font-size: 15px;
    letter-spacing: -0.01em;
}

.svs-step__text {
    margin: 0;
    font-size: 12.8px;
    line-height: 1.65;
    color: rgba(15, 34, 48, .66);
}

/* WHO BLOCK — recreate screenshot #1 glow */
.svs-who {
    border-radius: calc(var(--bk-radius) + 10px);
    border: 1px solid rgba(15, 36, 48, .10);
    box-shadow: var(--bk-shadow);
    background:
        radial-gradient(720px 360px at 18% 10%, rgba(25, 160, 116, .25), transparent 55%),
        radial-gradient(900px 420px at 92% 0%, rgba(25, 160, 116, .14), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .86));
}

.svs-who__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    padding: 34px;
    align-items: start;
}

@media (max-width: 980px) {
    .svs-who__inner {
        grid-template-columns: 1fr;
        padding: 22px;
        gap: 16px;
    }
}

.svs-checks {
    margin: 14px 0 0;
    padding-left: 18px;
    color: rgba(15, 34, 48, .74);
    line-height: 1.8;
}

.svs-checks li {
    margin: 6px 0;
}

/* right minis - ensure 4 always show */
.svs-who__right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-content: start;
}

@media (max-width: 560px) {
    .svs-who__right {
        grid-template-columns: 1fr;
    }
}

.svs-mini {
    border-radius: 18px;
    border: 1px solid rgba(15, 36, 48, .10);
    padding: 16px 16px 14px;
    background:
        radial-gradient(260px 160px at 24% 18%, rgba(25, 160, 116, .22), transparent 62%),
        radial-gradient(220px 150px at 95% 12%, rgba(25, 160, 116, .10), transparent 62%), rgba(255, 255, 255, .62);
    box-shadow: 0 14px 34px rgba(15, 36, 48, .10);
    min-height: 118px;
}

.svs-mini h3 {
    margin: 0 0 8px;
    font-size: 15px;
    letter-spacing: -0.01em;
}

.svs-mini p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(15, 34, 48, .66);
}

/* CTA */
.svs-cta {
    border-radius: 22px;
    padding: 26px 26px;
    background:
        radial-gradient(1200px 400px at -10% -20%, rgba(255, 255, 255, .14), transparent 60%),
        linear-gradient(135deg, #206620 0%, #33803f 45%, #5ea579 100%);
    box-shadow: 0 26px 70px rgba(10, 122, 90, .22);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

@media (max-width: 900px) {
    .svs-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
    }

    .bk-ctaBox__right {
        flex-wrap: nowrap;
        align-items: center;
    }
}

.svs-cta__title {
    margin: 8px 0 8px;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
}

.svs-cta__text {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    line-height: 1.75;
    max-width: 70ch;
}

.svs-cta__meta {
    margin: 10px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .72);
}

.svs-cta__right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Safety: images never overflow */
.svs-page img {
    max-width: 100%;
    height: auto;
}








/* ================================
  PAGE: BOOKKEEPING & REPORTING
  Prefix: bk-
  Safe: Unique classes only (no conflicts)
================================= */

.bk-page {
    --bk-ink: #0f2430;
    --bk-muted: rgba(15, 36, 48, .74);
    --bk-line: rgba(15, 36, 48, .12);
    --bk-soft: rgba(15, 36, 48, .06);

    --bk-green: #0f6b4f;
    --bk-green2: #19a074;

    --bk-radius: 22px;
    --bk-radius-sm: 16px;

    --bk-shadow: 0 18px 45px rgba(15, 36, 48, .10);
    --bk-shadow-soft: 0 10px 25px rgba(15, 36, 48, .08);

    --bk-max: 1200px;
    --bk-pad: clamp(18px, 2.2vw, 28px);
    --bk-gap: clamp(14px, 2vw, 22px);

    color: var(--bk-ink);
}

.bk-container {
    width: min(var(--bk-max), calc(100% - 40px));
    margin-inline: auto;
}

.bk-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(15, 36, 48, .55);
    font-weight: 700;
}

.bk-kicker__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(25, 160, 116, .20);
    box-shadow: 0 0 0 7px rgba(25, 160, 116, .08);
}

.bk-h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 3.2vw, 54px);
    line-height: 1.06;
    letter-spacing: -.02em;
}

.bk-h2 {
    margin: 12px 0 8px;
    font-size: clamp(26px, 2.2vw, 36px);
    line-height: 1.12;
    letter-spacing: -.02em;
}

.bk-h2--tight {
    margin-top: 8px;
}

.bk-lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--bk-muted);
    max-width: 62ch;
}

.bk-sublead {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--bk-muted);
    max-width: 66ch;
}

.bk-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}

.bk-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(15, 36, 48, .10);
    color: rgba(15, 36, 48, .72);
    font-weight: 700;
    font-size: 12px;
}

/* Buttons */
.bk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: .02em;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.bk-btn:active {
    transform: translateY(1px);
}

.bk-btn--primary {
    color: #fff;
    background: var(--ps-green);
    box-shadow: 0 12px 26px rgba(15, 107, 79, .20);
}

.bk-btn--primary:hover {
    color: #fff;
    background: var(--ps-green-dark);
    transform: translateY(-3px);
}

.bk-btn--ghost {
    color: var(--bk-green);
    background: rgba(22, 170, 135, .10);
    border-color: rgba(15, 107, 79, .18);
}

.bk-btn--ghost:hover {
    transform: translateY(-3px);
    background: rgba(22, 170, 135, .14);
    border-color: rgba(15, 107, 79, .24);
}

.bk-btn--sm {
    height: 40px;
    padding: 0 14px;
    font-size: 12.5px;
}

/* Section Head */
.bk-sectionHead {
    margin-bottom: 18px;
}

/* HERO */
.bk-hero {
    padding: clamp(34px, 4vw, 60px) 0 70px;
}

.bk-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(18px, 3vw, 30px);
    align-items: start;
}

.bk-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.bk-hero__meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 36, 48, .10);
}

.bk-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bk-meta__label {
    font-size: 12px;
    font-weight: 800;
    color: rgba(15, 36, 48, .52);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bk-meta__value {
    font-size: 13.5px;
    color: rgba(15, 36, 48, .78);
    font-weight: 700;
}

/* Right panel */
.bk-panel {
    border-radius: var(--bk-radius);
    border: 1px solid rgba(15, 36, 48, .12);
    background:
        radial-gradient(900px 260px at 24% 10%, rgba(25, 160, 116, .18), transparent 58%),
        radial-gradient(700px 260px at 98% 20%, rgba(25, 160, 116, .10), transparent 62%),
        rgba(255, 255, 255, .78);
    box-shadow: var(--bk-shadow);
    padding: var(--bk-pad);
    backdrop-filter: blur(10px);
}

.bk-panel__head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: rgba(15, 36, 48, .86);
    margin-bottom: 10px;
}

.bk-panel__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(25, 160, 116, .26);
    box-shadow: 0 0 0 7px rgba(25, 160, 116, .10);
}

.bk-panel__list {
    margin: 0;
    padding-left: 18px;
    color: rgba(15, 36, 48, .78);
    line-height: 1.7;
}

.bk-panel__list li {
    margin: 6px 0;
}

.bk-panel__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.bk-panel__note {
    margin-top: 10px;
    font-size: 12.5px;
    color: rgba(15, 36, 48, .62);
}

/* SCOPE */
.bk-scope {
    padding: 45px 0 10px;
}

.bk-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--bk-gap);
}

.bk-card {
    position: relative;
    border-radius: var(--bk-radius);
    border: 1px solid rgba(15, 36, 48, .10);
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--bk-shadow-soft);
    padding: 18px 18px 16px;
    overflow: hidden;
}

.bk-card:before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(280px 180px at 20% 12%, rgba(25, 160, 116, .18), transparent 60%),
        radial-gradient(240px 170px at 90% 6%, rgba(25, 160, 116, .10), transparent 62%);
    opacity: .9;
    pointer-events: none;
}

.bk-card>* {
    position: relative;
}

.bk-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(25, 160, 116, .14);
    border: 1px solid rgba(15, 107, 79, .14);
    font-weight: 900;
    color: rgba(15, 107, 79, .85);
    margin-bottom: 10px;
}

.bk-card__title {
    margin: 0 0 6px;
    font-size: 16px;
    letter-spacing: -.01em;
}

.bk-card__text {
    margin: 0 0 10px;
    color: var(--bk-muted);
    line-height: 1.65;
    font-size: 13.5px;
}

.bk-miniList {
    margin: 0;
    padding-left: 18px;
    color: rgba(15, 36, 48, .78);
    line-height: 1.65;
    font-size: 13.2px;
}

.bk-miniList li {
    margin: 4px 0;
}

/* PROCESS */
.bk-process {
    padding: 70px 0 16px;
}

.bk-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--bk-gap);
}

.bk-step {
    border-radius: var(--bk-radius);
    border: 1px solid rgba(15, 36, 48, .10);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--bk-shadow-soft);
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bk-step__num {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(25, 160, 116, .14);
    border: 1px solid rgba(15, 107, 79, .14);
    color: rgba(15, 107, 79, .90);
    font-weight: 900;
    flex: 0 0 auto;
}

.bk-step__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 900;
}

.bk-step__text {
    margin: 0;
    font-size: 13.2px;
    color: var(--bk-muted);
    line-height: 1.6;
}

/* WHO (main gradient + mini cards gradient like your Screenshot 1) */
.bk-who {
    padding: 70px 0 20px;
}

.bk-whoCard {
    border-radius: calc(var(--bk-radius) + 10px);
    border: 1px solid rgba(15, 36, 48, .10);
    box-shadow: var(--bk-shadow);
    background:
        radial-gradient(720px 360px at 18% 10%, rgba(25, 160, 116, .25), transparent 55%),
        radial-gradient(900px 420px at 92% 0%, rgba(25, 160, 116, .14), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .86));
}

.bk-whoCard__inner {
    padding: clamp(18px, 2.6vw, 32px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 2.6vw, 34px);
    align-items: start;
}

.bk-checks {
    margin: 14px 0 0;
    padding-left: 18px;
    color: rgba(15, 36, 48, .82);
    line-height: 1.75;
}

.bk-checks li {
    margin: 6px 0;
    font-weight: 700;
}

.bk-whoCard__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bk-mini {
    border-radius: 18px;
    border: 1px solid rgba(15, 36, 48, .10);
    padding: 16px 16px 14px;
    background:
        radial-gradient(260px 160px at 24% 18%, rgba(25, 160, 116, .22), transparent 62%),
        radial-gradient(220px 150px at 95% 12%, rgba(25, 160, 116, .10), transparent 62%),
        rgba(255, 255, 255, .62);
    box-shadow: 0 14px 34px rgba(15, 36, 48, .10);
    min-height: 118px;
}

.bk-mini h3 {
    margin: 0 0 6px;
    font-size: 16px;
    letter-spacing: -.01em;
}

.bk-mini p {
    margin: 0;
    color: var(--bk-muted);
    line-height: 1.6;
}

/* FAQ */
.bk-faq {
    padding: 70px 0 22px;
}

.bk-faqGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bk-faqItem {
    border-radius: 18px;
    border: 1px solid rgba(15, 36, 48, .10);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--bk-shadow-soft);
    padding: 14px 16px;
}

.bk-faqItem summary {
    cursor: pointer;
    font-weight: 900;
    color: rgba(15, 36, 48, .90);
    list-style: none;
}

.bk-faqItem summary::-webkit-details-marker {
    display: none;
}

.bk-faqItem p {
    margin: 10px 0 0;
    color: var(--bk-muted);
    line-height: 1.65;
}

/* CTA */
.bk-cta {
    padding: 70px 0 60px;
}

.bk-ctaBox {
    border-radius: calc(var(--bk-radius) + 10px);
    border: 1px solid rgba(15, 36, 48, .10);
    box-shadow: var(--bk-shadow);
    padding: clamp(18px, 2.6vw, 28px);
    background:
        radial-gradient(1200px 400px at -10% -20%, rgba(255, 255, 255, .14), transparent 60%),
        linear-gradient(135deg, #206620 0%, #33803f 45%, #5ea579 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.bk-ctaBox__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255, 255, 255, .78);
}

.bk-ctaBox__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .26);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, .10);
}

.bk-ctaBox__title {
    margin: 10px 0 8px;
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.12;
    letter-spacing: -.02em;
    color: #fff;
}

.bk-ctaBox__text {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    line-height: 1.65;
    max-width: 60ch;
}

.bk-ctaBox__meta {
    margin-top: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, .80);
    font-size: 13px;
}

.bk-ctaBox__right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* CTA button contrast */
.bk-cta .bk-btn--primary {
    background: #fff;
    color: rgba(15, 107, 79, .98);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .10);
}

.bk-cta .bk-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
    background-color: #e1e1e1;
}

.bk-cta .bk-btn--ghost {
    background: rgb(31 106 80);
    color: #fff;
    border-color: rgba(255, 255, 255, .26);
}

.bk-cta .bk-btn--ghost:hover {
    background: var(--ps-green-dark) !important;
    border-color: var(--ps-green-dark) !important;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .bk-hero__grid {
        grid-template-columns: 1fr;
    }

    .bk-cards {
        grid-template-columns: 1fr 1fr;
    }

    .bk-steps {
        grid-template-columns: 1fr 1fr;
    }

    .bk-whoCard__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .bk-container {
        width: min(var(--bk-max), calc(100% - 28px));
    }

    .bk-faqGrid {
        grid-template-columns: 1fr;
    }

    .bk-whoCard__right {
        grid-template-columns: 1fr;
    }

    .bk-cards {
        grid-template-columns: 1fr;
    }

    .bk-steps {
        grid-template-columns: 1fr;
    }

    .bk-ctaBox {
        flex-direction: column;
        align-items: flex-start;
    }
}











/* ================================
  PAGE: BUSINESS ADVISORY
  Prefix: ba-
  Safe: Unique classes only (no conflicts)
================================= */

.ba-page {
    --ba-ink: #0f2430;
    --ba-muted: rgba(15, 36, 48, .74);

    --ba-green: #0f6b4f;
    --ba-green2: #19a074;

    --ba-radius: 22px;
    --ba-shadow: 0 18px 45px rgba(15, 36, 48, .10);
    --ba-shadow-soft: 0 10px 25px rgba(15, 36, 48, .08);

    --ba-max: 1200px;
    --ba-pad: clamp(18px, 2.2vw, 28px);
    --ba-gap: clamp(14px, 2vw, 22px);

    color: var(--ba-ink);
}

.ba-container {
    width: min(var(--ba-max), calc(100% - 40px));
    margin-inline: auto;
}

.ba-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(15, 36, 48, .55);
    font-weight: 800;
}

.ba-kicker__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(25, 160, 116, .20);
    box-shadow: 0 0 0 7px rgba(25, 160, 116, .08);
}

.ba-h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 3.2vw, 54px);
    line-height: 1.06;
    letter-spacing: -.02em;
}

.ba-h2 {
    margin: 12px 0 8px;
    font-size: clamp(26px, 2.2vw, 36px);
    line-height: 1.12;
    letter-spacing: -.02em;
}

.ba-h2--tight {
    margin-top: 8px;
}

.ba-lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ba-muted);
    max-width: 62ch;
}

.ba-sublead {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ba-muted);
    max-width: 66ch;
}

.ba-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}

.ba-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(15, 36, 48, .10);
    color: rgba(15, 36, 48, .72);
    font-weight: 800;
    font-size: 12px;
}

/* Buttons */
.ba-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .02em;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    white-space: nowrap;
}

.ba-btn:active {
    transform: translateY(1px);
}

.ba-btn--primary {
    color: #fff;
    background: var(--ps-green);
    box-shadow: 0 12px 26px rgba(15, 107, 79, .20);
}

.ba-btn--primary:hover {
    transform: translateY(-3px);
    color: #fff;
    background: var(--ps-green-dark);
    box-shadow: 0 16px 34px rgba(15, 107, 79, .26);
}

/* "Transparent weak blue" */
.ba-btn--ghost {
    color: var(--ba-green);
    background: rgba(18, 140, 255, .10);
    border-color: rgba(18, 140, 255, .18);
}

.ba-btn--ghost:hover {
    transform: translateY(-3px);
    background: rgba(18, 140, 255, .14);
    border-color: rgba(18, 140, 255, .24);
}

.ba-btn--sm {
    height: 40px;
    padding: 0 14px;
    font-size: 12.5px;
}

/* HERO */
.ba-hero {
    padding: clamp(34px, 4vw, 60px) 0 70px;
}

.ba-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(18px, 3vw, 30px);
    align-items: start;
}

.ba-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.ba-hero__meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 36, 48, .10);
}

.ba-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ba-meta__label {
    font-size: 12px;
    font-weight: 900;
    color: rgba(15, 36, 48, .52);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ba-meta__value {
    font-size: 13.5px;
    color: rgba(15, 36, 48, .78);
    font-weight: 800;
}

/* Right panel */
.ba-panel {
    border-radius: var(--ba-radius);
    border: 1px solid rgba(15, 36, 48, .12);
    background:
        radial-gradient(900px 260px at 24% 10%, rgba(25, 160, 116, .18), transparent 58%),
        radial-gradient(700px 260px at 98% 20%, rgba(25, 160, 116, .10), transparent 62%),
        rgba(255, 255, 255, .78);
    box-shadow: var(--ba-shadow);
    padding: var(--ba-pad);
    backdrop-filter: blur(10px);
}

.ba-panel__head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    margin-bottom: 10px;
}

.ba-panel__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(25, 160, 116, .26);
    box-shadow: 0 0 0 7px rgba(25, 160, 116, .10);
}

.ba-panel__list {
    margin: 0;
    padding-left: 18px;
    color: rgba(15, 36, 48, .78);
    line-height: 1.7;
}

.ba-panel__list li {
    margin: 6px 0;
}

.ba-panel__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.ba-panel__note {
    margin-top: 10px;
    font-size: 12.5px;
    color: rgba(15, 36, 48, .62);
}

/* Section head */
.ba-sectionHead {
    margin-bottom: 18px;
}

/* Focus cards */
.ba-focus {
    padding: 70px 0;
}

.ba-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ba-gap);
}

.ba-card {
    position: relative;
    border-radius: var(--ba-radius);
    border: 1px solid rgba(15, 36, 48, .10);
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--ba-shadow-soft);
    padding: 18px 18px 16px;
    overflow: hidden;
}

.ba-card:before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(280px 180px at 20% 12%, rgba(25, 160, 116, .18), transparent 60%),
        radial-gradient(240px 170px at 90% 6%, rgba(25, 160, 116, .10), transparent 62%);
    opacity: .9;
    pointer-events: none;
}

.ba-card>* {
    position: relative;
}

.ba-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(25, 160, 116, .14);
    border: 1px solid rgba(15, 107, 79, .14);
    font-weight: 950;
    color: rgba(15, 107, 79, .85);
    margin-bottom: 10px;
}

.ba-card__title {
    margin: 0 0 6px;
    font-size: 16px;
    letter-spacing: -.01em;
    font-weight: 950;
}

.ba-card__text {
    margin: 0 0 10px;
    color: var(--ba-muted);
    line-height: 1.65;
    font-size: 13.5px;
}

.ba-miniList {
    margin: 0;
    padding-left: 18px;
    color: rgba(15, 36, 48, .78);
    line-height: 1.65;
    font-size: 13.2px;
}

.ba-miniList li {
    margin: 4px 0;
}

/* Process */
.ba-process {
    padding: 70px 0;
}

.ba-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ba-gap);
}

.ba-step {
    border-radius: var(--ba-radius);
    border: 1px solid rgba(15, 36, 48, .10);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--ba-shadow-soft);
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ba-step__num {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(25, 160, 116, .14);
    border: 1px solid rgba(15, 107, 79, .14);
    color: rgba(15, 107, 79, .90);
    font-weight: 950;
    flex: 0 0 auto;
}

.ba-step__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 950;
}

.ba-step__text {
    margin: 0;
    font-size: 13.2px;
    color: var(--ba-muted);
    line-height: 1.6;
}

/* WHO gradient + mini gradients */
.ba-who {
    padding: 70px 0;
}

.ba-whoCard {
    border-radius: calc(var(--ba-radius) + 10px);
    border: 1px solid rgba(15, 36, 48, .10);
    box-shadow: var(--ba-shadow);
    background:
        radial-gradient(720px 360px at 18% 10%, rgba(25, 160, 116, .25), transparent 55%),
        radial-gradient(900px 420px at 92% 0%, rgba(25, 160, 116, .14), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .86));
}

.ba-whoCard__inner {
    padding: clamp(18px, 2.6vw, 32px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 2.6vw, 34px);
    align-items: start;
}

.ba-checks {
    margin: 14px 0 0;
    padding-left: 18px;
    color: rgba(15, 36, 48, .82);
    line-height: 1.75;
}

.ba-checks li {
    margin: 6px 0;
    font-weight: 800;
}

.ba-whoCard__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ba-mini {
    border-radius: 18px;
    border: 1px solid rgba(15, 36, 48, .10);
    padding: 16px 16px 14px;
    background:
        radial-gradient(260px 160px at 24% 18%, rgba(25, 160, 116, .22), transparent 62%),
        radial-gradient(220px 150px at 95% 12%, rgba(25, 160, 116, .10), transparent 62%),
        rgba(255, 255, 255, .62);
    box-shadow: 0 14px 34px rgba(15, 36, 48, .10);
    min-height: 110px;
}

.ba-mini h3 {
    margin: 0 0 6px;
    font-size: 16px;
    letter-spacing: -.01em;
    font-weight: 950;
}

.ba-mini p {
    margin: 0;
    color: var(--ba-muted);
    line-height: 1.6;
}

/* CTA */
.ba-cta {
    padding: 70px 0;
}


.ba-ctaBox {
    border-radius: calc(var(--ba-radius) + 10px);
    border: 1px solid rgba(15, 36, 48, .10);
    box-shadow: var(--ba-shadow);
    padding: clamp(18px, 2.6vw, 28px);
    background:
        radial-gradient(1200px 400px at -10% -20%, rgba(255, 255, 255, .14), transparent 60%),
        linear-gradient(135deg, #206620 0%, #33803f 45%, #5ea579 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.ba-ctaBox__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255, 255, 255, .78);
}

.ba-ctaBox__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .26);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, .10);
}

.ba-ctaBox__title {
    margin: 10px 0 8px;
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.12;
    letter-spacing: -.02em;
    font-weight: 950;
    color: #fff !important;
}

.ba-ctaBox__text {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    line-height: 1.65;
    max-width: 60ch;
}

.ba-ctaBox__meta {
    margin-top: 10px;
    font-weight: 900;
    color: rgba(255, 255, 255, .80);
    font-size: 13px;
}

.ba-ctaBox__right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* CTA button contrast */
.ba-cta .ba-btn--primary {
    background: #fff;
    color: rgba(15, 107, 79, .98);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .10);
}

.ba-cta .ba-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
}

.ba-cta .ba-btn--ghost {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-color: rgba(255, 255, 255, .26);
}

.ba-cta .ba-btn--ghost:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .34);
}

/* Responsive */
@media (max-width: 1024px) {
    .ba-hero__grid {
        grid-template-columns: 1fr;
    }

    .ba-cards {
        grid-template-columns: 1fr 1fr;
    }

    .ba-steps {
        grid-template-columns: 1fr 1fr;
    }

    .ba-whoCard__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ba-container {
        width: min(var(--ba-max), calc(100% - 28px));
    }

    .ba-whoCard__right {
        grid-template-columns: 1fr;
    }

    .ba-cards {
        grid-template-columns: 1fr;
    }

    .ba-steps {
        grid-template-columns: 1fr;
    }

    .ba-ctaBox {
        flex-direction: column;
        align-items: flex-start;
    }

    .ba-cta,
    .ba-who,
    .ba-process,
    .ba-focus,
    .gs-plan,
    .gs-who,
    .gs-cta {
        padding: 45px 0;
    }

    .ct-button {
        padding: 5px 8px !important;
    }

    .gs-hero__cta {
        gap: 10px;
        flex-wrap: nowrap;
    }
}










/* ================================
  PAGE: GROWTH STRATEGY
  Prefix: gs-
  Safe: Unique classes only (no conflicts)
================================= */

.gs-page {
    --gs-ink: #0f2430;
    --gs-muted: rgba(15, 36, 48, .74);

    --gs-green: #0f6b4f;
    --gs-green2: #19a074;

    /* Subtle "blue" accent for growth vibe (still friendly with green) */
    --gs-blue: rgba(18, 140, 255, 1);
    --gs-blueSoft: rgba(18, 140, 255, .10);
    --gs-blueBorder: rgba(18, 140, 255, .18);

    --gs-radius: 22px;
    --gs-shadow: 0 18px 45px rgba(15, 36, 48, .10);
    --gs-shadow-soft: 0 10px 25px rgba(15, 36, 48, .08);

    --gs-max: 1200px;
    --gs-pad: clamp(18px, 2.2vw, 28px);
    --gs-gap: clamp(14px, 2vw, 22px);

    color: var(--gs-ink);
}

.gs-container {
    width: min(var(--gs-max), calc(100% - 40px));
    margin-inline: auto;
}

.gs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(15, 36, 48, .55);
    font-weight: 800;
}

.gs-kicker__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(18, 140, 255, .14);
    box-shadow: 0 0 0 7px rgba(18, 140, 255, .08);
}

.gs-h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 3.2vw, 54px);
    line-height: 1.06;
    letter-spacing: -.02em;
}

.gs-h2 {
    margin: 12px 0 8px;
    font-size: clamp(26px, 2.2vw, 36px);
    line-height: 1.12;
    letter-spacing: -.02em;
}

.gs-h2--tight {
    margin-top: 8px;
}

.gs-lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gs-muted);
    max-width: 62ch;
}

.gs-sublead {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--gs-muted);
    max-width: 66ch;
}

.gs-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}

.gs-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(15, 36, 48, .10);
    color: rgba(15, 36, 48, .72);
    font-weight: 800;
    font-size: 12px;
}

/* Buttons */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: .02em;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    white-space: nowrap;
}

.gs-btn:active {
    transform: translateY(1px);
}

/* primary stays brand-green */
.gs-btn--primary {
    color: #fff;
    background: var(--ps-green);
    box-shadow: 0 12px 26px rgba(15, 107, 79, .20);
}

.gs-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(15, 107, 79, .26);
    color: #fff;
    background: var(--ps-green-dark);
}

/* ghost is "weak blue transparent" */
.gs-btn--ghost {
    color: var(--gs-green);
    background: var(--gs-blueSoft);
    border-color: var(--gs-blueBorder);
}

.gs-btn--ghost:hover {
    transform: translateY(-3px);
    background: rgba(18, 140, 255, .14);
    border-color: rgba(18, 140, 255, .24);
}

.gs-btn--sm {
    height: 40px;
    padding: 0 14px;
    font-size: 12.5px;
}

/* HERO */
.gs-hero {
    padding: clamp(34px, 4vw, 60px) 0 70px;
}

.gs-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(18px, 3vw, 30px);
    align-items: start;
}

.gs-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.gs-hero__meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 36, 48, .10);
}

.gs-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.gs-meta__label {
    font-size: 12px;
    font-weight: 900;
    color: rgba(15, 36, 48, .52);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gs-meta__value {
    font-size: 13.5px;
    color: rgba(15, 36, 48, .78);
    font-weight: 800;
}

/* Right panel */
.gs-panel {
    border-radius: var(--gs-radius);
    border: 1px solid rgba(15, 36, 48, .12);
    background:
        radial-gradient(900px 260px at 24% 10%, rgba(18, 140, 255, .18), transparent 58%),
        radial-gradient(700px 260px at 98% 20%, rgba(25, 160, 116, .10), transparent 62%),
        rgba(255, 255, 255, .78);
    box-shadow: var(--gs-shadow);
    padding: var(--gs-pad);
    backdrop-filter: blur(10px);
}

.gs-panel__head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    margin-bottom: 10px;
}

.gs-panel__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(18, 140, 255, .22);
    box-shadow: 0 0 0 7px rgba(18, 140, 255, .10);
}

.gs-panel__list {
    margin: 0;
    padding-left: 18px;
    color: rgba(15, 36, 48, .78);
    line-height: 1.7;
}

.gs-panel__list li {
    margin: 6px 0;
}

.gs-panel__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.gs-panel__note {
    margin-top: 10px;
    font-size: 12.5px;
    color: rgba(15, 36, 48, .62);
}

/* Section head */
.gs-sectionHead {
    margin-bottom: 18px;
}

/* Framework cards */
.gs-framework {
    padding: 70px 0;
}

.gs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gs-gap);
}

.gs-card {
    position: relative;
    border-radius: var(--gs-radius);
    border: 1px solid rgba(15, 36, 48, .10);
    background: rgba(255, 255, 255, .78);
    box-shadow: var(--gs-shadow-soft);
    padding: 18px 18px 16px;
    overflow: hidden;
}

.gs-card:before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(280px 180px at 20% 12%, rgba(18, 140, 255, .18), transparent 60%),
        radial-gradient(240px 170px at 90% 6%, rgba(25, 160, 116, .10), transparent 62%);
    opacity: .95;
    pointer-events: none;
}

.gs-card>* {
    position: relative;
}

.gs-card__icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(18, 140, 255, .12);
    border: 1px solid rgba(18, 140, 255, .16);
    font-weight: 950;
    color: rgba(18, 140, 255, .80);
    margin-bottom: 10px;
}

.gs-card__title {
    margin: 0 0 6px;
    font-size: 16px;
    letter-spacing: -.01em;
    font-weight: 950;
}

.gs-card__text {
    margin: 0 0 10px;
    color: var(--gs-muted);
    line-height: 1.65;
    font-size: 13.5px;
}

.gs-miniList {
    margin: 0;
    padding-left: 18px;
    color: rgba(15, 36, 48, .78);
    line-height: 1.65;
    font-size: 13.2px;
}

.gs-miniList li {
    margin: 4px 0;
}

/* 90-day steps */
.gs-plan {
    padding: 70px 0;
}

.gs-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gs-gap);
}

.gs-step {
    border-radius: var(--gs-radius);
    border: 1px solid rgba(15, 36, 48, .10);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--gs-shadow-soft);
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.gs-step__num {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(18, 140, 255, .12);
    border: 1px solid rgba(18, 140, 255, .16);
    color: rgba(18, 140, 255, .86);
    font-weight: 950;
    flex: 0 0 auto;
}

.gs-step__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 950;
}

.gs-step__text {
    margin: 0;
    font-size: 13.2px;
    color: var(--gs-muted);
    line-height: 1.6;
}

/* WHO premium gradient + mini gradients */
.gs-who {
    padding: 70px 0;
}

.gs-whoCard {
    border-radius: calc(var(--gs-radius) + 10px);
    border: 1px solid rgba(15, 36, 48, .10);
    box-shadow: var(--gs-shadow);
    background:
        radial-gradient(720px 360px at 18% 10%, rgba(18, 140, 255, .22), transparent 55%),
        radial-gradient(900px 420px at 92% 0%, rgba(25, 160, 116, .14), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .86));
}

.gs-whoCard__inner {
    padding: clamp(18px, 2.6vw, 32px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 2.6vw, 34px);
    align-items: start;
}

.gs-checks {
    margin: 14px 0 0;
    padding-left: 18px;
    color: rgba(15, 36, 48, .82);
    line-height: 1.75;
}

.gs-checks li {
    margin: 6px 0;
    font-weight: 800;
}

.gs-whoCard__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.gs-mini {
    border-radius: 18px;
    border: 1px solid rgba(15, 36, 48, .10);
    padding: 16px 16px 14px;
    background:
        radial-gradient(260px 160px at 24% 18%, rgba(18, 140, 255, .18), transparent 62%),
        radial-gradient(220px 150px at 95% 12%, rgba(25, 160, 116, .10), transparent 62%),
        rgba(255, 255, 255, .62);
    box-shadow: 0 14px 34px rgba(15, 36, 48, .10);
    min-height: 110px;
}

.gs-mini h3 {
    margin: 0 0 6px;
    font-size: 16px;
    letter-spacing: -.01em;
    font-weight: 950;
}

.gs-mini p {
    margin: 0;
    color: var(--gs-muted);
    line-height: 1.6;
}

/* CTA */
.gs-cta {
    padding: 70px 0;
}

.gs-ctaBox {
    border-radius: calc(var(--gs-radius) + 10px);
    border: 1px solid rgba(15, 36, 48, .10);
    box-shadow: var(--gs-shadow);
    padding: clamp(18px, 2.6vw, 28px);
    background:
        radial-gradient(900px 360px at 18% 18%, rgba(18, 140, 255, .26), transparent 56%),
        radial-gradient(800px 360px at 92% 0%, rgba(25, 160, 116, .16), transparent 60%),
        linear-gradient(135deg, rgba(15, 107, 79, .95), rgba(25, 160, 116, .92));
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.gs-ctaBox__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(255, 255, 255, .78);
}

.gs-ctaBox__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .26);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, .10);
}

.gs-ctaBox__title {
    margin: 10px 0 8px;
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.12;
    letter-spacing: -.02em;
    font-weight: 950;
    color: #fff !important;
}

.gs-ctaBox__text {
    margin: 0;
    color: rgba(255, 255, 255, .85);
    line-height: 1.65;
    max-width: 60ch;
}

.gs-ctaBox__meta {
    margin-top: 10px;
    font-weight: 900;
    color: rgba(255, 255, 255, .80);
    font-size: 13px;
}

.gs-ctaBox__right {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* CTA button contrast */
.gs-cta .gs-btn--primary {
    background: #fff;
    color: rgba(15, 107, 79, .98);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .10);
}

.gs-cta .gs-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .14);
}

.gs-cta .gs-btn--ghost {
    background: #276c1f;
    color: #fff;
    box-shadow: 0 18px 40px rgba(31, 122, 90, .16);
    border: 1px solid #187252;
}

.gs-cta .gs-btn--ghost:hover {
    background: var(--ps-green-dark) !important;
    border-color: var(--ps-green-dark) !important;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .gs-hero__grid {
        grid-template-columns: 1fr;
    }

    .gs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gs-steps {
        grid-template-columns: 1fr 1fr;
    }

    .gs-whoCard__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .gs-container {
        width: min(var(--gs-max), calc(100% - 28px));
    }

    .gs-whoCard__right {
        grid-template-columns: 1fr;
    }

    .gs-grid {
        grid-template-columns: 1fr;
    }

    .gs-steps {
        grid-template-columns: 1fr;
    }

    .gs-ctaBox {
        flex-direction: column;
        align-items: flex-start;
    }
}


[class*=animated-submenu]>.sub-menu {
    background-color: #f4f4f4 !important;
}



/* =========================================
   Footer Logo (smaller + premium)
========================================= */

.ps-footer__logo {
    font-size: 0;
    line-height: 0;
    color: transparent;

    display: block;
    background: url("/wp-content/uploads/logo-footer.png") no-repeat left center;
    background-size: contain;

    /* smaller size */
    width: 90px;
    height: 90px;

    margin: 0 0 14px;
}

/* Tablet */
@media (max-width: 1024px) {
    .ps-footer__logo {
        width: 80px;
        height: 80px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ps-footer__logo {
        width: 70px;
        height: 70px;
        margin: 0 auto 12px;
        background-position: center;
    }
}




.ps-footer__logo {
    opacity: .95;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .18));
}