/* Pure Messaging design system — tokens in :root; change those to restyle the site */

:root {
    /* Colour — change these to restyle the site */
    --pm-color-brand: #22b14c;
    --pm-color-ink: #1f2a3d;          /* headings, dark bands */
    --pm-color-text: #5c6675;         /* body copy */
    --pm-color-text-muted: #7c7c7c;   /* captions, helper, legal */
    --pm-color-border: #e2e8f0;
    --pm-color-surface: #ffffff;
    --pm-color-surface-soft: #f8fafc;
    --pm-color-surface-tint: #f0faf4;

    /* Shape */
    --pm-radius-sm: 10px;
    --pm-radius-md: 16px;
    --pm-radius: 20px;
    --pm-shadow-sm: 0 8px 20px rgba(31, 42, 61, 0.07);
    --pm-shadow: 0 14px 34px rgba(31, 42, 61, 0.1);
    --pm-shadow-strong: 0 20px 48px rgba(31, 42, 61, 0.16);

    /* Layout */
    --pm-width-container: 1254px;
    --pm-width-content: 900px;
    --pm-width-prose: 760px;
    --pm-space-section: clamp(56px, 7vw, 84px);
}

.pm {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--pm-color-ink);
    background: var(--pm-color-surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

    .pm * {
        box-sizing: border-box;
    }

    .pm a {
        /*color: inherit;*/
        text-decoration: none;
    }

.pm-container {
    max-width: var(--pm-width-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.pm-h1,
.pm-h2,
.pm-h3 {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--pm-color-ink);
    margin: 0;
}

.pm-h1 {
    font-weight: 800;
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.pm-h2 {
    font-weight: 800;
    font-size: 42px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.pm-h3 {
    font-weight: 700;
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}

.pm-center {
    text-align: center;
}

.pm-accent {
    color: var(--pm-color-brand);
}

/* Shared layout and content primitives */
.pm-page-title {
    font-size: clamp(36px, 5vw, 48px);
}

.pm-kicker {
    margin: 0 0 10px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--pm-color-brand);
}

.pm-copy,
.pm-content-list {
    font-size: 16px;
    line-height: 1.72;
    color: var(--pm-color-text);
}

.pm-copy {
    margin: 0;
}

.pm-copy + .pm-copy {
    margin-top: 14px;
}

.pm-section-heading {
    margin-top: 0;
}

.pm-section-heading--spaced {
    margin-top: 44px;
}

.pm-stack {
    display: grid;
    gap: 16px;
}

.pm-stack--lg {
    gap: 32px;
}

.pm-action-row,
.pm-link-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.pm-action-row {
    margin-top: 20px;
}

.pm-link-group {
    margin-top: 24px;
}

.pm-center .pm-link-group {
    justify-content: center;
}

.pm-h1 + .pm-copy,
.pm-h2 + .pm-sublead,
.pm-h2 + .pm-copy {
    margin-top: 16px;
}

.pm-content-list {
    margin: 14px 0 0;
    padding-left: 22px;
}

.pm-content-list li + li {
    margin-top: 6px;
}

.pm-prose {
    width: 100%;
    max-width: var(--pm-width-prose);
    margin: 0 auto;
    min-width: 0;
}

.pm-prose h1 {
    font-size: clamp(36px, 5vw, 48px);
}

.pm-prose h2 {
    margin: 44px 0 14px;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.25;
    color: var(--pm-color-ink);
}

.pm-prose h3 {
    margin: 28px 0 10px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--pm-color-ink);
}

.pm-prose p,
.pm-prose li {
    font-size: 16px;
    line-height: 1.75;
    color: var(--pm-color-text);
}

.pm-prose ul,
.pm-prose ol {
    margin: 14px 0;
    padding-left: 22px;
}

.pm-prose li + li {
    margin-top: 6px;
}

p.pm-prose__meta {
    display: inline-flex;
    margin: 14px 0 26px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--pm-color-surface-tint);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--pm-color-brand);
}

.pm-lead {
    font-size: 16px;
    line-height: 28px;
    margin: 18px 0 0;
    color: var(--pm-color-ink);
    max-width: 720px;
}

.pm-lead--muted {
    color: #475569;
    max-width: 550px;
}

.pm-sublead {
    margin: 0 auto 26px;
    color: var(--pm-color-text);
    max-width: 760px;
    font-size: 17px;
    line-height: 28px;
}

.fs-7 {
    font-size: 14px;
    line-height: 20px;
}

/* Header */
.pm-header {
    position: sticky;
    top: 0;
    /* Keep header + mobile nav overlay above page content */
    z-index: 10002;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pm-color-border);
}

    .pm-header .pm-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 18px 20px;
    }

.pm-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.pm-brand img {
    height: 36px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

.pm-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.26em;
    letter-spacing: -1px;
    color: var(--pm-color-ink);
    white-space: nowrap;
    line-height: 1;
    font-size: 17.5px;
}

.pm-wordmark__pure { font-weight: 300; }
.pm-wordmark__msg { font-weight: 700; }

.pm-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.pm-nav__link {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    color: var(--pm-color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

    .pm-nav__link.active,
    .pm-nav__link:hover,
    .pm-nav__link:focus-visible,
    .pm-nav__dropdown.is-open .pm-nav__dropdown-toggle,
    .pm-nav__dropdown.is-current .pm-nav__dropdown-toggle {
        color: var(--pm-color-ink);
        background: rgba(34, 177, 76, 0.08);
    }

    .pm-nav__link:focus-visible {
        outline: 3px solid rgba(34, 177, 76, 0.35);
        outline-offset: 2px;
    }

.pm-nav__dropdown {
    position: relative;
}

.pm-nav__dropdown-toggle .bx {
    font-size: 16px;
    transition: transform 160ms ease;
}

.pm-nav__dropdown.is-open .pm-nav__dropdown-toggle .bx {
    transform: rotate(180deg);
}

.pm-nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 220px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--pm-color-border);
    border-radius: 12px;
    box-shadow: 0 14px 32px rgba(31, 42, 61, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    z-index: 10003;
}

.pm-nav__dropdown.is-open .pm-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.pm-nav__dropdown-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--pm-color-text-muted);
    text-align: left;
    white-space: nowrap;
    transition: background 160ms ease, color 160ms ease;
}

    .pm-nav__dropdown-link:hover,
    .pm-nav__dropdown-link:focus-visible,
    .pm-nav__dropdown-link.active {
        color: var(--pm-color-ink);
        background: rgba(34, 177, 76, 0.08);
    }

    .pm-nav__dropdown-link:focus-visible {
        outline: 3px solid rgba(34, 177, 76, 0.35);
        outline-offset: 2px;
    }

.pm-header__cta {
    display: flex;
}

    .pm-header__cta a {
        flex: 0 0 auto;
    }

/* Hamburger menu toggle */
.pm-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 10001;
}

.pm-menu-toggle__line {
    width: 100%;
    height: 2px;
    background: var(--pm-color-ink);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.pm-menu-toggle.is-active .pm-menu-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.pm-menu-toggle.is-active .pm-menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.pm-menu-toggle.is-active .pm-menu-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile navigation */
.pm-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 42, 61, 0.98);
    backdrop-filter: blur(10px);
    /* Must sit above hero/media and all page content when open */
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-top: 80px;
    height: 100vh;
    pointer-events: none;
}

    .pm-mobile-nav.is-open {
        transform: translateX(0);
        pointer-events: auto;
    }

.pm-menu-toggle.is-active .pm-menu-toggle__line {
    background: #FFF;
}

.pm-mobile-nav__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.pm-mobile-nav__link {
    display: block;
    padding: 16px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    transition: background 160ms ease, color 160ms ease;
    text-align: left;
}

    .pm-mobile-nav__link.active,
    .pm-mobile-nav__link:hover,
    .pm-mobile-nav__link:focus-visible {
        background: rgba(34, 177, 76, 0.15);
        color: var(--pm-color-brand);
    }

    .pm-mobile-nav__link:focus-visible {
        outline: 3px solid rgba(34, 177, 76, 0.35);
        outline-offset: 2px;
    }

.pm-mobile-nav .pm-btn {
    margin-top: 20px;
}

.pm-mobile-nav__group {
    display: flex;
    flex-direction: column;
}

