:root {
    --ff: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --bg: #000415;
    --bg-dark: #090C1B;
    --bg-card: #131421;
    --bg-card2: #141624;
    --bg-contact: #1d1f31;
    --bg-surface: #202134;

    --pink: #CA0274;
    --pink-lite: #d4188a;
    --pink-tag-bg: rgba(202,2,116,0.12);
    --pink-border: rgba(202,2,116,0.3);
    --pink-glow: rgba(202,2,116,0.5);
    --pink-hover-border: rgba(202,2,116,0.4);
    --pink-hover-shadow: rgba(202,2,116,0.2);

    --white: #ffffff;
    --text: #E8E8E8;
    --grey: #8f9bb3;
    --grey-dark: #5c6478;
    --teal: #4BE4DB;

    --border: rgba(255,255,255,0.06);
    --border-subtle: rgba(255,255,255,0.02);
    --border-light: rgba(255,255,255,0.15);
    --white-03: rgba(255,255,255,0.03);
    --white-10: rgba(255,255,255,0.1);
    --white-20: rgba(255,255,255,0.2);
    --white-60: rgba(255,255,255,0.6);
    --white-72: rgba(255,255,255,0.72);
    --white-75: rgba(255,255,255,0.75);
    --white-78: rgba(255,255,255,0.78);
    --white-85: rgba(255,255,255,0.85);
    --white-90: rgba(255,255,255,0.9);
    --white-92: rgba(255,255,255,0.92);
    --text-80: rgba(232,232,232,0.8);
    --text-85: rgba(232,232,232,0.85);
    --text-90: rgba(232,232,232,0.9);

    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 8px;
    --r-xl: 10px;
    --r-2xl: 15px;
    --r-3xl: 24px;

    --max-w: 1560px;
    --reading-w: 660px;
    --section-py: 96px;
    --grid-gap: 32px;
}

@media (max-width: 767px) {
    :root {
        --section-py: 64px;
        --grid-gap: 20px;
    }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--ff); }

.pm-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 768px)  { .pm-container { padding: 0 48px; } }
@media (min-width: 1024px) { .pm-container { padding: 0 80px; } }
@media (min-width: 1600px) { .pm-container { padding: 0 120px; } }

.pm-section {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.pm-section-label {
    font: 600 14px/1.2 var(--ff);
    color: var(--white-72);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pm-section-title {
    font: 900 28px/1.05 var(--ff);
    color: var(--white);
    margin: 0 0 12px;
    text-transform: uppercase;
}
@media (min-width: 768px) { .pm-section-title { font-size: 32px; } }

.pm-section-line {
    width: 160px;
    height: 3px;
    background: var(--pink);
    margin: 0 0 28px;
}
@media (max-width: 767px) {
    .pm-section-line { width: 30%; min-width: 80px; height: 2px; }
}

.pm-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .pm-section-header {
        display: grid;
        gap: 12px;
        margin-bottom: 28px;
    }
}

.pm-hero::after,
.pm-blog-feature::after,
.pm-about-strip::after,
.pm-services-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
    background:
        repeating-radial-gradient(ellipse at center,
            rgba(255,255,255,0.26) 0 1px,
            transparent 1px 14px);
    mask-image: linear-gradient(90deg, transparent 0%, #000 20%, #000 82%, transparent 100%);
}

.pm-shell {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(0,4,21,0.98) 0%, rgba(0,5,20,1) 48%, rgba(19,20,33,1) 100%);
}

.pm-shell > header.pm-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 50;
}

.pm-nav {
    background: transparent;
}

.pm-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}
@media (max-width: 767px) { .pm-nav { padding: 12px 0; } }

.pm-nav-logo { cursor: pointer; }
.pm-nav-logo img { height: 60px; }
@media (max-width: 767px) { .pm-nav-logo img { height: 48px; } }
@media (min-width: 1600px) { .pm-nav-logo img { height: 72px; } }

.pm-nav-links {
    display: none;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin-left: auto;
}
@media (min-width: 768px) { .pm-nav-links { display: flex; } }

.pm-nav-link {
    font: 700 11px var(--ff);
    color: var(--white-72);
    cursor: pointer;
    position: relative;
    padding: 8px 0;
    transition: color 0.2s;
    text-transform: uppercase;
}
.pm-nav-link:hover { color: var(--pink); }
.pm-nav-link.active { color: var(--pink); }
.pm-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--pink);
}

.pm-nav-phone {
    font: 700 12px var(--ff);
    color: var(--white-85);
    cursor: pointer;
    margin-left: 0;
    white-space: nowrap;
    transition: color 0.2s;
}
.pm-nav-phone:hover { color: var(--pink); }

.pm-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 200;
}
@media (min-width: 768px) { .pm-hamburger { display: none; } }
.pm-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white-75);
    transition: all 0.3s;
}
.pm-hamburger.open span { background: var(--pink); }