.pm-mobile-nav__group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    font-family: inherit;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    text-align: left;
    transition: background 160ms ease, color 160ms ease;
}

    .pm-mobile-nav__group-toggle.active,
    .pm-mobile-nav__group-toggle:hover,
    .pm-mobile-nav__group-toggle:focus-visible {
        background: rgba(34, 177, 76, 0.15);
        color: var(--pm-color-brand);
    }

    .pm-mobile-nav__group-toggle:focus-visible {
        outline: 3px solid rgba(34, 177, 76, 0.35);
        outline-offset: 2px;
    }

.pm-mobile-nav__group-toggle .bx {
    font-size: 20px;
    transition: transform 160ms ease;
}

.pm-mobile-nav__group.is-open .pm-mobile-nav__group-toggle .bx {
    transform: rotate(180deg);
}

.pm-mobile-nav__group-panel {
    display: flex;
    flex-direction: column;
    padding: 0 0 8px 12px;
}

.pm-mobile-nav__group-panel[hidden] {
    display: none;
}

.pm-mobile-nav__sublink {
    font-size: 15px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.82);
}

/* Buttons */
.pm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    border-radius: var(--pm-radius-sm);
    padding: 13px 14px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: transform 150ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
    user-select: none;
}

.pm-btn--with-icon i {
    font-size: 20px;
    line-height: 1;
}

.pm-btn--primary {
    background: var(--pm-color-brand);
    color: #fff;
    box-shadow: var(--pm-shadow-strong);
}

    .pm-btn--primary:hover {
        transform: translateY(-1px);
    }

    .pm-btn--primary:focus-visible {
        outline: 3px solid rgba(34, 177, 76, 0.4);
        outline-offset: 2px;
    }

.pm-btn--ghost {
    background: #fff;
    color: var(--pm-color-brand);
    border-color: var(--pm-color-brand);
    box-shadow: var(--pm-shadow-strong);
}

    .pm-btn--ghost:hover {
        background: rgba(34, 177, 76, 0.7);
        color: #FFF;
    }

.pm-btn--full {
    width: 100%;
}

.pm-btn--secondary {
    background: var(--pm-color-surface);
    color: var(--pm-color-ink);
    border-color: var(--pm-color-border);
    box-shadow: var(--pm-shadow-sm);
}

.pm-btn--secondary:hover {
    color: var(--pm-color-brand);
    border-color: rgba(34, 177, 76, 0.4);
    transform: translateY(-1px);
}

/* In-page navigation to other pages (not conversion CTAs) */
.pm-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
    color: var(--pm-color-brand);
    text-decoration: none;
    transition: color 160ms ease;
}

    .pm-link:hover,
    .pm-link:focus-visible {
        color: #1a8f3c;
    }

    .pm-link:focus-visible {
        outline: 3px solid rgba(34, 177, 76, 0.35);
        outline-offset: 2px;
        border-radius: 4px;
    }

    .pm-link i {
        font-size: 18px;
        line-height: 1;
        transition: transform 160ms ease;
    }

    .pm-link:hover i,
    .pm-link:focus-visible i {
        transform: translateX(2px);
    }

/* Shared cards, KPIs and calls to action */
.pm-feature-grid,
.pm-resource-grid,
.pm-kpi-grid {
    display: grid;
    gap: 22px;
    margin-top: 32px;
}

.pm-feature-grid,
.pm-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pm-kpi-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.pm-feature-card,
.pm-resource-card,
.pm-kpi {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(31, 42, 61, 0.08);
    background: linear-gradient(145deg, var(--pm-color-surface) 0%, var(--pm-color-surface-tint) 100%);
    box-shadow: var(--pm-shadow-sm);
}

.pm-feature-card,
.pm-resource-card {
    border-radius: var(--pm-radius-md);
    padding: 28px;
}

.pm-feature-card {
    display: flex;
    flex-direction: column;
}

.pm-feature-card > * {
    position: relative;
    z-index: 1;
}

.pm-feature-card::after,
.pm-kpi::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -46px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(34, 177, 76, 0.08);
}

.pm-feature-card__icon,
.pm-kpi__icon {
    display: grid;
    place-items: center;
    background: var(--pm-color-brand);
    color: #fff;
    box-shadow: 0 8px 18px rgba(34, 177, 76, 0.22);
}

.pm-feature-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 14px;
    font-size: 24px;
}

.pm-feature-card p,
.pm-resource-card p {
    margin: 10px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--pm-color-text);
}

.pm-feature-card .pm-link {
    margin-top: auto;
    padding-top: 18px;
}

.pm-resource-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pm-resource-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 177, 76, 0.24);
    box-shadow: var(--pm-shadow);
}

.pm-resource-card__title {
    display: inline;
    font-family: "Inter", sans-serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--pm-color-ink);
}

.pm-resource-card__title:hover {
    color: var(--pm-color-brand);
}

.pm-kpi {
    min-height: 190px;
    padding: 24px 20px;
    border-radius: var(--pm-radius-md);
}

.pm-kpi__icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border-radius: 13px;
    font-size: 21px;
}

.pm-kpi__value {
    position: relative;
    z-index: 1;
    font-family: "Inter", sans-serif;
    font-size: clamp(27px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: var(--pm-color-ink);
}

.pm-kpi__label {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
    color: var(--pm-color-text-muted);
}

.pm-kpi--compact {
    min-height: 0;
}

.pm-cta-banner {
    position: relative;
    overflow: hidden;
    margin: 44px 0 0;
    padding: 34px;
    border: 1px solid rgba(34, 177, 76, 0.22);
    border-radius: var(--pm-radius);
    background: linear-gradient(135deg, #f0fdf4 0%, #eaf7f0 52%, #eef7fb 100%);
    text-align: center;
    box-shadow: var(--pm-shadow-sm);
}

.pm-cta-banner::after {
    content: "";
    position: absolute;
    right: -70px;
    top: -80px;
    width: 280px;
    height: 270px;
    background: url("../images/logo-mark.svg") no-repeat center / contain;
    opacity: 0.08;
    pointer-events: none;
}

.pm-cta-banner > * {
    position: relative;
    z-index: 1;
}

.pm-cta-banner__text {
    max-width: 620px;
    margin: 10px auto 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--pm-color-text);
}

.pm-cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .pm-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .pm-feature-grid,
    .pm-resource-grid,
    .pm-kpi-grid {
        grid-template-columns: 1fr;
    }

    .pm-kpi {
        min-height: 0;
    }
}

.pm-link--on-dark {
    color: #4ade80;
}

    .pm-link--on-dark:hover,
    .pm-link--on-dark:focus-visible {
        color: #86efac;
    }

.pm-btn.is-busy {
    opacity: 0.8;
    cursor: progress;
}

.pm-btn__spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: pm-spin 0.6s linear infinite;
}

@keyframes pm-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hero */
.pm-hero {
    position: relative;
    overflow: hidden;
    padding: 46px 0 40px;
}

.pm-hero::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 0;
    width: 380px;
    height: 368px;
    background: url("../images/logo-mark-mono.svg") no-repeat center / contain;
    opacity: 0.05;
    pointer-events: none;
}

.pm-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 56px;
}

.pm-hero .pm-h1 {
    color: var(--pm-color-brand);
}

.pm-hero .pm-h1::first-line {
    color: var(--pm-color-ink);
}

.pm-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 18px;
    background: #fff;
    border: 1px solid var(--pm-color-border);
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 11px;
    font-weight: 700;
    color: var(--pm-color-text-muted);
    margin-bottom: 20px;
}

.pm-pill__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--pm-color-brand);
    box-shadow: 0 0 0 5px rgba(34, 177, 76, 0.12);
}

.pm-hero__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.pm-hero__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(31, 42, 61, 0.18);
}

.pm-check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pm-color-text);
    font-weight: 600;
    font-size: 14px;
}

    .pm-check i {
        color: var(--pm-color-brand);
        font-size: 24px;
    }

.pm-hero__media {
    position: relative;
    display: grid;
    place-items: center;
}

.pm-hero__rings {
    position: absolute;
    inset: 0;
    width: 492px;
    height: 492px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(34, 177, 76, 0.12) 0 55%, transparent 56%), radial-gradient(circle at center, rgba(34, 177, 76, 0.1) 0 66%, transparent 67%), radial-gradient(circle at center, rgba(34, 177, 76, 0.07) 0 77%, transparent 78%), radial-gradient(circle at center, rgba(34, 177, 76, 0.05) 0 88%, transparent 89%);
}

.pm-hero__image {
    position: relative;
    width: min(492px, 100%);
    height: auto;
    display: block;
}

/* Security bar */
.pm-security {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, var(--pm-color-surface) 0%, var(--pm-color-surface-tint) 100%);
    color: var(--pm-color-ink);
    padding: 56px 0 48px;
}