.pm-mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,4,21,0.96);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.pm-mobile-menu-close {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pm-mobile-menu-close:hover { color: var(--pink); }
.pm-mobile-menu-link {
    font: 700 22px var(--ff);
    color: var(--white);
    cursor: pointer;
    padding: 14px;
    text-align: center;
    transition: color 0.2s;
}
.pm-mobile-menu-link:hover,
.pm-mobile-menu-link.active { color: var(--pink); }
.pm-mobile-menu-phone {
    margin-top: 24px;
    font: 600 18px var(--ff);
    color: var(--white);
}
.pm-mobile-menu-phone a { color: inherit; }
.pm-mobile-menu-phone a:hover { color: var(--pink); }

.pm-hero {
    min-height: 676px;
    display: flex;
    align-items: flex-start;
    position: relative;
    isolation: isolate;
    background: var(--bg);
}
@media (max-width: 767px) { .pm-hero { min-height: 100vh; } }

.pm-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("/static/main_header.avif") top center / cover no-repeat;
}
.pm-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,4,21,0.5);
}

.pm-hero::after {
    display: none;
}

.pm-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 175px;
    padding-bottom: 78px;
}
@media (max-width: 767px) {
    .pm-hero-content { padding-top: 124px; padding-bottom: 60px; }
}

.pm-hero-label {
    display: none;
}

.pm-hero-title {
    width: 100%;
    max-width: 100%;
    font: 800 3.35rem/1.12 var(--ff);
    color: var(--white);
    margin: 0 0 1rem;
    text-transform: uppercase;
    cursor: default;
}
@media (max-width: 767px) {
    .pm-hero-title { font-size: 2rem; max-width: 100%; }
    .pm-hero-title-typed { font-size: 1.12rem; }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .pm-hero-title { font-size: 2.8rem; max-width: 90%; }
}
.pm-hero-title-static,
.pm-hero-title-typed {
    display: block;
}

.pm-hero-title-static {
    white-space: nowrap;
}

.pm-hero-title-typed {
    position: relative;
    display: block;
    min-height: 1.12em;
    color: var(--pink);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
}

.pm-hero-title-typed-text {
    position: absolute;
    inset: 0 auto auto 0;
    display: block;
    width: 0;
    max-width: min(100%, 32ch);
    overflow: hidden;
    opacity: 0;
    vertical-align: bottom;
    white-space: nowrap;
    animation-duration: 7.2s;
    animation-timing-function: steps(32, end);
    animation-iteration-count: infinite;
}

.pm-hero-title-stunning {
    color: var(--white);
}

.pm-hero-title-keyword {
    color: var(--pink);
}

.pm-hero-title-agency,
.pm-hero-title-typed-text::after {
    color: var(--white);
}

.pm-hero-title-typed-text::after {
    content: "_";
    display: inline-block;
    animation: pmHeroCursor 0.9s steps(1, end) infinite;
}

.pm-hero-title-typed-text.is-1 { animation-name: pmHeroTypeOne; }
.pm-hero-title-typed-text.is-2 { animation-name: pmHeroTypeTwo; }
.pm-hero-title-typed-text.is-3 { animation-name: pmHeroTypeThree; }
.pm-hero-title-typed-text.is-4 { animation-name: pmHeroTypeFour; }

@keyframes pmHeroTypeOne {
    0% {
        width: 0;
        opacity: 1;
    }
    7%,
    16% {
        width: 32ch;
        opacity: 1;
    }
    24% {
        width: 0;
        opacity: 1;
    }
    25%,
    100% {
        width: 0;
        opacity: 0;
    }
}

@keyframes pmHeroTypeTwo {
    0%,
    24% {
        width: 0;
        opacity: 0;
    }
    25% {
        width: 0;
        opacity: 1;
    }
    32%,
    41% {
        width: 32ch;
        opacity: 1;
    }
    49% {
        width: 0;
        opacity: 1;
    }
    50%,
    100% {
        width: 0;
        opacity: 0;
    }
}

@keyframes pmHeroTypeThree {
    0%,
    49% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 0;
        opacity: 1;
    }
    57%,
    66% {
        width: 32ch;
        opacity: 1;
    }
    74% {
        width: 0;
        opacity: 1;
    }
    75%,
    100% {
        width: 0;
        opacity: 0;
    }
}

@keyframes pmHeroTypeFour {
    0%,
    74% {
        width: 0;
        opacity: 0;
    }
    75% {
        width: 0;
        opacity: 1;
    }
    82%,
    91% {
        width: 32ch;
        opacity: 1;
    }
    99% {
        width: 0;
        opacity: 1;
    }
    100% {
        width: 0;
        opacity: 0;
    }
}

@keyframes pmHeroCursor {
    0%,
    52% {
        opacity: 1;
    }
    53%,
    100% {
        opacity: 0;
    }
}

.pm-hero-subtitle {
    max-width: 55%;
    font: 400 1.15rem/1.35 var(--ff);
    color: var(--white);
    margin-bottom: 0;
}
@media (max-width: 767px) { .pm-hero-subtitle { max-width: 100%; font-size: 1rem; } }
@media (min-width: 768px) and (max-width: 1023px) { .pm-hero-subtitle { max-width: 75%; } }

.pm-hero .pm-btn {
    min-width: 210px;
    height: 46px;
    margin-top: 3rem;
    margin-bottom: 5.5rem;
}
@media (max-width: 767px) {
    .pm-hero .pm-btn {
        width: 190px;
        min-width: 0;
        margin-bottom: 3rem;
    }
}

.pm-hero-social {
    display: flex;
    gap: 0;
    margin-top: 0;
}
.pm-hero-social a {
    display: inline-block;
    margin-right: 1.5rem;
    transition: filter 0.2s;
}
.pm-hero-social a:last-child { margin-right: 0; }
.pm-hero-social a:hover { filter: drop-shadow(0 0 12px var(--pink-glow)); }
.pm-hero-social img { width: auto; height: auto; }

.pm-btn {
    --btn-h: 46px;
    --btn-pad-x: 28px;
    --btn-fill: var(--pink);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 200px;
    height: var(--btn-h);
    padding: 0 var(--btn-pad-x);
    border: 2px solid var(--pink);
    border-radius: 0;
    background: rgba(202,2,116,0.04);
    color: var(--white);
    cursor: pointer;
    font: 700 13px var(--ff);
    line-height: 1;
    white-space: nowrap;
    text-transform: lowercase;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.pm-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.08), transparent 34%),
        var(--btn-fill);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.36s cubic-bezier(.2,.8,.2,1);
}
.pm-btn:hover,
.pm-btn:focus-visible {
    border-color: var(--pink-lite);
    box-shadow: 0 0 22px rgba(202,2,116,0.22);
    transform: translateY(-1px);
    outline: none;
}
.pm-btn:hover::before,
.pm-btn:focus-visible::before {
    transform: scaleX(1);
}
.pm-btn-filled {
    color: var(--white);
}
@media (max-width: 767px) {
    .pm-btn { width: 100%; min-width: 0; height: 52px; font-size: 14px; }
}
@media (min-width: 768px) {
    .pm-btn { min-width: 200px; }
}

.pm-btn-link,
.pm-btn-text {
    --btn-h: 46px;
    --btn-pad-x: 28px;
    --btn-fill: var(--pink);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 212px;
    height: var(--btn-h);
    padding: 0 var(--btn-pad-x);
    border: 2px solid var(--pink);
    border-radius: 0;
    background: rgba(202,2,116,0.04);
    color: var(--white);
    font: 700 13px var(--ff);
    text-transform: lowercase;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.pm-btn-link::before,
.pm-btn-text::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.08), transparent 34%),
        var(--btn-fill);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.36s cubic-bezier(.2,.8,.2,1);
}
.pm-btn-link:hover,
.pm-btn-link:focus-visible,
.pm-btn-text:hover,
.pm-btn-text:focus-visible {
    border-color: var(--pink-lite);
    box-shadow: 0 0 22px rgba(202,2,116,0.22);
    transform: translateY(-1px);
    color: var(--white);
    outline: none;
}
.pm-btn-link:hover::before,
.pm-btn-link:focus-visible::before,
.pm-btn-text:hover::before,
.pm-btn-text:focus-visible::before {
    transform: scaleX(1);
}
@media (max-width: 767px) {
    .pm-btn-link, .pm-btn-text { width: 100%; min-width: 0; }
}
.pm-btn-text {
    --btn-h: 38px;
    --btn-pad-x: 18px;
    min-width: 104px;
    font-size: 12px;
}
.pm-arrow { transition: transform 0.2s; }
.pm-btn-link:hover .pm-arrow,
.pm-btn-text:hover .pm-arrow { transform: translateX(4px); }

.pm-services-section {
    position: relative;
    padding: 120px 0 90px;
    background: var(--bg);
}
.pm-services-section::after {
    width: 520px; height: 420px;
    right: -120px; top: 58px;
    transform: rotate(12deg);
    opacity: 0.18;
}
@media (max-width: 767px) {
    .pm-services-section { padding: var(--section-py) 0; }
}

.pm-services-layout {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(480px, 1.18fr);
    gap: 72px;
    align-items: start;
}
@media (max-width: 1023px) {
    .pm-services-layout { grid-template-columns: 1fr; gap: 42px; }
}

.pm-section-copy {
    max-width: 420px;
    font: 500 14px/1.55 var(--ff);
    color: var(--white-78);
    margin-bottom: 36px;
}

.pm-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}
@media (max-width: 767px) {
    .pm-services-grid { grid-template-columns: 1fr; gap: 20px; }
}