/* .pm-security::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 50%;
    width: 260px;
    height: 250px;
    transform: translateY(-50%);
    background: url("../images/logo-mark-mono.svg") no-repeat center / contain;
    opacity: 0.05;
    pointer-events: none;
} */

.pm-security__title {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    color: #ccc;
    margin-bottom: 18px;
}

.pm-security .pm-kpi-grid {
    margin-top: 8px;
}

.pm-hero .pm-container,
.pm-security .pm-container,
.pm-clients .pm-container {
    position: relative;
    z-index: 1;
}

.pm-security .pm-kpi {
    width: 100%;
    text-align: left;
}

/* Sections */
.pm-section {
    padding: var(--pm-space-section) 0;
}

.pm-section--kpis {
    padding-top: 12px;
}

.pm-section--kpis .pm-kpi-grid {
    margin-top: 0;
}

.pm-section--soft {
    background: var(--pm-color-surface-soft);
}

.pm-breadcrumb {
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--pm-color-text-muted);
}

.pm-breadcrumb a {
    color: var(--pm-color-brand);
}

.pm-subnav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.pm-subnav--bar {
    display: block;
    margin-bottom: 0;
    background: var(--pm-color-surface);
    border-bottom: 1px solid var(--pm-color-border);
}

.pm-subnav--bar .pm-container {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: var(--pm-width-container);
    padding-top: 10px;
    padding-bottom: 10px;
}

.pm-subnav__back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    padding-right: 14px;
    border-right: 1px solid var(--pm-color-border);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: var(--pm-color-text-muted);
    white-space: nowrap;
}

.pm-subnav__back i {
    font-size: 18px;
    line-height: 1;
}

.pm-subnav__back:hover,
.pm-subnav__back:focus-visible {
    color: var(--pm-color-ink);
}

.pm-subnav__back:focus-visible,
.pm-subnav__link:focus-visible {
    outline: 3px solid rgba(34, 177, 76, 0.35);
    outline-offset: 2px;
}

.pm-subnav__pages {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.pm-subnav__pages::-webkit-scrollbar {
    display: none;
}

.pm-subnav__link {
    flex: 0 0 auto;
    padding: 7px 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    color: var(--pm-color-text-muted);
    white-space: nowrap;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.pm-subnav__link:hover,
.pm-subnav__link:focus-visible {
    color: var(--pm-color-ink);
    background: rgba(34, 177, 76, 0.08);
}

.pm-subnav__link.is-active {
    color: var(--pm-color-brand);
    background: rgba(34, 177, 76, 0.12);
    border-color: rgba(34, 177, 76, 0.18);
}

span.pm-subnav__link {
    cursor: default;
}

.pm-subnav:not(.pm-subnav--bar) {
    flex-wrap: wrap;
    align-items: center;
    min-width: 0;
    max-width: 100%;
    row-gap: 8px;
}

.pm-subnav:not(.pm-subnav--bar) .pm-subnav__pages {
    display: block;
    flex: 0 0 auto;
    width: fit-content;
    max-width: 100%;
    overflow: visible;
}

.pm-subnav:not(.pm-subnav--bar) .pm-subnav__link {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.4;
    border-radius: 12px;
}

.pm-page-hero {
    min-height: 350px;
    padding: 4rem 0;
    background: linear-gradient(145deg, var(--pm-color-surface-soft), #eef8f2);
    display: flex;
    align-items: center;
}

.pm-page-hero .pm-container,
.pm-container--content {
    width: 100%;
    max-width: var(--pm-width-content);
}

.pm-page-hero--hub.pm-page-hero .pm-container {
    max-width: var(--pm-width-container);
}

.pm-hub-lead {
    max-width: 760px;
    margin-bottom: 44px;
    font-size: 18px;
    line-height: 1.7;
}

.pm-hub-article {
    scroll-margin-top: 96px;
}

.pm-hub-article + .pm-hub-article {
    margin-top: 64px;
}

/* Cards */
.pm-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 28px;
}

.pm-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--pm-color-border);
    border-radius: var(--pm-radius);
    padding: 26px 26px 18px;
    transition: transform 160ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

    .pm-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
        border-color: rgba(34, 177, 76, 0.25);
    }

        .pm-card:hover .pm-card__icon {
            color: #f0fdf4;
            background: var(--pm-color-brand);
        }

.pm-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #f0fdf4;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--pm-color-brand);
    transition: all ease 200ms;
}

    .pm-card__icon i {
        font-size: 26px;
    }

.pm-card p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 22px;
    color: var(--pm-color-ink);
}

.pm-card__divider {
    height: 1px;
    background: var(--pm-color-border);
    margin: 16px 0 10px;
}

.pm-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pm-color-text-muted);
    font-weight: 700;
    line-height: 1.4;
}

.pm-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.pm-dot__core {
    background: var(--pm-color-brand);
}

.pm-dot__custom {
    background: #FB923C;
}

a.pm-card__link {
    margin-left: auto;
    color: var(--pm-color-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-transform: none;
    letter-spacing: 0;
    text-align: right;
    flex: 0 0 auto
}

.pm-card__link:hover {
    color: #18913a;
}

/* Features block */
.pm-features {
    display: flex;
    gap: 26px;
    margin-top: 40px;
    align-items: stretch;
}

.pm-features__panel {
    border: 1px solid var(--pm-color-border);
    border-radius: var(--pm-radius);
    background: #fff;
    padding: 24px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.pm-features__title {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.pm-features__lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-content: start;
}

    .pm-features__lists.three-col {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        align-content: start;
    }

        .pm-features__lists.three-col .pm-feature-list:last-of-type {
            align-self: flex-start;
        }

.pm-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    color: var(--pm-color-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

    .pm-feature-list li {
        display: grid;
        grid-template-columns: 24px 1fr 16px;
        align-items: center;
        gap: 12px;
        padding: 8px;
    }

        .pm-feature-list li:not(:last-of-type) {
            border-bottom: 1px solid #efefef;
        }

        .pm-feature-list li:hover {
            background: #f0fdf4;
        }

    .pm-feature-list i.bxs-check-circle {
        color: var(--pm-color-brand);
        font-size: 24px;
    }

.pm-info {
    all: unset;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    justify-self: end;
    color: var(--pm-color-text);
    opacity: 0.95;
    cursor: help;
    border-radius: 4px;
    line-height: 1;
}

    .pm-info i {
        font-size: 20px;
        line-height: 1;
    }

    .pm-info:hover {
        color: var(--pm-color-ink);
    }

    .pm-info:focus-visible {
        outline: 3px solid rgba(34, 177, 76, 0.35);
        outline-offset: 2px;
    }

.pm-osfa {
    background: var(--pm-color-ink);
    color: #fff;
    border-radius: 25px;
    padding: 30px;
    flex: 0 0 286px;
    display: flex;
    flex-direction: column;
}

.pm-osfa__title {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 900;
    font-size: 38px;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
    color: #fff;
}

.pm-osfa__subtitle {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
    color: #fff;
}

.pm-osfa__accent {
    color: var(--pm-color-brand);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.pm-osfa__body {
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 18px;
    color: #fff;
}

.pm-osfa .pm-btn {
    margin-top: auto;
}

/* Steps */
.pm-steps {
    padding-top: 60px;
}

.pm-steps__rail {
    height: 2px;
    border-bottom: 2px dashed var(--pm-color-ink);
    position: relative;
}

.pm-steps__dot {
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--pm-color-ink);
}

.pm-steps__dot--end {
    left: auto;
    right: 0;
}

.pm-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.pm-step {
    border: 1px solid var(--pm-color-border);
    border-radius: var(--pm-radius);
    background: #fff;
    padding: 22px 20px;
    box-shadow: var(--pm-shadow);
    position: relative;
    transition: transform 160ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

    .pm-step:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
        border-color: rgba(34, 177, 76, 0.25);
    }

.pm-step__num {
    left: 50%;
    top: -75px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 1.4px solid var(--pm-color-brand);
    background: #d3efdb;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 22px;
    color: var(--pm-color-brand);
    transition: all 200ms ease;
}

.pm-step:hover .pm-step__num {
    background: var(--pm-color-brand);
    color: #fff;
}

.pm-step__head {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    margin-bottom: 8px;
    align-items: start;
}

.pm-step__icon {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: grid;
    place-items: center;
    transition: all 200ms ease;
}

    .pm-step__icon i {
        font-size: 32px;
    }

.pm-step__icon--purple {
    background: #f3ebf3;
    color: #b850b8;
}

.pm-step__icon--teal {
    background: #eafcff;
    color: #46c5da;
}

.pm-step__icon--red {
    background: #ffedec;
    color: #e9655e;
}

.pm-step__icon--green {
    background: #eff9f3;
    color: #69dd97;
}

.pm-step:hover * .pm-step__icon--purple {
    background: #b850b8;
    color: #fff;
}

.pm-step:hover * .pm-step__icon--teal {
    background: #46c5da;
    color: #fff;
}

.pm-step:hover * .pm-step__icon--red {
    background: #e9655e;
    color: #fff;
}

.pm-step:hover * .pm-step__icon--green {
    background: #69dd97;
    color: #fff;
}

.pm-step__title {
    margin-top: 2px;
    font-size: 27px;
    line-height: 34px;
    letter-spacing: -0.04em;
}

.pm-step p {
    margin: 0;
    color: var(--pm-color-ink);
    font-size: 16px;
    line-height: 24px;
}

/* Our Clients carousel */
.pm-clients {
    position: relative;
    overflow: hidden;
    background: var(--pm-color-ink);
    padding: 48px 0 64px;
    color: #fff;
}

.pm-clients::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 320px;
    height: 310px;
    background: url("../images/logo-mark-on-dark.svg") no-repeat center / contain;
    opacity: 0.1;
    pointer-events: none;
}

.pm-clients__logos {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.pm-clients:not(:has([data-clients-carousel]:not([hidden]))) {
    padding-bottom: 48px;
}

.pm-clients:not(:has([data-clients-carousel]:not([hidden]))) .pm-clients__logos {
    margin-bottom: 0;
}

.pm-clients:has(.pm-clients__named-quote) .pm-clients__logos {
    margin-bottom: 28px;
}

.pm-clients__named-quote {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.pm-clients__named-quote p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.55;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
}

.pm-clients__named-quote cite {
    font-style: normal;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}

.pm-clients__logos img {
    max-width: 180px;
    object-fit: contain;
    opacity: 0.95;
}

.pm-clients__carousel {
    position: relative;
    padding-top: 44px;
}

.pm-clients__controls {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.pm-clients__viewport {
    overflow: hidden;
    margin-right: -20px;
    padding: 1px 20px 1px 1px;
}

.pm-clients__row {
    display: flex;
    gap: 12px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.pm-clients-card {
    flex: 0 0 min(546px, calc(100% - 48px));
    width: min(546px, calc(100% - 48px));
    background: rgba(31, 42, 61, 0.95);
    border: 1px solid #6b7280;
    border-top: 1px solid #8b95a5;
    border-radius: 12px;
    padding: 22px 26px;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
}

.pm-clients-card__label {
    color: var(--pm-color-brand);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.pm-clients-card__quote {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 10px;
    color: #fff;
}

.pm-clients-card__byline {
    color: #ccc;
    font-size: 14px;
    font-weight: 500;
}

.pm-clients-card--muted {
    opacity: 0.45;
}

.pm-clients__ctrl {
    width: 31px;
    height: 31px;
    border-radius: 8px;
    background: var(--pm-color-ink);
    border: 1px solid #fff;
    color: #fff;
    display: grid;
    place-items: center;
    padding: 0;
    opacity: 0.92;
    cursor: pointer;
}

.pm-clients__ctrl i {
    font-size: 18px;
    line-height: 1;
}

.pm-clients__ctrl:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
}

.pm-clients__ctrl:focus-visible {
    outline: 3px solid rgba(34, 177, 76, 0.45);
    outline-offset: 2px;
}

@media (max-width: 767.98px) {
    .pm-clients__logos {
        gap: 12px 24px;
    }

    .pm-clients__viewport {
        margin-right: 0;
        padding: 1px;
    }

    .pm-clients-card {
        flex-basis: 100%;
        width: 100%;
    }

    .pm-clients-card__quote {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Contact */
.pm-contact {
    background: var(--pm-color-surface-soft);
    padding: 76px 0;
}

.pm-contact__grid {
    display: grid;
    grid-template-columns: 1fr 633px;
    gap: 60px;
    align-items: center;
}

.pm-benefits {
    list-style: none;
    padding: 0;
    margin: 26px 0 28px;
    display: grid;
    gap: 20px;
    max-width: 460px;
}

    .pm-benefits li {
        display: grid;
        grid-template-columns: 30px 1fr;
        gap: 17px;
        align-items: start;
    }

.pm-benefits__icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #f0fdf4;
    display: grid;
    place-items: center;
    color: var(--pm-color-brand);
}

    .pm-benefits__icon i {
        font-size: 18px;
    }

.pm-benefits__title {
    font-weight: 700;
    font-size: 16px;
    color: var(--pm-color-ink);
}

.pm-benefits__text {
    font-size: 14px;
    color: var(--pm-color-text-muted);
}

.pm-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 12px;
}

.pm-qr__text {
    font-weight: 500;
    color: var(--pm-color-ink);
    font-style: italic;
    font-size: 12px;
}

.pm-qr__wa-btn {
    width: 100%;
    max-width: 280px;
    text-transform: none;
    letter-spacing: 0;
}

.pm-form {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 5px 36px rgba(0, 0, 0, 0.15);
    padding: 34px 40px 40px;
    position: relative;
}

.pm-form__title {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
}

.pm-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #475569;
    margin-bottom: 6px;
}

.required {
    font-weight: 700;
    color: #e9655e;
}

.pm-input {
    width: 100%;
    border: 1px solid var(--pm-color-border);
    border-radius: 12px;
    padding: 12px 14px;
    background: var(--pm-color-surface-soft);
    font-weight: 500;
    color: var(--pm-color-ink);
    transition: border-color 0.2s ease;
}

    .pm-input:focus {
        outline: 3px solid rgba(34, 177, 76, 0.35);
        border-color: rgba(34, 177, 76, 0.45);
        background: #fff;
    }

    .pm-input.is-invalid {
        border-color: #dc3545;
        border-width: 2px;
    }

        .pm-input.is-invalid:focus {
            outline-color: rgba(220, 53, 69, 0.35);
            border-color: #dc3545;
        }

.iti {
    width: 100%;
}

.iti__country-selector:has(.iti__search-input:placeholder-shown) .iti__country[data-iso2="zw"] {
    border-bottom: 1px solid var(--iti-border-color);
}

.iti__country[data-iso2="zw"] {
    border-bottom: 1px solid var(--iti-border-color);
}



.pm-form__success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .pm-form__success-overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }

.pm-form__success-message h2 {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--pm-color-ink);
    text-align: center;
}

.pm-form__success-message p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--pm-color-ink);
    text-align: center;
}

.pm-form__success-close {
    display: block;
    margin: 16px auto 0;
    padding: 4px 8px;
    border: 0;
    background: transparent;
    color: var(--pm-color-text-muted);
    font: inherit;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.pm-form__success-close:focus-visible {
    outline: 3px solid rgba(34, 177, 76, 0.35);
    outline-offset: 2px;
}

.pm-textarea {
    resize: vertical;
    min-height: 124px;
}

.pm-privacy {
    margin-top: 12px;
    color: var(--pm-color-text-muted);
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
}

.pm-alert {
    font-size: 14px;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-weight: 600;
    border: 1px solid transparent;
}

.pm-alert--success {
    background: rgba(34, 177, 76, 0.08);
    border-color: rgba(34, 177, 76, 0.25);
    color: #0f6b2a;
}

.pm-alert--error {
    background: rgba(220, 53, 69, 0.08);
    border-color: rgba(220, 53, 69, 0.25);
    color: #a10f1f;
}

/* Footer */
.pm-footer {
    background: #fff;
    padding: 46px 0;
}

.pm-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.pm-footer__blurb {
    margin: 16px 0 16px;
    color: var(--pm-color-text-muted);
    font-size: 16px;
    line-height: 24px;
}

.pm-footer__social i {
    font-size: 24px;
    color: var(--pm-color-text-muted);
}

.pm-footer__social:hover i {
    color: var(--pm-color-ink);
}

.pm-footer__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pm-footer__title {
    margin-bottom: 2px;
    color: var(--pm-color-ink);
    font-size: 14px;
}

.pm-footer__links a {
    color: var(--pm-color-text-muted);
    font-size: 14px;
}

.pm-footer__links a:hover {
    color: var(--pm-color-brand);
}

.pm-footer__legal {
    text-align: right;
    color: var(--pm-color-ink);
    font-size: 12px;
    font-weight: 500;
}

.pm-footer__fineprint {
    margin-top: 8px;
    color: var(--pm-color-text-muted);
}

#contact-form {
    scroll-margin-top: 120px;
}