.pm-service-card {
    position: relative;
    min-height: 232px;
    padding: 34px 34px 60px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--r-3xl);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)),
        var(--bg-card);
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.pm-service-card::after {
    content: "";
    position: absolute;
    inset: 12px -56px -54px 30%;
    opacity: 0.2;
    background:
        repeating-radial-gradient(ellipse at center,
            rgba(255,255,255,0.42) 0 1px,
            transparent 1px 12px);
    transform: rotate(-18deg);
}
.pm-service-card:hover {
    border-color: var(--pink-hover-border);
    box-shadow: 0 18px 42px rgba(202,2,116,0.16);
    transform: translateY(-3px);
}
.pm-service-card-icon {
    width: 44px; height: 44px;
    object-fit: contain;
    margin-bottom: 18px;
    opacity: 0.82;
    filter: drop-shadow(0 0 14px rgba(202,2,116,0.22));
}
.pm-service-card-title {
    position: relative;
    z-index: 1;
    max-width: 210px;
    font: 900 22px/1.04 var(--ff);
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.pm-service-card-desc {
    position: relative;
    z-index: 1;
    max-width: 260px;
    font: 500 13px/1.55 var(--ff);
    color: var(--white-72);
}
.pm-card-link {
    position: absolute;
    left: 34px;
    bottom: 28px;
    z-index: 1;
    color: var(--white-85);
    font: 700 12px var(--ff);
}
.pm-card-link span {
    color: var(--pink);
    margin-left: 8px;
}

.pm-cta-strip {
    padding: 0;
    background: var(--bg);
}
.pm-cta-strip .pm-container {
    min-height: 148px;
    border-bottom: 3px solid var(--pink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
@media (max-width: 767px) {
    .pm-cta-strip .pm-container {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        padding-top: 42px;
        padding-bottom: 42px;
        text-align: left;
    }
}
.pm-cta-strip-left { flex: 1; }
.pm-cta-strip-title {
    font: 900 27px/1.05 var(--ff);
    color: var(--white);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.pm-cta-strip-text {
    font: 500 13px/1.6 var(--ff);
    color: var(--white-72);
}
.pm-cta-strip .pm-btn {
    flex-shrink: 0;
    min-width: 230px;
    height: 46px;
    border-radius: 0;
}
@media (max-width: 767px) {
    .pm-cta-strip .pm-btn { width: 100%; min-width: 0; }
}

.pm-about-strip {
    position: relative;
    padding: 104px 0;
    background: #171827;
}
.pm-about-strip::after {
    width: 640px; height: 480px;
    right: -100px; top: 4px;
    transform: rotate(-8deg);
    opacity: 0.2;
}
@media (max-width: 767px) {
    .pm-about-strip { padding: 76px 0; }
}

.pm-about-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 82px;
    align-items: center;
}
@media (max-width: 1023px) {
    .pm-about-layout { grid-template-columns: 1fr; gap: 42px; }
}
.pm-about-wordmark img {
    width: 100%;
    max-width: 360px;
}
@media (max-width: 767px) {
    .pm-about-wordmark img { max-width: 230px; }
}
.pm-about-copy { max-width: 690px; }
.pm-about-copy p {
    font: 500 14px/1.58 var(--ff);
    color: var(--white-78);
    margin-bottom: 18px;
}

.pm-projects-section {
    padding: 98px 0 116px;
    background: var(--bg);
}
@media (max-width: 767px) {
    .pm-projects-section { padding: var(--section-py) 0; }
}

.pm-portfolio-grid {
    display: grid;
    gap: var(--grid-gap);
    grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) and (max-width: 1023px) {
    .pm-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .pm-portfolio-grid { grid-template-columns: 1fr; gap: 24px; }
}

.pm-portfolio-grid-featured { gap: 38px; }

.pm-portfolio-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    transition: transform 0.3s;
}
.pm-portfolio-card:hover { transform: translateY(-2px); }

.pm-portfolio-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #101122;
}
@media (max-width: 767px) {
    .pm-portfolio-card-img { aspect-ratio: 4 / 3; }
}
.pm-portfolio-card-img > img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}
.pm-portfolio-card:hover .pm-portfolio-card-img > img {
    transform: scale(1.04);
    filter: saturate(1.15);
}

.pm-portfolio-card-body { padding: 22px 0 0; }
.pm-portfolio-card-category {
    font: 800 11px var(--ff);
    color: var(--pink);
    letter-spacing: 0;
    margin-bottom: 6px;
}
.pm-portfolio-card-title {
    font: 900 20px/1.2 var(--ff);
    color: var(--white);
    margin-bottom: 8px;
}
@media (max-width: 767px) {
    .pm-portfolio-card-title { font-size: 16px; }
}
.pm-portfolio-card-desc {
    max-width: 360px;
    font: 500 13px/1.55 var(--ff);
    color: rgba(255,255,255,0.62);
}