/* Responsive */
@media (max-width: 1200px) {
    .pm-btn {
        padding: 10px 12px;
        font-size: 14px;
    }

    /* .pm-brand img {
        width: 160px;
        height: auto;
    } */

    .pm-nav {
        gap: 16px;
    }

    .pm-hero__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .pm-hero__media {
        order: -1;
    }

    .pm-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pm-features {
        flex-direction: column;
    }

    .pm-step__head {
        display: block;
    }

    .pm-steps__grid .pm-step__title {
        font-size: 24px;
        line-height: 30px;
        margin-top: 12px;
    }

    .pm-contact__grid {
        grid-template-columns: 1fr 500px;
    }

    .pm-form {
        padding: 28px 22px 26px;
    }

    .pm-footer__grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 28px;
    }

    .pm-footer__legal {
        text-align: left;
    }

    .pm-footer__logo {
        width: auto;
        height: auto;
        display: inline-flex;
    }
}

@media (max-width: 991.98px) {
    .pm-header {
        position: relative;
    }

    .pm-menu-toggle {
        display: flex;
    }

    .pm-subnav--bar .pm-container {
        gap: 8px;
        padding-right: 0;
    }

    .pm-subnav--bar .pm-subnav__back {
        width: 36px;
        height: 36px;
        justify-content: center;
        gap: 0;
        padding-right: 0;
        font-size: 0;
        color: var(--pm-color-ink);
    }

    .pm-subnav--bar .pm-subnav__back i {
        font-size: 22px;
    }

    .pm-subnav--bar .pm-subnav__pages {
        padding-right: 20px;
        -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 28px), transparent);
        mask-image: linear-gradient(to right, #000 calc(100% - 28px), transparent);
    }

    .pm-subnav--bar .pm-subnav__pages::after {
        content: "";
        flex: 0 0 8px;
    }

    .pm-subnav--bar .pm-subnav__link {
        display: inline-flex;
        align-items: center;
        min-height: 36px;
        padding: 8px 12px;
    }

    .pm-contact__grid {
        grid-template-columns: 1fr;
    }

    .pm-qr {
        justify-content: flex-start;
    }

    #contact-form {
        scroll-margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .pm-h1 {
        font-size: 40px;
        letter-spacing: -0.045em;
    }

    .pm-h2 {
        font-size: 30px;
    }

    .pm-cards {
        grid-template-columns: 1fr;
    }

    .pm-features__lists, .pm-features__lists.three-col {
        grid-template-columns: 1fr;
        gap: 0rem;
    }

    .pm-feature-list li:last-of-type {
        border-bottom: 1px solid #efefef;
    }

    .pm-osfa {
        flex: 0 0 auto;
    }

    .pm-steps__rail, .pm-step__num {
        display: none;
    }

    .pm-steps__grid {
        grid-template-columns: 1fr;
    }

    .pm-impact__row {
        flex-direction: column;
        align-items: center;
    }

    .pm-impact__ctrl--prev,
    .pm-impact__ctrl--next {
        top: -12px;
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .pm-qr {
        justify-content: center;
    }

    .pm-subnav--bar .pm-subnav__link {
        display: inline-flex;
        align-items: center;
        min-height: 32px;
        padding: 6px 10px;
        font-size: 12px;
      }
}

@media (max-width: 480px) {
    .pm-feature-list, .pm-footer__blurb {
        font-size: 0.875rem;
    }
}

/* Page and section layouts */
.pm-clients__logos--text {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    align-items: center;
}

.pm-client-name {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    letter-spacing: -0.02em;
    opacity: 0.9;
}

.pm-qr__placeholder {
    width: 142px;
    height: 142px;
    border-radius: 12px;
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--pm-color-text-muted);
    flex-shrink: 0;
}

.pm-qr__text {
    color: var(--pm-color-text-muted);
    font-size: 14px;
    max-width: 220px;
}

.pm-footer .pm-footer__logo {
    filter: none;
}

@media (max-width: 575px) {
    .pm-client-name {
        font-size: 18px;
    }
}

/* Content banner — frontline WhatsApp composition */
.pm-content-banner {
    background: linear-gradient(90deg, #d8f3e4 0%, #d4ebf6 55%, #cfe6f5 100%);
    overflow: hidden;
    padding: 28px 0 0;
}

.pm-content-banner__headline {
    width: 100%;
    text-align: center;
    padding: 0 20px 8px;
    margin-bottom: -90px;
}

.pm-content-banner__headline p {
    margin: 0 auto;
    max-width: 520px;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #1a2332;
}

.pm-content-banner__stage {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 0;
    /* min-height: 450px; */
}

.pm-content-banner__person {
    position: relative;
    display: flex;
    align-items: flex-end;
    z-index: 1;
    min-height: 280px;
}

.pm-content-banner__person img {
    display: block;
    width: min(100%, 360px);
    height: auto;
    max-height: 390px;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 12px 24px rgba(31, 42, 61, 0.18));
}

.pm-content-banner__person--left {
    justify-content: flex-start;
    padding-left: 4px;
}

.pm-content-banner__person--right {
    justify-content: flex-end;
    padding-right: 4px;
}

.pm-toast {
    position: absolute;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    width: min(280px, 70%);
    background: #fff;
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
    border: 3px solid #fff;
    z-index: 3;
}

.pm-toast__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.pm-toast__body {
    min-width: 0;
    flex: 1;
}

.pm-toast__top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: baseline;
    margin-bottom: 2px;
}

.pm-toast__top strong {
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    font-family: "Inter", system-ui, sans-serif;
}

.pm-toast__top span {
    font-size: 11px;
    color: #9ca3af;
    white-space: nowrap;
}

.pm-toast__body p {
    margin: 0;
    font-size: 12px;
    line-height: 1.35;
    color: #374151;
    font-family: "Inter", system-ui, sans-serif;
}

/* Pull toasts toward the centre gap, clear of the cutouts */
.pm-toast--faith {
    right: 0;
    bottom: 38%;
}

.pm-toast--john {
    left: 0;
    top: 29%;
    margin-left: 10px;
}

@media (max-width: 991.98px) {
    .pm-content-banner {
        padding-top: 28px;
    }

    .pm-content-banner__headline {
        margin-bottom: -40px;
        padding-bottom: 8px;
    }

    .pm-content-banner__stage {
        max-width: 100%;
        min-height: 280px;
    }

    .pm-content-banner__person {
        min-height: 220px;
    }

    .pm-content-banner__person img {
        max-height: 280px;
        width: min(100%, 280px);
    }
}

@media (max-width: 767.98px) {
    .pm-toast {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .pm-content-banner__headline p {
        font-size: 20px;
    }

    .pm-content-banner__person img {
        max-height: 220px;
    }
}

/* Interactive survey demo banner (employee-surveys) */
.pm-content-banner--demo {
    padding-top: 48px;
    position: relative;
}

.pm-content-banner--demo .pm-content-banner__headline {
    position: absolute;
    left: 0;
    right: 0;
    top: 24px;
    z-index: 5;
    margin: 0;
    padding: 0 20px;
    pointer-events: none;
    transition: opacity 520ms ease, transform 520ms ease;
}

.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__headline {
    opacity: 0;
    transform: translateY(-10px);
}

.pm-content-banner--demo .pm-content-banner__stage {
    position: relative;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 0;
    max-width: 1100px;
    padding: 0 12px;
    min-height: 420px;
}

.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__stage {
    grid-template-columns: 1fr minmax(200px, 230px) 1fr;
    gap: 8px 12px;
    max-width: 1200px;
    min-height: 480px;
}

.pm-content-banner--demo .pm-content-banner__person--left {
    grid-column: 1;
    grid-row: 1;
}

.pm-content-banner--demo .pm-content-banner__person--right {
    grid-column: 2;
    grid-row: 1;
}

.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__person--right {
    grid-column: 3;
}

.pm-content-banner--demo .pm-content-banner__person {
    min-height: 360px;
    align-items: flex-end;
    transition: opacity 400ms ease;
}

.pm-content-banner--demo .pm-content-banner__person img {
    transition: opacity 400ms ease, transform 400ms ease;
}

.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__person.is-idle img,
.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__person.is-idle .pm-toast {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__person.is-active img {
    opacity: 1;
    visibility: visible;
}

/* Idle / reset: both toasts visible like the static overview banner */
.pm-content-banner--demo .pm-toast {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 480ms ease, transform 480ms ease, visibility 480ms ease;
    pointer-events: none;
}

.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-toast {
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
}

.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-toast.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pm-survey-demo__stats {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 0;
    padding: 28px 20px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 400ms ease, transform 400ms ease, visibility 400ms ease;
    pointer-events: none;
    z-index: 2;
}

.pm-content-banner--demo .pm-content-banner__person--left .pm-survey-demo__stats {
    align-items: flex-start;
    text-align: left;
    padding-left: 28px;
}

.pm-content-banner--demo .pm-content-banner__person--right .pm-survey-demo__stats {
    align-items: flex-end;
    text-align: right;
    padding-right: 28px;
}

.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__person.is-idle .pm-survey-demo__stats {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pm-survey-demo__stat {
    max-width: 220px;
}

.pm-survey-demo__stat-value {
    display: block;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #1a2332;
}

.pm-survey-demo__stat-label {
    display: block;
    margin-top: 4px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 13px;
    line-height: 1.35;
    color: #374151;
}

.pm-content-banner__phone {
    grid-column: 1 / -1;
    grid-row: 1;
    position: absolute;
    left: 50%;
    bottom: 28px;
    top: auto;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 0;
    padding: 0;
    pointer-events: none;
}

.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__phone {
    grid-column: 2;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    z-index: 4;
    padding-bottom: 12px;
    align-self: end;
    min-height: 480px;
    width: 100%;
    pointer-events: auto;
}

.pm-survey-demo__device {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.96);
    transition: opacity 520ms ease, transform 520ms ease, visibility 520ms ease;
    pointer-events: none;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.pm-content-banner--demo:is(.is-playing, .is-complete) .pm-survey-demo__device {
    position: relative;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.pm-survey-demo__label {
    margin: 0 0 8px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a2332;
    background: rgba(255, 255, 255, 0.85);
    padding: 4px 10px;
    border-radius: 999px;
    transition: opacity 400ms ease, visibility 400ms ease;
}

.pm-content-banner--demo.is-complete .pm-survey-demo__label {
    opacity: 0;
    visibility: hidden;
}

.pm-content-banner--demo .wa-demo-splash {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 20px 14px 16px;
    gap: 8px;
}

.pm-content-banner--demo.is-complete .wa-demo-splash {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pm-content-banner--demo .wa-demo-splash__wordmark {
    color: #fff;
}

.pm-content-banner--demo .wa-demo-splash__cta:focus-visible {
    outline-color: #fff;
}

.pm-content-banner--demo .wa-phone-frame {
    width: 220px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 32px;
    background: #1a1a1a;
    padding: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

.pm-content-banner--demo .wa-phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 4px;
    background: #333;
    border-radius: 10px;
}

.pm-content-banner--demo .wa-phone-screen {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #efeae2;
    display: flex;
    flex-direction: column;
    height: 440px;
}

.pm-content-banner--demo .wa-hdr {
    background: #008069;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    flex-shrink: 0;
}

.pm-content-banner--demo .wa-hdr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 18px;
    background: #075e54;
}

.pm-content-banner--demo .wa-hdr > * {
    position: relative;
    z-index: 1;
}

.pm-content-banner--demo .wa-hdr-back {
    color: #fff;
    font-size: 1.05rem;
    margin-top: 12px;
}

.pm-content-banner--demo .wa-hdr-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #dfe5e7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    overflow: hidden;
}

.pm-content-banner--demo .wa-hdr-avatar i {
    color: #a0aeb4;
    font-size: 1.15rem;
    margin-top: 4px;
}

.pm-content-banner--demo .wa-hdr-info {
    flex: 1;
    margin-top: 12px;
    min-width: 0;
}

.pm-content-banner--demo .wa-hdr-name {
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pm-content-banner--demo .wa-hdr-status {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.55rem;
}

.pm-content-banner--demo .wa-hdr-icons {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 12px;
}

.pm-content-banner--demo .wa-chat-area {
    padding: 6px;
    flex: 1 1 0;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #efeae2;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M20 10c2 0 3-1 3-3s-1-3-3-3-3 1-3 3 1 3 3 3zm40 20c1.5 0 2.5-1 2.5-2.5S61.5 25 60 25s-2.5 1-2.5 2.5S58.5 30 60 30zm80-15c1 0 2-.8 2-2s-1-2-2-2-2 .8-2 2 1 2 2 2zm-60 80c1.5 0 2.5-1 2.5-2.5S81.5 90 80 90s-2.5 1-2.5 2.5S78.5 95 80 95zm100 10c1 0 2-.8 2-2s-1-2-2-2-2 .8-2 2 1 2 2 2zm-140 60c2 0 3-1 3-3s-1-3-3-3-3 1-3 3 1 3 3 3zm120-20c1.5 0 2.5-1 2.5-2.5s-1-2.5-2.5-2.5-2.5 1-2.5 2.5 1 2.5 2.5 2.5z' fill='%23cfc8bc' fill-opacity='.08'/%3E%3C/svg%3E");
}

.pm-content-banner--demo .wa-chat-date {
    text-align: center;
    margin-bottom: 6px;
}

.pm-content-banner--demo .wa-chat-date span {
    font-size: 0.575rem;
    color: #54656f;
    background: #fff;
    padding: 2px 8px;
    border-radius: 8px;
    box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.08);
    display: inline-block;
}

.pm-content-banner--demo .wa-msg {
    max-width: 85%;
    padding: 5px 7px 3px 8px;
    border-radius: 8px;
    margin-bottom: 3px;
    font-size: 0.625rem;
    line-height: 1.35;
    position: relative;
    word-wrap: break-word;
    animation: waSurveyMsgPop 0.2s ease;
}

.pm-content-banner--demo .wa-msg--in {
    background: #fff;
    border-top-left-radius: 0;
    margin-right: auto;
    box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.08);
}

.pm-content-banner--demo .wa-msg--out {
    background: #d9fdd3;
    border-top-right-radius: 0;
    margin-left: auto;
    box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.08);
}

.pm-content-banner--demo .wa-msg-time {
    font-size: 0.45rem;
    color: #667781;
    text-align: right;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.pm-content-banner--demo .wa-msg--out .wa-msg-time {
    color: #5c8a5a;
}

.pm-content-banner--demo .wa-msg--out .wa-msg-time::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10'%3E%3Cpath d='M2 5l2.5 3L9 3' fill='none' stroke='%2353bdeb' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6 5l2.5 3L13 3' fill='none' stroke='%2353bdeb' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.pm-content-banner--demo .wa-msg strong {
    font-weight: 600;
}

.pm-content-banner--demo .wa-typing-ind {
    display: flex;
    gap: 3px;
    padding: 8px 12px;
    max-width: 52px;
}

.pm-content-banner--demo .wa-typing-ind span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #8696a0;
    animation: waSurveyTypeBounce 1.2s infinite;
}

.pm-content-banner--demo .wa-typing-ind span:nth-child(2) {
    animation-delay: 0.2s;
}

.pm-content-banner--demo .wa-typing-ind span:nth-child(3) {
    animation-delay: 0.4s;
}

.pm-content-banner--demo .wa-quick-menu {
    background: #f0f2f5;
    padding: 6px;
    border-top: 1px solid #e9edef;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    align-content: center;
    height: auto;
    min-height: 0;
    overflow: visible;
    flex: 0 0 auto;
    box-sizing: border-box;
}

.pm-content-banner--demo .wa-qbtn {
    background: #fff;
    border: 1px solid #00a884;
    color: #008069;
    font-size: 0.58rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: default;
    font-family: inherit;
    pointer-events: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.pm-content-banner--demo .wa-qbtn.is-picked {
    background: #00a884;
    color: #fff;
    transform: scale(1.04);
}

.pm-content-banner--demo .wa-qbtn--score {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 1;
}

.pm-content-banner--demo .wa-input-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 6px;
    background: #f0f2f5;
    flex-shrink: 0;
    height: 36px;
    box-sizing: border-box;
}

.pm-content-banner--demo .wa-input-emoji {
    color: #54656f;
    font-size: 0.85rem;
}

.pm-content-banner--demo .wa-input-field {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 5px 8px;
    font-size: 0.55rem;
    color: #8696a0;
}

.pm-content-banner--demo .wa-input-clip {
    color: #54656f;
    font-size: 0.8rem;
    transform: rotate(-45deg);
}

.pm-content-banner--demo .wa-input-mic {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00a884;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

@keyframes waSurveyMsgPop {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(6px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes waSurveyTypeBounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-3px);
    }
}

@media (max-width: 991.98px) {
    .pm-content-banner--demo .pm-content-banner__stage {
        gap: 0 8px;
        padding: 0 8px;
        min-height: 0;
    }

    .pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__stage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
    }

    .pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__phone {
        grid-column: 1 / -1;
        grid-row: 1;
        min-height: 440px;
        padding-bottom: 8px;
        padding-top: 8px;
    }

    .pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__person--left {
        grid-column: 1;
        grid-row: 2;
    }

    .pm-content-banner--demo:is(.is-playing, .is-complete) .pm-content-banner__person--right {
        grid-column: 2;
        grid-row: 2;
    }

    .pm-content-banner--demo .wa-phone-frame {
        width: 200px;
    }

    .pm-content-banner--demo .wa-phone-screen {
        height: 400px;
    }

    .pm-content-banner--demo .pm-content-banner__person {
        min-height: 260px;
    }

    .pm-survey-demo__stat-value {
        font-size: 24px;
    }

    .pm-survey-demo__stat-label {
        font-size: 12px;
    }
}