.pm-portfolio-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.pm-portfolio-filter-btn {
    --btn-fill: var(--pink);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    height: 34px;
    padding: 0 16px;
    border-radius: 0;
    border: 1px solid var(--pink);
    background: rgba(202,2,116,0.035);
    color: var(--white-78);
    font: 700 12px var(--ff);
    text-transform: lowercase;
    cursor: pointer;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.pm-portfolio-filter-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.08), transparent 34%),
        var(--btn-fill);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.36s cubic-bezier(.2,.8,.2,1);
}
.pm-portfolio-filter-btn:hover,
.pm-portfolio-filter-btn.active {
    border-color: var(--pink-lite);
    color: var(--white);
    box-shadow: 0 0 16px rgba(202,2,116,0.18);
}
.pm-portfolio-filter-btn:hover::before,
.pm-portfolio-filter-btn.active::before {
    transform: scaleX(1);
}

.pm-blog-feature {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    padding: 104px 0;
    background:
        linear-gradient(90deg, rgba(0,4,21,0.98), rgba(0,4,21,0.72) 44%, rgba(0,4,21,0.2) 100%),
        url("/static/blog-hero-clean.avif") right center / cover no-repeat,
        var(--bg);
}
.pm-blog-feature::after {
    width: 1000px; height: 580px;
    right: -260px; bottom: -220px;
    opacity: 0.12;
}
@media (max-width: 767px) {
    .pm-blog-feature {
        min-height: auto;
        padding: var(--section-py) 0;
        background-position: 64% center;
    }
}

.pm-blog-feature-inner {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 120px;
    align-items: center;
}
@media (max-width: 1023px) {
    .pm-blog-feature-inner { grid-template-columns: 1fr; gap: 42px; }
}
@media (max-width: 767px) {
    .pm-blog-feature-inner { gap: 32px; }
}

.pm-blog-feature-nav ul {
    list-style: none;
    margin-top: 44px;
    display: grid;
    gap: 24px;
}
.pm-blog-feature-nav li {
    position: relative;
    padding-left: 42px;
    font: 800 12px/1.3 var(--ff);
    color: var(--white-72);
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: color 0.2s;
}
.pm-blog-feature-nav li::before {
    content: "->";
    position: absolute;
    left: 0; top: 0;
    color: var(--white-72);
}
.pm-blog-feature-nav li:hover,
.pm-blog-feature-nav li.active,
.pm-blog-feature-nav li.active::before {
    color: var(--pink);
}

.pm-blog-feature-copy {
    max-width: 520px;
    align-self: end;
    padding-bottom: 40px;
}
@media (max-width: 767px) {
    .pm-blog-feature-copy { align-self: start; padding-bottom: 0; }
}
.pm-blog-feature-copy p {
    font: 500 14px/1.55 var(--ff);
    color: var(--white-78);
    margin-bottom: 20px;
}

.pm-latest-section {
    padding: 100px 0 116px;
    background: var(--bg);
}
@media (max-width: 767px) {
    .pm-latest-section { padding: var(--section-py) 0; }
}

.pm-blog-grid {
    display: grid;
    gap: 38px;
    grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) and (max-width: 1023px) {
    .pm-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .pm-blog-grid { grid-template-columns: 1fr; gap: 24px; }
}

.pm-blog-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    transition: transform 0.3s;
}
.pm-blog-card:hover { transform: translateY(-2px); }

.pm-blog-card-img {
    position: relative;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #101122;
}
.pm-blog-card-img > img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}
.pm-blog-card:hover .pm-blog-card-img > img {
    transform: scale(1.04);
    filter: saturate(1.15);
}

.pm-blog-card-body { padding: 22px 0 0; }
.pm-blog-card-meta {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 12px;
}
.pm-blog-card-date,
.pm-blog-card-category {
    font: 800 11px var(--ff);
    color: var(--pink);
}
.pm-blog-card-title {
    font: 900 18px/1.24 var(--ff);
    color: var(--white);
    margin-bottom: 8px;
}
.pm-blog-card-excerpt {
    font: 500 13px/1.55 var(--ff);
    color: rgba(255,255,255,0.62);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pm-partners-grid {
    display: grid;
    gap: 42px 60px;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    align-items: center;
    justify-items: center;
    margin-top: 38px;
}
@media (max-width: 767px) {
    .pm-partners-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.pm-partner-logo {
    max-width: 150px;
    height: auto;
    max-height: 58px;
    opacity: 0.44;
    filter: grayscale(1) brightness(0.78) contrast(1.18);
    transition: opacity 0.3s, filter 0.3s;
}
.pm-partner-logo:hover {
    opacity: 0.9;
    filter: grayscale(0) brightness(1) contrast(1);
}

.pm-testimonials-section {
    padding: 104px 0;
    background: #171827;
}
@media (max-width: 767px) {
    .pm-testimonials-section { padding: var(--section-py) 0; }
}

.pm-testimonials-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 106px;
    align-items: center;
}
@media (max-width: 1023px) {
    .pm-testimonials-layout { grid-template-columns: 1fr; gap: 42px; }
}

.pm-testimonial {
    position: relative;
    text-align: left;
    max-width: none;
    margin: 0;
    padding: 34px 34px 42px;
    background: var(--bg-surface);
    box-shadow: -16px 16px 0 rgba(255,255,255,0.035), 16px -14px 0 rgba(255,255,255,0.025);
}
@media (max-width: 767px) {
    .pm-testimonial { padding: 28px; }
}

.pm-testimonial-avatar {
    width: 58px; height: 58px;
    margin-bottom: 16px;
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(202,2,116,0.9), rgba(72,43,167,0.9)),
        url("/static/testimonial-avatar.webp") center / cover no-repeat;
}

.pm-testimonial-author {
    font: 900 14px var(--ff);
    color: var(--white);
    margin-bottom: 4px;
}
.pm-testimonial-role {
    font: 500 13px/1.55 var(--ff);
    color: rgba(255,255,255,0.65);
}
.pm-testimonial-quote {
    font: 500 13px/1.55 var(--ff);
    color: rgba(255,255,255,0.65);
    margin-top: 18px;
    margin-bottom: 0;
}

.pm-contact {
    padding: 112px 0 150px;
    background: var(--bg);
}
@media (max-width: 767px) {
    .pm-contact { padding: var(--section-py) 0; }
}

.pm-contact-card {
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 0;
    background: var(--bg-surface);
    border-bottom: 4px solid var(--pink);
    overflow: hidden;
}
@media (min-width: 1024px) {
    .pm-contact-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

.pm-contact-visual {
    display: none;
    background: #171827;
    position: relative;
    min-height: 400px;
    overflow: hidden;
}
@media (min-width: 1024px) { .pm-contact-visual { display: block; } }
.pm-contact-visual img { width: 100%; height: 100%; object-fit: cover; }
.pm-contact-visual-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--pink);
}

.pm-contact-form-area {
    padding: 58px 70px;
}
@media (max-width: 1023px) { .pm-contact-form-area { padding: 44px 36px; } }
@media (max-width: 767px) { .pm-contact-form-area { padding: 32px 22px 76px; } }

.pm-form-group {
    margin-bottom: 12px;
    position: relative;
}
@media (min-width: 768px) { .pm-form-group { margin-bottom: 16px; } }

.pm-form-input,
.pm-form-textarea {
    width: 100%;
    font: 400 15px var(--ff);
    padding: 15px 16px;
    background: rgba(255,255,255,0.035);
    border: none;
    border-bottom: 2px solid var(--pink);
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
}
.pm-form-input::placeholder,
.pm-form-textarea::placeholder { color: rgba(255,255,255,0.48); }
.pm-form-input:focus,
.pm-form-textarea:focus { border-bottom: 2.5px solid var(--pink-lite); }
.pm-form-input.error,
.pm-form-textarea.error { border-bottom-color: #ff6666; }
.pm-form-textarea {
    resize: none;
    min-height: 80px;
}
@media (min-width: 1024px) { .pm-form-textarea { min-height: 100px; } }

.pm-form-status {
    font: 400 14px var(--ff);
    margin-top: 12px;
}
.pm-form-status.success { color: #44dd88; }
.pm-form-status.error { color: #ff4444; }

.pm-contact .pm-btn {
    float: right;
    width: 220px;
    height: 48px;
    text-transform: lowercase;
    border-radius: 0;
}
@media (max-width: 767px) {
    .pm-contact .pm-btn { float: none; width: 100%; }
}

.pm-footer {
    padding-top: 72px;
    background: var(--bg);
}
@media (max-width: 767px) { .pm-footer { padding-top: 48px; } }

.pm-footer-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 5fr 3fr 3fr 5fr;
}
@media (max-width: 1023px) { .pm-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .pm-footer-grid { grid-template-columns: 1fr; } }

.pm-footer-brand-logo {
    height: 104px;
    margin-bottom: 16px;
}
@media (max-width: 767px) { .pm-footer-brand-logo { height: 64px; } }
@media (min-width: 768px) and (max-width: 1023px) { .pm-footer-brand-logo { height: 80px; } }

.pm-footer-brand-desc {
    font: 400 14px var(--ff);
    color: var(--text);
    line-height: 1.5;
    margin: 16px 0;
}

.pm-footer-social {
    display: flex;
    gap: 40px;
    margin-top: 16px;
}
@media (max-width: 767px) { .pm-footer-social { gap: 24px; } }
.pm-footer-social a {
    width: 32px; height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.2s;
}
@media (max-width: 767px) { .pm-footer-social a { width: 44px; height: 44px; } }
.pm-footer-social a:hover { filter: drop-shadow(0 0 12px var(--pink-glow)); }
.pm-footer-social img { width: 24px; height: 24px; }

.pm-footer-col-title {
    font: 600 16px var(--ff);
    color: var(--white);
    margin-bottom: 16px;
}
.pm-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.pm-footer-link {
    font: 400 14px var(--ff);
    color: var(--text);
    cursor: pointer;
    transition: color 0.2s;
    padding: 8px 0;
    min-height: 36px;
    display: flex;
    align-items: center;
}
.pm-footer-link:hover { color: var(--pink); }

.pm-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font: 400 14px var(--ff);
    color: var(--text);
    padding: 4px 0;
}
.pm-footer-contact-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--pink);
    flex-shrink: 0;
}