@media (max-width: 767.98px) {
    .pm-content-banner--demo .pm-toast {
        display: none;
    }

    .pm-content-banner--demo .pm-content-banner__person img {
        max-height: 200px;
    }

    .pm-survey-demo__stats {
        padding: 16px 10px 24px;
    }

    .pm-content-banner--demo .pm-content-banner__person--left .pm-survey-demo__stats,
    .pm-content-banner--demo .pm-content-banner__person--right .pm-survey-demo__stats {
        padding-left: 10px;
        padding-right: 10px;
        align-items: center;
        text-align: center;
    }

    .pm-survey-demo__stat {
        max-width: 160px;
    }
}

@media (max-width: 575.98px) {
    .pm-content-banner--demo .wa-phone-frame {
        width: 180px;
    }

    .pm-content-banner--demo .wa-phone-screen {
        height: 360px;
    }

    .pm-survey-demo__stat:nth-child(3) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pm-content-banner--demo .pm-toast,
    .pm-content-banner--demo .pm-content-banner__person,
    .pm-content-banner--demo .pm-content-banner__person img,
    .pm-content-banner--demo .pm-content-banner__headline,
    .pm-survey-demo__device,
    .pm-survey-demo__label,
    .pm-survey-demo__stats,
    .pm-content-banner--demo .wa-demo-splash {
        transition: none;
    }

    .pm-content-banner--demo .wa-msg,
    .pm-content-banner--demo .wa-typing-ind span {
        animation: none;
    }
}

.pm-pillar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 32px;
}

.pm-pillar__list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.pm-pillar__list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--pm-color-text);
}

.pm-pillar__list i {
    color: var(--pm-color-brand);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pm-pillar__panel {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid rgba(34, 177, 76, 0.2);
    border-radius: var(--pm-radius);
    padding: 32px;
}

.pm-integrations {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    justify-content: center;
}

.pm-integrations--start {
    justify-content: flex-start;
}

.pm-integration {
    background: #fff;
    border: 1px solid var(--pm-color-border);
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    color: var(--pm-color-ink);
}

.pm-faq {
    max-width: 820px;
    margin: 32px auto 0;
}

.pm-faq__item {
    border: 1px solid var(--pm-color-border);
    border-radius: var(--pm-radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.pm-faq__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 20px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--pm-color-ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.pm-faq__answer {
    padding: 0 20px 18px;
    color: var(--pm-color-text);
    font-size: 15px;
    line-height: 1.65;
}

.pm-faq__item[open] .pm-faq__question i {
    transform: rotate(180deg);
}

.pm-testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.pm-testimonial {
    background: #fff;
    border: 1px solid var(--pm-color-border);
    border-radius: var(--pm-radius-sm);
    padding: 28px;
}

.pm-testimonial__quote {
    font-size: 15px;
    line-height: 1.65;
    color: var(--pm-color-text);
    margin: 0 0 16px;
    font-style: italic;
}

.pm-testimonial__author {
    font-weight: 700;
    font-size: 14px;
    color: var(--pm-color-ink);
}

.pm-testimonial__role {
    font-size: 13px;
    color: var(--pm-color-text-muted);
    margin-top: 2px;
}

.pm-social-proof__intro {
    margin-bottom: 40px;
}

.pm-case-study {
    background: linear-gradient(165deg, #f4faf6 0%, #eef6fb 48%, #f7f8fa 100%);
    color: var(--pm-color-ink);
    border-radius: var(--pm-radius);
    padding: 28px 28px 22px;
    margin-top: 8px;
    border: 1px solid rgba(31, 42, 61, 0.08);
}

.pm-case-study__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 28px 32px;
    align-items: center;
}

.pm-case-study__meta {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--pm-color-text);
}

.pm-case-study__lead {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--pm-color-ink);
}

.pm-case-study__story {
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--pm-color-text);
}

.pm-case-study__contrast {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.pm-case-study__contrast-item {
    border-radius: 10px;
    padding: 12px 14px;
}

.pm-case-study__contrast-item span {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pm-case-study__contrast-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
}

.pm-case-study__contrast-item--before {
    background: rgba(15, 23, 42, 0.05);
    color: var(--pm-color-text);
}

.pm-case-study__contrast-item--before span {
    color: var(--pm-color-text-muted);
}

.pm-case-study__contrast-item--after {
    background: rgba(34, 177, 76, 0.1);
    color: var(--pm-color-ink);
}

.pm-case-study__contrast-item--after span {
    color: var(--pm-color-brand);
}

.pm-case-study__quote {
    margin: 18px 0 20px;
    padding: 0 0 0 14px;
    border-left: 3px solid var(--pm-color-brand);
}

.pm-case-study__quote p {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.5;
    font-style: italic;
    color: var(--pm-color-ink);
}

.pm-case-study__quote cite {
    display: block;
    font-style: normal;
    font-size: 13px;
    color: var(--pm-color-text);
}

.pm-case-study__copy .pm-btn {
    text-decoration: none;
}

.pm-case-study__visual {
    position: relative;
    border-radius: calc(var(--pm-radius) - 4px);
    overflow: hidden;
    min-height: 260px;
    background: #dfe8f0;
}

.pm-case-study__visual > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
}

.pm-case-study__toast {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 16px;
    width: auto;
    max-width: 300px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 480ms ease, transform 480ms ease;
}

.pm-case-study.is-inview .pm-case-study__toast {
    opacity: 1;
    transform: translateY(0);
}

.pm-case-study__metrics {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 16px 20px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.pm-case-study__metric-value {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.1;
    color: var(--pm-color-brand);
}

.pm-case-study__metric--hero .pm-case-study__metric-value {
    font-size: clamp(28px, 3.6vw, 40px);
    letter-spacing: -0.03em;
}

.pm-case-study__metric-label {
    font-size: 14px;
    line-height: 1.4;
    color: var(--pm-color-text);
    margin-top: 4px;
}

.pm-case-study__footnote {
    margin: 16px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: var(--pm-color-text-muted);
}

.pm-case-more {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.pm-case-more .pm-h3 {
    margin: 0 0 8px;
}

.pm-case-note {
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--pm-color-text);
}

.pm-case-more__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pm-case-more__links li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pm-case-more__links a {
    font-size: 17px;
    font-weight: 700;
    color: var(--pm-color-ink);
    text-decoration: none;
}

.pm-case-more__links a:hover {
    color: var(--pm-color-brand);
    text-decoration: underline;
}

.pm-case-more__links span {
    font-size: 14px;
    line-height: 1.5;
    color: var(--pm-color-text);
}

.pm-case-more__all {
    margin: 20px 0 0;
    font-weight: 600;
}

.pm-case-list {
    margin: 0;
    padding: 0 0 0 1.25rem;
    color: var(--pm-color-text);
}

.pm-case-list li {
    margin: 0 0 22px;
    padding-left: 4px;
}

.pm-case-list .pm-h3 {
    margin: 0 0 6px;
    font-size: 20px;
}

.pm-case-list .pm-h3 a {
    color: inherit;
    text-decoration: none;
}

.pm-case-list .pm-h3 a:hover {
    color: var(--pm-color-brand);
    text-decoration: underline;
}

.pm-case-list p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}