.pm-footer-bottom {
    border-top: 1px solid var(--white-10);
    margin-top: 40px;
    padding: 24px 0;
    text-align: center;
    font: 400 14px var(--ff);
    color: var(--white);
}

.pm-page {
    padding: 144px 0 80px;
    min-height: 60vh;
}
@media (max-width: 767px) { .pm-page { padding: 100px 0 60px; } }

.pm-page-intro {
    max-width: 720px;
    font: 400 17px/1.55 var(--ff);
    color: var(--text-90);
    margin: 0 0 40px;
}

.pm-page-cta {
    margin-top: 64px;
    padding: 36px 0 0;
    border-top: 1px solid var(--white-10);
}
.pm-page-cta h2 {
    font: 900 28px/1.1 var(--ff);
    color: var(--white);
    margin-bottom: 12px;
}
.pm-page-cta p {
    max-width: 640px;
    font: 400 15px/1.6 var(--ff);
    color: var(--text-85);
}

.pm-process-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--white-10);
}
.pm-process-strip span {
    display: block;
    color: var(--pink);
    font: 900 12px var(--ff);
    margin-bottom: 10px;
}
.pm-process-strip h2 {
    font: 800 18px/1.2 var(--ff);
    color: var(--white);
    margin-bottom: 8px;
}
.pm-process-strip p {
    font: 400 13px/1.55 var(--ff);
    color: var(--text-85);
}
@media (max-width: 1023px) { .pm-process-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 767px) { .pm-process-strip { grid-template-columns: 1fr; } }

.pm-page-404 { text-align: center; padding-top: 200px; }
.pm-page-404 h1 {
    font: bold 56px var(--ff);
    color: var(--pink);
    margin-bottom: 16px;
}

.pm-detail-header { margin-bottom: 40px; }
.pm-detail-back {
    font: 400 14px var(--ff);
    color: var(--white-60);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}
.pm-detail-back:hover { color: var(--pink); }
.pm-detail-title {
    font: 900 42px/1.05 var(--ff);
    color: var(--white);
    margin-bottom: 12px;
}
@media (max-width: 767px) { .pm-detail-title { font-size: 32px; } }

.pm-detail-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.pm-detail-meta-item {
    font: 400 14px var(--ff);
    color: var(--white-60);
}
.pm-detail-meta-item strong { color: var(--white); }

.pm-detail-content {
    font: 400 17px var(--ff);
    line-height: 28px;
    color: var(--text);
    max-width: var(--reading-w);
}
.pm-detail-content p { margin-bottom: 20px; }

.pm-detail-lead {
    font-size: 19px;
    line-height: 31px;
    max-width: 820px;
}

.pm-detail-hero-img {
    width: 100%;
    max-width: 860px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: 0 0 36px;
    background: var(--bg-card);
}
.pm-detail-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-detail-section-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.pm-detail-section-grid .pm-detail-section {
    margin-top: 0;
}
@media (max-width: 1023px) { .pm-detail-section-grid { grid-template-columns: 1fr; } }

.pm-detail-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--white-10);
}

.pm-detail-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}
.pm-detail-list li {
    color: var(--text-90);
    font: 400 15px/1.45 var(--ff);
}
.pm-detail-list li::before {
    content: "+";
    color: var(--pink);
    font-weight: 900;
    margin-right: 8px;
}

.pm-article-body {
    max-width: 760px;
}
.pm-detail-section h3 {
    font: bold 20px var(--ff);
    margin-bottom: 16px;
    color: var(--white);
}

.pm-about-hero {
    text-align: center;
    padding: 120px 0 80px;
}
@media (max-width: 767px) { .pm-about-hero { padding: 80px 0 48px; } }
.pm-about-hero-title {
    font: 900 48px/1.05 var(--ff);
    color: var(--white);
    margin-bottom: 16px;
}
@media (max-width: 767px) { .pm-about-hero-title { font-size: 36px; } }
.pm-about-hero-desc {
    font: 400 17px var(--ff);
    color: var(--text-90);
    max-width: 600px;
    margin: 0 auto;
    line-height: 28px;
}

.pm-other-services { margin-top: 48px; }
.pm-other-services h3 {
    font: bold 20px var(--ff);
    color: var(--white);
    margin-bottom: 16px;
}
.pm-other-services-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pm-other-services-link {
    font: 400 14px var(--ff);
    color: var(--white-60);
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
}
.pm-other-services-link:hover { color: var(--pink); }

.pm-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    color: var(--white-60);
    font: 400 14px var(--ff);
}
.pm-loading::after {
    content: '';
    width: 24px; height: 24px;
    border: 2px solid var(--white-10);
    border-top-color: var(--pink);
    border-radius: 50%;
    animation: pm-spin 0.6s linear infinite;
    margin-left: 12px;
}
@keyframes pm-spin { to { transform: rotate(360deg); } }

.pm-case-page .pm-detail-back {
    margin-bottom: 34px;
}

.pm-case-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: 52px;
    align-items: center;
    min-height: 560px;
    padding: 28px 0 72px;
}
@media (max-width: 1023px) {
    .pm-case-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 56px;
    }
}
.pm-case-hero-copy { max-width: 690px; }
.pm-case-subtitle {
    margin: 0 0 20px;
    font: 700 20px/1.35 var(--ff);
    color: var(--white-85);
}
.pm-case-hero-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.15 / 1;
    background: #101122;
}
.pm-case-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
}
.pm-case-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-case-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}
@media (max-width: 767px) {
    .pm-case-stats { grid-template-columns: 1fr; }
}
.pm-case-stat {
    border: 1px solid var(--pink-border);
    padding: 18px;
    background: rgba(202,2,116,0.055);
}
.pm-case-stat strong {
    display: block;
    color: var(--white);
    font: 900 20px/1 var(--ff);
    margin-bottom: 7px;
}
.pm-case-stat span {
    color: var(--white-72);
    font: 700 11px/1.3 var(--ff);
    text-transform: uppercase;
}

.pm-case-section {
    padding: 70px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 767px) {
    .pm-case-section { padding: 50px 0; }
}
.pm-case-title {
    max-width: 820px;
    margin: 0 0 20px;
    color: var(--white);
    font: 900 32px/1.08 var(--ff);
    text-transform: uppercase;
}
@media (max-width: 767px) {
    .pm-case-title { font-size: 24px; }
}
.pm-case-copy,
.pm-case-intro { max-width: 760px; }
.pm-case-intro {
    margin: 0 0 28px;
    color: var(--white-72);
    font: 500 15px/1.65 var(--ff);
}
.pm-case-quote {
    max-width: 760px;
    margin: 30px 0 0;
    padding: 22px 0 22px 26px;
    border-left: 3px solid var(--pink);
    color: var(--white);
    font: 700 20px/1.4 var(--ff);
}

.pm-case-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
@media (max-width: 1023px) {
    .pm-case-card-grid { grid-template-columns: 1fr; }
}
.pm-case-card {
    min-height: 210px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.035);
}
.pm-case-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
    border: 1px solid var(--pink-border);
    color: var(--pink);
    font: 900 13px var(--ff);
}
.pm-case-card h3 {
    margin: 0 0 12px;
    color: var(--white);
    font: 900 18px/1.2 var(--ff);
    text-transform: uppercase;
}
.pm-case-card p {
    color: var(--white-72);
    font: 500 13px/1.58 var(--ff);
}

.pm-case-swatches {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}
@media (max-width: 767px) {
    .pm-case-swatches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.pm-case-swatch {
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
}
.pm-case-swatch span {
    display: block;
    height: 112px;
}
.pm-case-swatch strong,
.pm-case-swatch small {
    display: block;
    padding: 0 16px;
}
.pm-case-swatch strong {
    padding-top: 14px;
    color: var(--white);
    font: 800 13px var(--ff);
}
.pm-case-swatch small {
    padding-bottom: 16px;
    color: var(--white-60);
    font: 700 11px var(--ff);
}
.pm-case-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}
@media (max-width: 767px) {
    .pm-case-type-grid { grid-template-columns: 1fr; }
}
.pm-case-type {
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.08);
}
.pm-case-type span {
    display: block;
    margin-bottom: 10px;
    color: var(--pink);
    font: 800 11px var(--ff);
    text-transform: uppercase;
}
.pm-case-type strong {
    color: var(--white);
    font: 900 28px/1.1 var(--ff);
}

.pm-case-screen-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
@media (max-width: 1023px) {
    .pm-case-screen-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .pm-case-screen-grid { grid-template-columns: 1fr; }
}
.pm-case-screen {
    overflow: hidden;
    background: #101122;
}
.pm-case-screen img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
.pm-case-screen figcaption {
    display: grid;
    gap: 4px;
    padding: 16px 0 0;
    background: var(--bg);
}
.pm-case-screen figcaption strong {
    color: var(--white);
    font: 900 15px/1.2 var(--ff);
}
.pm-case-screen figcaption span {
    color: var(--white-72);
    font: 500 13px/1.45 var(--ff);
}

.pm-case-timeline {
    list-style: none;
    display: grid;
    gap: 18px;
    max-width: 860px;
}
.pm-case-timeline li {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pm-case-timeline li > span {
    color: var(--pink);
    font: 900 18px/1 var(--ff);
}
.pm-case-timeline h3 {
    color: var(--white);
    font: 900 18px/1.2 var(--ff);
    margin-bottom: 8px;
}
.pm-case-timeline p {
    color: var(--white-72);
    font: 500 13px/1.55 var(--ff);
}
.pm-case-highlight { margin-top: 38px; }
.pm-case-highlight-number {
    display: block;
    margin-bottom: 10px;
    color: var(--pink);
    font: 900 44px/1 var(--ff);
}