.pm-case-quote {
    margin: 28px 0;
    padding: 0 0 0 18px;
    border-left: 3px solid var(--pm-color-brand);
}

.pm-case-quote p {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.55;
    font-style: italic;
    color: var(--pm-color-ink);
}

.pm-case-quote cite {
    display: block;
    font-style: normal;
    font-size: 14px;
    color: var(--pm-color-text);
}

@media (max-width: 900px) {
    .pm-case-study__layout {
        grid-template-columns: 1fr;
    }

    .pm-case-study__visual {
        order: -1;
        max-height: 320px;
    }

    .pm-case-study__visual > img {
        min-height: 240px;
        max-height: 320px;
    }
}

@media (max-width: 720px) {
    .pm-case-study {
        padding: 22px 18px 18px;
    }

    .pm-case-study__contrast {
        grid-template-columns: 1fr;
    }

    .pm-case-study__metrics {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/*Case study page */
.pm-case-page {
    padding-top: 32px;
}

.pm-case-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 36px 40px;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(31, 42, 61, 0.08);
    border-radius: var(--pm-radius);
    overflow: visible;
    box-shadow: 0 12px 32px rgba(31, 42, 61, 0.08);
}

.pm-case-feature__media {
    margin: 0;
    min-height: 280px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.pm-case-feature__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: var(--pm-radius) 0 0 var(--pm-radius);
}

.pm-case-feature__copy {
    padding: 36px 36px 36px 8px;
}

.pm-case-feature__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.pm-case-feature__heading .pm-h2 {
    margin: 0;
    flex: 1 1 auto;
}

.pm-case-feature__brand {
    display: block;
    width: auto;
    height: 64px;
    flex-shrink: 0;
    object-fit: contain;
}

.pm-case-feature__copy .pm-copy {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--pm-color-text);
}

.pm-case-feature__copy .pm-link {
    margin-top: 20px;
}

.pm-case-story {
    max-width: 760px;
    margin: 0 auto;
}

.pm-case-story > h1 {
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.2;
    margin: 0 0 16px;
}

.pm-case-story > .pm-lead {
    text-align: left;
    margin: 0 0 36px;
    max-width: none;
}

.pm-case-story h2 {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 26px;
    margin: 40px 0 12px;
    color: var(--pm-color-ink);
}

.pm-case-story p,
.pm-case-story li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--pm-color-text);
}

.pm-case-story ul {
    padding-left: 20px;
    margin: 12px 0 0;
}

.pm-case-pullquote {
    position: relative;
    overflow: hidden;
    margin: 48px 0 0;
    padding: 38px 40px 40px;
    border: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, #162d45 0%, #1f4261 60%, #176b58 100%);
    box-shadow: 0 22px 50px rgba(15, 35, 55, 0.2);
}

.pm-case-pullquote::after {
    content: "“";
    position: absolute;
    right: 24px;
    top: -38px;
    font-family: Georgia, serif;
    font-size: 190px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.pm-case-pullquote__brand {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.pm-case-pullquote__brand img {
    display: block;
    width: 130px;
    height: 46px;
    object-fit: contain;
    object-position: left center;
}

.pm-case-pullquote__brand span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.pm-case-pullquote p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 26px);
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #fff;
    font-style: normal;
}

.pm-case-pullquote__author {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 26px;
}

.pm-case-pullquote__avatar {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #176b58;
    font-size: 13px;
    font-weight: 800;
}

.pm-case-pullquote cite {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-style: normal;
}

.pm-case-pullquote cite strong {
    font-size: 14px;
    color: #fff;
}

.pm-case-pullquote cite span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
    .pm-case-feature {
        grid-template-columns: 1fr;
    }

    .pm-case-feature__media img {
        min-height: 220px;
        max-height: 280px;
        border-radius: var(--pm-radius) var(--pm-radius) 0 0;
    }

    .pm-case-feature__copy {
        padding: 8px 24px 28px;
    }

    .pm-case-feature__brand {
        height: 52px;
    }
}

@media (max-width: 720px) {

    .pm-case-pullquote {
        padding: 30px 24px;
    }

    .pm-case-pullquote__brand {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

/* Guides page */
.pm-guides-page {
    padding-top: 32px;
}

/* Stock imagery layouts */
.pm-split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
}

.pm-split--reverse {
    direction: rtl;
}

.pm-split--reverse > * {
    direction: ltr;
}

.pm-media {
    position: relative;
    z-index: 1;
    isolation: isolate;
    border-radius: 16px;
    overflow: visible;
    aspect-ratio: 4 / 3;
    background: #e2e8f0;
    box-shadow: 0 18px 40px rgba(31, 42, 61, 0.12);
}

.pm-media img,
.pm-media__slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.pm-media[data-media-carousel] .pm-media__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.pm-media[data-media-carousel] .pm-media__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.pm-media--tall {
    aspect-ratio: 3 / 4;
}

.pm-media--wide {
    aspect-ratio: 16 / 9;
}

.pm-media::after,
.pm-pillar__photo::after,
.pm-case-feature__media::after {
    content: "";
    position: absolute;
    width: 104px;
    height: 100px;
    background: url("../images/logo-mark-on-dark.svg") no-repeat center / contain;
    pointer-events: none;
    z-index: 3;
    filter: drop-shadow(0 8px 18px rgba(31, 42, 61, 0.28));
}

.pm-media::after,
.pm-pillar__photo::after {
    top: -10px;
}

.pm-split > figure:first-child::after,
.pm-case-feature__media::after {
    left: -22px;
    right: auto;
}

.pm-split > figure:last-child::after {
    right: -22px;
    left: auto;
}

.pm-split--reverse > figure:first-child::after {
    right: -22px;
    left: auto;
}

.pm-split--reverse > figure:last-child::after {
    left: -22px;
    right: auto;
}

.pm-case-feature__media::after {
    top: 9px;
}

.pm-visual-band {
    position: relative;
    min-height: 340px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.pm-visual-band__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 42, 61, 0.15) 0%, rgba(31, 42, 61, 0.78) 100%);
}

.pm-visual-band__content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: var(--pm-width-container);
    margin: 0 auto;
    width: 100%;
    color: #fff;
}

.pm-visual-band__content h2 {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 10px;
    max-width: 640px;
}

.pm-visual-band__content p {
    margin: 0;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.pm-pillar__photo {
    border-radius: var(--pm-radius);
    overflow: visible;
    aspect-ratio: 4 / 5;
    position: relative;
    z-index: 1;
    isolation: isolate;
    box-shadow: 0 18px 40px rgba(31, 42, 61, 0.12);
}

.pm-pillar__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.pm-pillar__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent, rgba(31, 42, 61, 0.85));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 0 0 var(--pm-radius) var(--pm-radius);
}

.pm-page-hero--visual {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #fff;    
}

.pm-page-hero--visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(31, 42, 61, 0.88) 40%, rgba(31, 42, 61, 0.25) 100%);
}

.pm-page-hero--visual::after {
    content: "";
    position: absolute;
    left: -70px;
    bottom  : 0;
    width: 340px;
    height: 328px;
    background: url("../images/logo-mark-on-dark.svg") no-repeat center / contain;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.pm-page-hero--visual .pm-container {
    position: relative;
    z-index: 1;
}

.pm-page-hero--visual .pm-h1 {
    color: #fff;
}

.pm-page-hero--visual .pm-accent {
    color: #4ade80;
}

.pm-page-hero--visual .pm-lead {
    color: rgba(255, 255, 255, 0.88);
}

.pm-credit {
    font-size: 11px;
    color: var(--pm-color-text-muted);
    margin-top: 8px;
}

@media (max-width: 991px) {
    .pm-split,
    .pm-split--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 28px;
    }

    .pm-visual-band {
        min-height: 280px;
    }

    .pm-pillar__photo {
        aspect-ratio: 16 / 10;
        max-height: 360px;
    }

    .pm-media::after,
    .pm-pillar__photo::after,
    .pm-case-feature__media::after {
        width: 76px;
        height: 73px;
    }

    .pm-media::after,
    .pm-pillar__photo::after {
        top: -6px;
    }

    .pm-split > figure:first-child::after,
    .pm-case-feature__media::after,
    .pm-split--reverse > figure:last-child::after {
        left: -14px;
        right: auto;
    }

    .pm-split > figure:last-child::after,
    .pm-split--reverse > figure:first-child::after {
        right: -14px;
        left: auto;
    }

}

@media (max-width: 991px) {
    .pm-pillar,
    .pm-testimonials {
        grid-template-columns: 1fr;
    }
}
