/* PharmaEthical landing page — scoped styles */
:root {
    --pe-white: #ffffff;
    --pe-black: #000000;
    --pe-text: #545454;
    --pe-text-muted: #b0b0b0;
    --pe-text-dark: #424242;
    --pe-teal: #079c94;
    --pe-teal-dark: #0f5156;
    --pe-purple: #110c4c;
    --pe-gold: #c89400;
    --pe-bg-light: #f6f5fa;
    --pe-bg-card: #eaeaf2;
    --pe-border: #e3e3e3;
    --pe-max: 1400px;
    --pe-radius-pill: 999px;
    --pe-radius-lg: 24px;
    --pe-radius-xl: 60px;
    --pe-radius-nav: 50px;
    --pe-shadow-nav: 0 0.6px 1.57px -1.5px rgba(0, 0, 0, 0.17),
        0 2.29px 5.95px -3px rgba(0, 0, 0, 0.14),
        0 10px 26px -4.5px rgba(0, 0, 0, 0.02);
    --pe-shadow-card: 0 2px 24px rgba(0, 0, 0, 0.04);
    --pe-ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    /* Responsive spacing — mobile-first defaults (320px+) */
    --pe-header-offset: 72px;
    --pe-footer-pad-x: 24px;
    --pe-container-pad-x: 16px;
    --pe-section-pad-y: 48px;
    --pe-block-pad-y: 48px;
    --pe-header-shell-pad-x: 12px;
    --pe-header-logo-w: 140px;
    --pe-font: "Inter", system-ui, sans-serif;
    --pe-font-body: "Manrope", system-ui, sans-serif;
}

/* 480px – 767px (large phones) */
@media (min-width: 480px) {
    :root {
        --pe-header-offset: 76px;
        --pe-footer-pad-x: 28px;
        --pe-container-pad-x: 20px;
        --pe-section-pad-y: 56px;
        --pe-block-pad-y: 56px;
        --pe-header-shell-pad-x: 14px;
        --pe-header-logo-w: 152px;
    }
}

/* 768px – 1023px (tablets) */
@media (min-width: 768px) {
    :root {
        --pe-header-offset: 80px;
        --pe-footer-pad-x: 40px;
        --pe-container-pad-x: 24px;
        --pe-section-pad-y: 64px;
        --pe-block-pad-y: 64px;
        --pe-header-shell-pad-x: 16px;
        --pe-header-logo-w: 160px;
    }
}

/* 1024px – 1279px (small laptops) */
@media (min-width: 1024px) {
    :root {
        --pe-header-offset: 88px;
        --pe-footer-pad-x: 64px;
        --pe-container-pad-x: 40px;
        --pe-section-pad-y: 80px;
        --pe-block-pad-y: 72px;
        --pe-header-shell-pad-x: 20px;
        --pe-header-logo-w: 168px;
    }
}

/* 1280px – 1439px (laptops) */
@media (min-width: 1280px) {
    :root {
        --pe-header-offset: 96px;
        --pe-footer-pad-x: 80px;
        --pe-container-pad-x: 64px;
        --pe-section-pad-y: 100px;
        --pe-block-pad-y: 80px;
        --pe-header-shell-pad-x: 24px;
        --pe-header-logo-w: 172px;
    }
}

/* 1440px – 1919px (desktop monitors) */
@media (min-width: 1440px) {
    :root {
        --pe-footer-pad-x: 100px;
    }
}

/* 1920px+ (large desktop monitors) */
@media (min-width: 1920px) {
    :root {
        --pe-max: 1480px;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.pe-landing {
    margin: 0;
    font-family: var(--pe-font-body);
    font-size: 16px;
    line-height: 1.4;
    color: var(--pe-text);
    background: var(--pe-white);
    overflow-x: hidden;
}

body.pe-landing main {
    position: relative;
    z-index: 0;
}

/* Fixed background video layer */
.pe-fixed-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 0.35s var(--pe-ease-premium), visibility 0.35s var(--pe-ease-premium);
}

.pe-fixed-video.is-covered {
    opacity: 0;
    visibility: hidden;
}

.pe-fixed-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% 58%;
    filter: grayscale(0.48);
    will-change: object-position;
}

.pe-fixed-video-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    transition: opacity 0.35s var(--pe-ease-premium), visibility 0.35s var(--pe-ease-premium);
}

.pe-fixed-video-overlay.is-covered {
    opacity: 0;
    visibility: hidden;
}

body.pe-landing img {
    max-width: 100%;
    height: auto;
    display: block;
}

body.pe-landing a {
    color: inherit;
    text-decoration: none;
}

body.pe-landing h1,
body.pe-landing h2,
body.pe-landing h3,
body.pe-landing h4,
body.pe-landing p {
    margin: 0;
}

.pe-container {
    width: 100%;
    max-width: var(--pe-max);
    margin: 0 auto;
    padding-left: var(--pe-container-pad-x);
    padding-right: var(--pe-container-pad-x);
}

/* Header — flat bar over hero/stats, floating rounded pill after */
.pe-header {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
    border-bottom: 1px solid transparent;
    transition:
        top 0.35s var(--pe-ease-premium),
        border-color 0.35s var(--pe-ease-premium);
}

.pe-header.pe-header--flat {
    top: 0;
    border-bottom-color: var(--pe-border);
}

.pe-header__shell {
    position: relative;
    z-index: 101;
    width: 100%;
    max-width: calc(var(--pe-max) + 48px);
    margin: 0 auto;
    padding: 0 var(--pe-header-shell-pad-x);
    pointer-events: auto;
}

.pe-header__inner {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 64px;
    padding: 8px 12px 8px 24px;
    background-color: var(--pe-white);
    border-radius: var(--pe-radius-nav);
    box-shadow: var(--pe-shadow-nav);
    transition:
        background-color 0.35s var(--pe-ease-premium),
        box-shadow 0.35s var(--pe-ease-premium),
        border-radius 0.35s var(--pe-ease-premium);
}

.pe-header.pe-header--flat .pe-header__inner {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
}

.pe-header__logo {
    display: block;
    width: var(--pe-header-logo-w);
    max-width: 100%;
    justify-self: start;
}

.pe-header__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.pe-footer__logo {
    /* max-width: 10%;
    height: 80%; */
    display: block;
    width: 220px;
    height: 48px;
}
.pe-footer__logo img {
    height: 100%;
    width: 100%;
}

.pe-header__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    justify-self: center;
}

.pe-nav-pill {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 0;
    height: 36px;
    border-radius: var(--pe-radius-pill);
    /* background: var(--pe-bg-light); */
    transform: translateY(-50%);
    opacity: 0;
    transition: left 0.35s var(--pe-ease-premium),
        width 0.35s var(--pe-ease-premium),
        opacity 0.25s ease;
    pointer-events: none;
}

.pe-header__nav a {
    position: relative;
    z-index: 1;
    font-family: var(--pe-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--pe-text-muted);
    white-space: nowrap;
    padding: 8px 4px;
    transition: color 0.25s var(--pe-ease-premium);
}

.pe-header__nav a:hover,
.pe-header__nav a.active {
    color: var(--pe-text);
    color: var(--pe-teal);
}

.pe-header__cta--desktop {
    justify-self: end;
}

.pe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--pe-font);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--pe-radius-pill);
    transition: transform 0.25s var(--pe-ease-premium), opacity 0.2s ease, box-shadow 0.25s var(--pe-ease-premium);
}

.pe-btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.pe-btn--teal {
    background: var(--pe-teal);
    color: var(--pe-white);
    padding: 10px 20px;
}

.pe-btn--teal-dark {
    background: var(--pe-teal-dark);
    color: var(--pe-white);
    padding: 12px 24px;
}

/* Hero "Get in Touch" — two-tone pill with nested label radius */
body.pe-landing a.pe-btn--get-in-touch,
.pe-btn--get-in-touch .pe-btn__label,
.pe-btn--get-in-touch .pe-btn__icon {
    color: var(--pe-white);
}

.pe-btn--get-in-touch {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    height: 48px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    background-color: var(--pe-teal);
    box-shadow: 0 2px 10px rgba(15, 81, 86, 0.16);
    transition: box-shadow 0.35s var(--pe-ease-premium);
}

.pe-btn--get-in-touch:hover {
    opacity: 1;
    transform: none;
    box-shadow: 0 4px 14px rgba(7, 156, 148, 0.24);
}

.pe-btn--get-in-touch .pe-btn__label {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 18px 0 28px;
    background-color: var(--pe-teal-dark);
    border-radius: 9999px;
    white-space: nowrap;
    transition: background-color 0.35s var(--pe-ease-premium);
}

.pe-btn--get-in-touch .pe-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    background-color: transparent;
    transition: background-color 0.35s var(--pe-ease-premium);
}

.pe-btn--get-in-touch .pe-btn__icon svg {
    display: block;
    width: 18px;
    height: 18px;
    transition: transform 0.35s var(--pe-ease-premium);
}

.pe-btn--get-in-touch:hover .pe-btn__label {
    background-color: var(--pe-teal);
}

.pe-btn--get-in-touch:hover .pe-btn__icon svg {
    transform: translateX(3px);
}

.pe-btn--white-outline {
    background: var(--pe-white);
    color: var(--pe-teal-dark);
    padding: 10px 20px;
    border: 1px solid var(--pe-white);
}

/* Footer "Get in touch" — white-outlined split pill with retracting teal label */
body.pe-landing .pe-footer a.pe-btn--footer-cta,
body.pe-landing .pe-footer a.pe-btn--footer-cta .pe-btn__label {
    color: var(--pe-white);
}

body.pe-landing .pe-footer a.pe-btn--footer-cta:hover,
body.pe-landing .pe-footer a.pe-btn--footer-cta:hover .pe-btn__label {
    color: var(--pe-black);
}

.pe-btn--footer-cta {
    display: inline-flex;
    align-items: stretch;
    gap: 0;
    height: 48px;
    padding: 3px 0 3px 3px;
    border: 1px solid var(--pe-white);
    border-radius: 9999px;
    background-color: var(--pe-white);
    box-sizing: border-box;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    transition: background-color 0.35s var(--pe-ease-premium);
}

.pe-btn--footer-cta:hover {
    opacity: 1;
    transform: none;
    background-color: var(--pe-white);
}

.pe-btn--footer-cta .pe-btn__label {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 18px 0 24px;
    white-space: nowrap;
    color: var(--pe-white);
    isolation: isolate;
    transition: color 0.35s var(--pe-ease-premium);
}

.pe-btn--footer-cta .pe-btn__label::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--pe-teal-dark);
    border-radius: 9999px;
    transform: scaleX(1);
    transform-origin: right center;
    transition: transform 0.35s var(--pe-ease-premium);
    will-change: transform;
}

.pe-btn--footer-cta:hover .pe-btn__label::before {
    transform: scale3d(0, 1, 1);
}

.pe-btn--footer-cta .pe-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    background-color: var(--pe-white);
    color: var(--pe-teal-dark);
    transition: color 0.35s var(--pe-ease-premium);
}

.pe-btn--footer-cta .pe-btn__icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

body.pe-landing .pe-footer a.pe-btn--footer-cta:hover .pe-btn__icon {
    color: var(--pe-black);
}

.pe-btn--dark {
    background: var(--pe-black);
    color: var(--pe-white);
    padding: 12px 24px;
    width: 100%;
}

.pe-btn__chevron {
    font-size: 12px;
    letter-spacing: -2px;
}

.pe-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--pe-radius-pill);
    cursor: pointer;
}

.pe-menu-toggle span {
    display: block;
    height: 2px;
    background: var(--pe-black);
    border-radius: 2px;
    transition: transform 0.25s var(--pe-ease-premium);
}

/* Hero */
.pe-hero {
    padding-top: calc(var(--pe-header-offset) + 64px);
    padding-bottom: 1px;
    background: var(--pe-white);
}

.pe-hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 35px;
    min-width: 0;
}

.pe-hero__title {
    flex: 1;
    max-width: 600px;
    font-family: var(--pe-font);
    font-size: clamp(2.1875rem, 4.5vw, 3.375rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--pe-black);
}

.pe-hero__aside {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    text-align: right;
}

.pe-hero__subtitle {
    font-family: var(--pe-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--pe-text-muted);
}

.pe-hero__image-wrap {
    border-radius: var(--pe-radius-lg);
    overflow: hidden;
    aspect-ratio: 2 / 1;
    /* max-width: 1060px; */
    margin: 0 auto 64px;
}

.pe-hero__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--pe-ease-premium);
}

.pe-hero__image-wrap:hover img {
    transform: scale(1.02);
}

/* Stats band — transparent cards scrolling over fixed background video */
.pe-stats-band {
    --pe-stat-line-1: 228px;
    --pe-stat-line-2: 156px;
    --pe-stat-line-3: 296px;
    position: relative;
    width: 100%;
    min-height: 542px;
    display: flex;
    align-items: flex-end;
    background: transparent;
}

.pe-stats-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.28) 32%,
        rgba(0, 0, 0, 0.52) 68%,
        rgba(0, 0, 0, 0.62) 100%
    );
    pointer-events: none;
}

.pe-stats-band__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 542px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
}

.pe-stats__grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px 56px;
    width: min(1060px, 84%);
    margin: 0 0 0 auto;
    min-height: 0;
    padding: 0;
    background: transparent;
    transform: translateY(24px);
}

.pe-stat-card {
    --pe-stat-line-h: var(--pe-stat-line-1);
    flex: 1 1 0;
    min-width: 0;
    max-width: 340px;
    position: relative;
    padding: 0 0 0 32px;
    min-height: var(--pe-stat-line-h);
}

.pe-stat-card--1 {
    --pe-stat-line-h: var(--pe-stat-line-1);
}

.pe-stat-card--2 {
    --pe-stat-line-h: var(--pe-stat-line-2);
}

.pe-stat-card--3 {
    --pe-stat-line-h: var(--pe-stat-line-3);
}

.pe-stat-card__line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1px;
    height: var(--pe-stat-line-h);
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.pe-stat-card::before {
    content: "";
    position: absolute;
    left: -12.5px;
    bottom: calc(var(--pe-stat-line-h) - 12.5px);
    width: 25px;
    height: 25px;
    border: 1px dashed rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
}

.pe-stat-card::after {
    content: "";
    position: absolute;
    left: -2.5px;
    bottom: calc(var(--pe-stat-line-h) - 2.5px);
    width: 5px;
    height: 5px;
    background: var(--pe-white);
    border-radius: 50%;
    pointer-events: none;
}

.pe-stat-card__content {
    position: absolute;
    left: 32px;
    bottom: calc(var(--pe-stat-line-h) - 12px);
    width: calc(100% - 32px);
}

.pe-stat-card h3 {
    font-family: var(--pe-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--pe-white);
    margin: 0 0 12px;
    line-height: 1.25;
    max-width: 320px;
}

.pe-stat-card p {
    font-size: 15px;
    font-weight: 400;
    color: var(--pe-white);
    line-height: 1.5;
    margin: 0;
    max-width: 320px;
}

#services.pe-section,
.pe-why-dark,
.pe-contact,
.pe-footer {
    position: relative;
    z-index: 1;
}

#services.pe-section {
    z-index: 3;
}

/* Section shared */
.pe-section {
    padding: var(--pe-section-pad-y) 0;
}

.pe-section--light {
    background: var(--pe-white);
}

.pe-section--gray {
    background: var(--pe-bg-light);
}

.pe-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--pe-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--pe-black);
    margin-bottom: 16px;
}

.pe-section-label img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.pe-section-label--white {
    color: var(--pe-white);
}

.pe-section-heading {
    font-family: var(--pe-font);
    font-size: clamp(1.875rem, 4vw, 2.8125rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--pe-teal);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 16px;
}

.pe-section-heading--left {
    text-align: left;
    margin-left: 0;
}

.pe-section-heading--white {
    color: var(--pe-white);
}

.pe-section-desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--pe-text-dark);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    line-height: 1.4;
}

.pe-section-desc--left {
    text-align: left;
    margin-left: 0;
    margin-bottom: 40px;
}

.pe-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 64px;
}

.pe-section-header .pe-section-label {
    justify-content: center;
}

.pe-section-header .pe-section-heading,
.pe-section-header .pe-section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pe-section-header--left {
    text-align: left;
}

/* Services / Approach */
.pe-approach-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--pe-teal-dark);
    border-radius: var(--pe-radius-xl);
    padding: 48px;
    color: var(--pe-white);
    transition: transform 0.45s var(--pe-ease-premium), box-shadow 0.45s var(--pe-ease-premium);
    min-width: 0;
}

.pe-approach-card:hover {
    box-shadow: 0 24px 48px rgba(15, 81, 86, 0.18);
}

.pe-approach-card__media {
    flex: 0 0 400px;
    max-width: 40%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
}

.pe-approach-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s var(--pe-ease-premium), transform 0.6s var(--pe-ease-premium);
}

.pe-approach-card__media img.is-fading {
    opacity: 0.4;
    transform: scale(1.03);
}

.pe-approach-card__content {
    flex: 1;
}

.pe-accordion-item {
    border-bottom: 1px solid rgba(187, 190, 196, 0.63);
    padding-bottom: 24px;
    margin-bottom: 12px;
}

.pe-accordion-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.pe-accordion-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-bottom: 12px;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.pe-accordion-item__head:hover h4 {
    color: var(--pe-white);
}

.pe-accordion-item h4 {
    font-family: var(--pe-font);
    font-size: 23px;
    font-weight: 500;
    line-height: 1.2;
    color: #cecece;
    transition: color 0.3s var(--pe-ease-premium);
}

.pe-accordion-item--open h4 {
    color: var(--pe-white);
}

.pe-accordion-item__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.pe-accordion-item__icon::before,
.pe-accordion-item__icon::after {
    content: "";
    position: absolute;
    background: #cecece;
    border-radius: 1px;
    transition: background 0.3s var(--pe-ease-premium), transform 0.3s var(--pe-ease-premium);
}

.pe-accordion-item--open .pe-accordion-item__icon::before,
.pe-accordion-item--open .pe-accordion-item__icon::after {
    background: var(--pe-white);
}

.pe-accordion-item__icon::before {
    width: 16px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pe-accordion-item__icon::after {
    width: 1px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pe-accordion-item--open .pe-accordion-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.pe-accordion-item--open .pe-accordion-item__icon::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.pe-accordion-item__body {
    font-size: 14px;
    line-height: 1.4;
    color: #e6e6e6;
    max-width: 500px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s var(--pe-ease-premium), opacity 0.35s var(--pe-ease-premium), margin 0.35s var(--pe-ease-premium);
}

.pe-accordion-item--open .pe-accordion-item__body {
    max-height: 320px;
    opacity: 1;
    margin-top: 0;
}

.pe-accordion-item:not(.pe-accordion-item--open) .pe-accordion-item__body {
    margin-top: -12px;
}

/* Partners */
#who-we-support.pe-section {
    padding: 56px 0;
}

.pe-partners-wrap {
    background: var(--pe-bg-card);
    border-radius: var(--pe-radius-xl);
    padding: clamp(32px, 5vw, 56px) clamp(16px, 4vw, 64px);
    margin: 0 auto;
    /* max-width: 60%; */
    width: 100%;
    max-width: 68%;
    text-align: center;
}

.pe-partners-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.pe-partners-header .pe-section-label {
    justify-content: center;
    margin-bottom: 12px;
}

.pe-partners-header .pe-section-heading {
    color: var(--pe-black);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
}

.pe-partners-header .pe-section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.pe-partners-gallery {
    margin-top: 24px;
}

.pe-partners-gallery__track {
    height: 120vh;
    position: relative;
}

.pe-partners-gallery__stage {
    position: sticky;
    top: calc(var(--pe-header-offset) + 8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    min-height: calc(78vh - var(--pe-header-offset) - 8px);
    padding: 4px 0 24px;
    box-sizing: border-box;
}

.pe-partner-row {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.pe-partner-row--2 {
    align-items: flex-end;
    overflow: visible;
}

.pe-partner-row__scale {
    display: flex;
    gap: 14px;
    width: 100%;
    max-width: 820px;
    padding: 14px;
    background: var(--pe-bg-card);
    border-radius: 25px;
    opacity: var(--partner-opacity, 1);
    transform: translate3d(0, var(--partner-translate, 0px), 0)
        scale3d(var(--partner-scale, 1), var(--partner-scale, 1), 1);
    transform-origin: var(--partner-origin, center center);
    will-change: transform, opacity;
    backface-visibility: hidden;
}

.pe-partner-row--1 {
    --partner-scale: 1;
    --partner-opacity: 1;
    --partner-translate: 0px;
    --partner-origin: center top;
}

.pe-partner-row--2 {
    --partner-scale: 0.6;
    --partner-opacity: 0.5;
    --partner-translate: 0px;
    --partner-origin: center bottom;
}

.pe-partner-row__img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1.24252;
    min-width: 0;
    transition: transform 0.45s var(--pe-ease-premium);
}

.pe-partner-row__img:hover {
    transform: scale(1.015);
}

.pe-partner-row__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    .pe-partners-gallery__track {
        height: auto;
    }

    .pe-partners-gallery__stage {
        position: relative;
        top: auto;
        min-height: auto;
        padding: 0;
    }

    .pe-partner-row--1,
    .pe-partner-row--2 {
        --partner-scale: 1;
        --partner-opacity: 1;
        --partner-translate: 0px;
    }
}

/* Why choose us */
.pe-why-dark {
    background: var(--pe-purple);
    padding: var(--pe-block-pad-y) var(--pe-container-pad-x);
    color: var(--pe-white);
    margin: auto;
    /* max-width: 62%; */
}

.pe-why-dark__inner {
    max-width: var(--pe-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.pe-why-dark__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.pe-why-dark__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--pe-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--pe-white);
    margin-bottom: 16px;
}

.pe-why-dark__label img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
    filter: brightness(0) invert(1);
}

.pe-why-dark__title {
    font-family: var(--pe-font);
    font-size: clamp(2rem, 4vw, 2.8125rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--pe-white);
    margin: 0 0 16px;
}

.pe-why-dark__intro {
    font-family: var(--pe-font-body);
    font-size: 14px;
    font-weight: 500;
    color: #bfc4c9;
    line-height: 1.5;
    margin: 0;
    margin-top: 20px !important;
}

.pe-why-dark__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px 64px;
    align-items: center;
}

.pe-feature-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: left;
}

.pe-feature-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pe-feature-item__icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: block;
}

.pe-feature-item__text {
    flex: 1;
    min-width: 0;
}

.pe-feature-item h4 {
    font-family: var(--pe-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--pe-white);
    margin: 0 0 8px;
    line-height: 1.3;
}

.pe-feature-item p {
    font-family: var(--pe-font-body);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #cecece;
    margin: 0;
}

.pe-why-dark__visual {
    position: relative;
    border-radius: var(--pe-radius-lg);
    overflow: hidden;
    aspect-ratio: 748 / 564;
    width: 100%;
}

.pe-why-dark__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--pe-ease-premium);
}

.pe-why-dark__visual:hover img {
    transform: scale(1.03);
}

/* Why Pharmaethical CTA block */
.pe-why-cta {
    background: var(--pe-purple);
    padding: 0 0 64px;
}

.pe-why-cta__card {
    background: var(--pe-purple);
    border-radius: var(--pe-radius-xl);
    padding: 120px 100px 0;
    text-align: center;
    color: var(--pe-white);
    max-width: 96%;
    margin: 0 auto;
}

.pe-why-cta__card h2 {
    font-family: var(--pe-font);
    font-size: clamp(1.75rem, 3.5vw, 2.8125rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--pe-white);
    margin-bottom: 16px;
}

.pe-why-cta__card p {
    font-size: 16px;
    color: #bfc4c9;
    max-width: 1000px;
    margin: 0 auto 48px;
    line-height: 1.4;
}

.pe-why-cta__banner {
    border-radius: var(--pe-radius-lg);
    overflow: hidden;
    aspect-ratio: 1.92;
    max-width: 1129px;
    margin: 0 auto;
}

.pe-why-cta__banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact */
.pe-contact {
    background: var(--pe-bg-light);
    padding: var(--pe-block-pad-y) var(--pe-container-pad-x);
}

.pe-contact__layout {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 48px;
    max-width: 920px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    min-width: 0;
}

.pe-contact__info {
    flex: 0 0 400px;
    max-width: 400px;
    margin: auto;
}

.pe-contact__handles {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.pe-contact__handle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--pe-text-dark);
}

.pe-contact__handle img,
.pe-contact__handle .pe-contact__icon {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    object-fit: contain;
    color: var(--pe-text-dark);
}

body.pe-landing #get-in-touch .pe-contact__handle a {
    color: var(--pe-gold);
    transition: opacity 0.2s ease;
}

body.pe-landing #get-in-touch .pe-contact__handle a:hover {
    opacity: 0.85;
}

.pe-contact-form {
    flex: 0 0 520px;
    width: 100%;
    max-width: 520px;
    background: var(--pe-white);
    border-radius: 25px;
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    box-shadow: var(--pe-shadow-card);
    transition: box-shadow 0.35s var(--pe-ease-premium), transform 0.35s var(--pe-ease-premium);
}

.pe-contact-form:focus-within {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pe-contact-form label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pe-contact-form label.pe-full {
    grid-column: 1 / -1;
}

.pe-contact-form input,
.pe-contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #d1d1d1;
    padding: 10px 0;
    font-family: var(--pe-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--pe-black);
    background: transparent;
    outline: none;
    transition: border-color 0.25s ease;
}

.pe-contact-form input:focus,
.pe-contact-form textarea:focus {
    border-bottom-color: var(--pe-black);
}

.pe-contact-form input::placeholder,
.pe-contact-form textarea::placeholder {
    color: #797979;
}

.pe-contact-form textarea {
    min-height: 120px;
    resize: none;
}

.pe-contact-form .pe-contact-form__submit {
    grid-column: 1 / -1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 56px 12px 24px;
    border-radius: 9999px;
    border: none;
    font-family: var(--pe-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    background: var(--pe-black);
    color: var(--pe-white);
    width: 100%;
    margin-top: 8px;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s var(--pe-ease-premium), background 0.3s ease, color 0.3s ease;
}

.pe-contact-form .pe-contact-form__submit.is-incomplete {
    cursor: pointer;
    opacity: 1;
    transform: none;
}

.pe-contact-form .pe-contact-form__submit.is-incomplete:hover {
    opacity: 1;
    transform: none;
}

.pe-contact-form .pe-contact-form__submit.is-complete {
    cursor: pointer;
}

.pe-contact-form .pe-contact-form__submit.is-complete:hover {
    opacity: 0.92;
    transform: none;
}

.pe-contact-form .pe-contact-form__submit.is-thank-you,
.pe-contact-form .pe-contact-form__submit:disabled {
    cursor: default;
    opacity: 1;
    transform: none;
}

.pe-contact-form .pe-contact-form__submit.is-thank-you:hover,
.pe-contact-form .pe-contact-form__submit:disabled:hover {
    opacity: 1;
    transform: none;
}

.pe-contact-form__submit-label {
    transition: opacity 0.3s ease;
}

.pe-contact-form__submit-icon {
    position: absolute;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.pe-contact-form__submit-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.pe-contact-form__submit.is-complete .pe-contact-form__submit-icon {
    opacity: 1;
    transform: translateX(0);
}

.pe-contact-form__submit.is-thank-you .pe-contact-form__submit-icon {
    opacity: 0;
    transform: translateX(-6px);
}

.pe-contact-form input:read-only,
.pe-contact-form textarea:read-only {
    cursor: default;
}

.pe-contact-form .pe-btn {
    grid-column: 1 / -1;
}

/* Footer */
.pe-footer {
    background: var(--pe-teal-dark);
    color: #e6e6e6;
}

.pe-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    /* max-width: var(--pe-max); */
    /* margin: 0 auto; */
    padding: clamp(48px, 8vw, 88px) var(--pe-footer-pad-x) clamp(32px, 5vw, 52px);
    min-width: 0;
}

.pe-footer__brand {
    flex: 1 1 auto;
    min-width: 0;
}

.pe-footer__brand .pe-footer__logo {
    display: block;
    width: 220px;
    height: 48px;
    margin-bottom: 24px;
}

.pe-footer__brand .pe-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.pe-footer__brand p {
    font-family: var(--pe-font-body);
    font-size: 16px;
    font-weight: 500;
    color: #e6e6e6;
    max-width: 480px;
    line-height: 1.5;
    margin: 0 0 32px;
}

.pe-footer__brand .pe-btn--footer-cta {
    margin-top: 0;
}

.pe-footer__links {
    flex: 0 0 auto;
    min-width: 240px;
    padding-top: 2px;
}

.pe-footer__links h4 {
    font-family: var(--pe-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--pe-white);
    margin: 0 0 20px;
}

.pe-footer__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.pe-footer__links li {
    margin: 0;
}

.pe-footer__links a {
    font-family: var(--pe-font);
    font-size: 14px;
    font-weight: 600;
    color: #e6e6e6;
    transition: color 0.25s ease;
}

.pe-footer__links a:hover {
    color: var(--pe-white);
}

.pe-footer__links a.is-active,
.pe-footer__links a.is-active:hover {
    color: var(--pe-gold);
}

.pe-footer__divider {
    /* width: calc(100% - (var(--pe-footer-pad-x) * 2));
    max-width: calc(var(--pe-max) - (var(--pe-footer-pad-x) * 2)); */
    height: 1px;
    margin: 0 auto;
    background: black;
    /* background: rgba(255, 255, 255, 0.14); */
}

.pe-footer__bottom {
    width: 100%;
    max-width: var(--pe-max);
    margin: 0 auto;
    padding: 28px var(--pe-footer-pad-x) 56px;
    text-align: left;
}

.pe-footer__bottom p {
    font-family: var(--pe-font-body);
    font-size: 16px;
    font-weight: 500;
    color: #e6e6e6;
    margin: 0;
}

/* Scroll reveal animations */
.pe-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.75s var(--pe-ease-premium), transform 0.75s var(--pe-ease-premium);
    will-change: opacity, transform;
}

.pe-reveal.pe-reveal--delay {
    transition-delay: 0.12s;
}

.pe-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .pe-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .pe-header,
    .pe-header__inner {
        transition: none;
    }

    .pe-btn:hover,
    .pe-btn--get-in-touch:hover .pe-btn__icon svg,
    .pe-hero__image-wrap:hover img,
    .pe-why-dark__visual:hover img,
    .pe-partner-row__img:hover {
        transform: none;
    }

    .pe-btn--footer-cta .pe-btn__label::before {
        transition: none;
    }
}

/* Mobile nav */
.pe-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(12, 12, 12, 0.25);
    pointer-events: auto;
    cursor: pointer;
}

.pe-nav-check:checked ~ .pe-nav-backdrop {
    display: block;
}

.pe-mobile-nav {
    display: none;
    position: fixed;
    inset: calc(var(--pe-header-offset) + 8px) 16px auto;
    background: var(--pe-white);
    padding: 24px;
    flex-direction: column;
    gap: 24px;
    z-index: 100;
    pointer-events: auto;
    border-radius: 24px;
    box-shadow: var(--pe-shadow-nav);
}

.pe-mobile-nav a {
    font-family: var(--pe-font);
    font-size: 16px;
    font-weight: 600;
    color: var(--pe-text-muted);
}

.pe-nav-check:checked ~ .pe-mobile-nav {
    display: flex;
}

.pe-nav-check:checked ~ .pe-header__shell .pe-menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.pe-nav-check:checked ~ .pe-header__shell .pe-menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

body.pe-landing:has(#pe-nav-toggle:checked) {
    overflow: hidden;
}

/* ==========================================================================
   Responsive layout — mobile-first variables above; structural overrides below
   Breakpoints: 479 | 767 | 1023 | 1279 | 1439 | 1919 | 1920+
   ========================================================================== */

/* 1024px – 1279px (small laptops) */
@media (max-width: 1279px) {
    .pe-hero__top {
        flex-direction: column;
    }

    .pe-hero__aside {
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
    }

    .pe-stats-band {
        min-height: auto;
        padding: 40px 0;
    }

    .pe-stats-band::after {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.32) 0%,
            rgba(0, 0, 0, 0.48) 45%,
            rgba(0, 0, 0, 0.58) 100%
        );
    }

    .pe-stats-band__inner {
        min-height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .pe-stats__grid {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 24px;
        --pe-stat-grid-gap: 24px;
        --pe-stat-ring-y: 23px;
        width: 100%;
        margin-left: 0;
        min-height: auto;
        padding: 0;
        transform: none;
        overflow: visible;
    }

    .pe-stat-card {
        max-width: none;
        min-height: auto;
        padding: 0 0 0 24px;
        overflow: visible;
    }

    .pe-stat-card__line {
        z-index: 2;
    }

    .pe-stat-card:first-child:not(:last-child) .pe-stat-card__line {
        top: var(--pe-stat-ring-y);
        bottom: calc(-1 * var(--pe-stat-grid-gap));
        height: auto;
    }

    .pe-stat-card:not(:first-child):not(:last-child) .pe-stat-card__line {
        top: 0;
        bottom: calc(-1 * var(--pe-stat-grid-gap));
        height: auto;
    }

    .pe-stat-card:last-child:not(:first-child) .pe-stat-card__line {
        top: 0;
        bottom: auto;
        height: var(--pe-stat-ring-y);
    }

    .pe-stat-card::before,
    .pe-stat-card::after {
        z-index: 3;
    }

    .pe-stat-card::before {
        top: 12px;
        bottom: auto;
        left: -9px;
        width: 18px;
        height: 18px;
    }

    .pe-stat-card::after {
        top: 18.5px;
        bottom: auto;
        left: -2px;
        width: 4px;
        height: 4px;
    }

    .pe-stat-card__content {
        position: relative;
        left: 0;
        bottom: auto;
        width: 100%;
        padding: 14px 18px;
        /* background: rgba(0, 0, 0, 0.28); */
        /* backdrop-filter: blur(3px); */
        /* -webkit-backdrop-filter: blur(3px); */
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    }

    .pe-stat-card h3,
    .pe-stat-card p {
        max-width: none;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
    }

    .pe-stat-card h3 {
        font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
    }

    .pe-stat-card p {
        font-size: clamp(0.875rem, 2vw, 0.9375rem);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
    }

    .pe-approach-card {
        flex-direction: column;
        align-items: stretch;
        padding: 48px 24px;
    }

    .pe-approach-card__media {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .pe-approach-card__content {
        width: 100%;
        min-width: 0;
    }

    .pe-accordion-item__body {
        max-width: none;
        width: 100%;
    }

    .pe-accordion-item--open .pe-accordion-item__body {
        max-height: 520px;
    }

    .pe-partners-wrap {
        padding: 40px 20px;
        max-width: 85%;
    }

    #who-we-support .pe-partners-header {
        margin-bottom: 20px;
    }

    #who-we-support.pe-section {
        padding: 48px 0;
    }

    .pe-partners-gallery {
        margin-top: 16px;
    }

    .pe-partners-gallery__track {
        height: auto;
        padding-bottom: 8px;
    }

    .pe-partners-gallery__stage {
        position: relative;
        top: auto;
        min-height: auto;
        gap: 16px;
        padding: 0 0 8px;
    }

    .pe-partner-row--2 {
        --partner-scale: 0.72;
        --partner-opacity: 0.55;
    }

    .pe-partner-row__scale {
        max-width: 644px;
    }

    .pe-why-dark__inner {
        gap: 40px;
    }

    .pe-why-dark__body {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: stretch;
    }

    .pe-feature-list,
    .pe-why-dark__visual {
        width: 100%;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }

    .pe-why-cta__card {
        padding: 64px 24px 0;
    }

    .pe-contact__layout {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        max-width: 100%;
    }

    .pe-contact__info {
        flex: none;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }

    .pe-contact-form {
        flex: none;
        width: 100%;
        max-width: 640px;
        margin: 0 auto;
    }

    .pe-footer__top {
        flex-wrap: wrap;
        gap: 48px;
    }

    .pe-footer__bottom {
        padding-top: 24px;
        padding-bottom: 48px;
    }

    .pe-policy__hero {
        padding: 24px 0 40px;
        margin-bottom: 40px;
    }

    .pe-policy__section {
        margin-bottom: 40px;
    }
}

/* 768px – 1023px (tablets) — mobile navigation */
@media (max-width: 1023px) {
    .pe-header__inner {
        grid-template-columns: 1fr auto;
        padding: 8px 16px;
    }

    .pe-header__nav,
    .pe-header__cta--desktop {
        display: none;
    }

    .pe-menu-toggle {
        display: flex;
        justify-self: end;
    }

    .pe-mobile-nav {
        inset: calc(var(--pe-header-offset) + 8px) var(--pe-container-pad-x) auto;
    }
}

/* 480px – 767px (large phones) */
@media (max-width: 767px) {
    .pe-header__inner {
        grid-template-columns: 1fr auto;
        min-height: 56px;
        padding: 8px 12px 8px 16px;
    }

    .pe-hero {
        padding-top: calc(var(--pe-header-offset) + 32px);
    }

    .pe-hero__image-wrap {
        aspect-ratio: 4 / 3;
        margin-bottom: clamp(40px, 8vw, 64px);
    }

    .pe-hero__subtitle {
        font-size: clamp(0.9375rem, 2.5vw, 1rem);
    }

    .pe-btn--get-in-touch {
        height: 44px;
        font-size: 14px;
    }

    .pe-btn--get-in-touch .pe-btn__label {
        padding: 0 14px 0 20px;
    }

    .pe-btn--get-in-touch .pe-btn__icon {
        width: 44px;
    }

    .pe-stats-band {
        padding: 32px 0;
    }

    .pe-stats__grid {
        gap: 24px;
        --pe-stat-grid-gap: 24px;
    }

    .pe-stat-card {
        padding: 0 0 0 22px;
    }

    .pe-stat-card__content {
        padding: 14px 16px;
    }

    .pe-stat-card h3 {
        font-size: clamp(1rem, 4vw, 1.125rem);
    }

    .pe-stat-card p {
        font-size: clamp(0.8125rem, 2.5vw, 0.9375rem);
    }

    .pe-section-heading {
        text-align: left;
    }

    #who-we-support .pe-partners-header .pe-section-heading {
        text-align: center;
    }

    .pe-section-desc {
        text-align: left;
        margin-bottom: 40px;
    }

    #who-we-support .pe-partners-header .pe-section-desc {
        text-align: center;
    }

    .pe-approach-card {
        border-radius: clamp(24px, 6vw, 40px);
        padding: 32px 20px;
        gap: 32px;
        align-items: stretch;
    }

    .pe-accordion-item h4 {
        font-size: clamp(1.0625rem, 4vw, 1.25rem);
    }

    .pe-accordion-item__body {
        font-size: clamp(0.8125rem, 2.5vw, 0.875rem);
    }

    .pe-partners-wrap {
        width: calc(100% - (var(--pe-container-pad-x) * 2));
        max-width: calc(100% - (var(--pe-container-pad-x) * 2));
        margin-left: auto;
        margin-right: auto;
        padding: 32px 16px;
        border-radius: clamp(24px, 6vw, 40px);
    }

    .pe-partner-row__scale {
        flex-direction: column;
        gap: 16px;
        padding: 24px 16px;
        max-width: 100%;
    }

    /* Phones: viewport-driven scroll animation (same as tablet) */
    .pe-partner-row--2 {
        --partner-scale: 0.75;
        --partner-opacity: 0.6;
    }

    .pe-why-dark__inner {
        gap: 32px;
    }

    .pe-why-dark__body {
        gap: 32px;
    }

    .pe-feature-list {
        gap: 28px;
    }

    .pe-feature-item h4 {
        font-size: clamp(0.875rem, 3vw, 0.9375rem);
    }

    .pe-contact-form {
        grid-template-columns: 1fr;
        padding: clamp(24px, 5vw, 48px) 16px;
        max-width: 100%;
    }

    .pe-footer__top {
        flex-direction: column;
        gap: 40px;
    }

    .pe-footer__brand .pe-footer__logo {
        width: min(220px, 70vw);
        height: auto;
        aspect-ratio: 220 / 48;
    }

    .pe-footer__brand p {
        font-size: clamp(0.9375rem, 2.5vw, 1rem);
        max-width: 100%;
    }

    .pe-footer__links {
        width: 100%;
        min-width: 0;
    }

    .pe-footer__bottom {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    body.pe-policy-page main {
        padding-top: calc(var(--pe-header-offset) + 24px);
    }

    .pe-policy__meta-sep {
        display: block;
        height: 8px;
    }

    .pe-policy__section h3 {
        font-size: clamp(0.9375rem, 3vw, 1.0625rem);
    }

    .pe-policy__section p,
    .pe-policy__section ul {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }

    .pe-policy__table {
        font-size: 13px;
        min-width: 560px;
    }

    .pe-policy__table th,
    .pe-policy__table td {
        padding: 12px;
    }

    .pe-policy__table--contact {
        min-width: 280px;
    }

    .pe-policy__table--contact th[scope="row"] {
        width: 38%;
    }
}

/* 320px – 479px (small phones) */
@media (max-width: 479px) {
    .pe-header {
        top: 8px;
    }

    .pe-header.pe-header--flat {
        top: 0;
    }

    .pe-header__inner {
        min-height: 52px;
        border-radius: clamp(20px, 5vw, 32px);
    }

    .pe-menu-toggle {
        width: 36px;
        height: 36px;
        gap: 5px;
        padding: 7px;
    }

    .pe-mobile-nav {
        padding: 20px;
        gap: 20px;
        border-radius: 20px;
    }

    .pe-mobile-nav a {
        font-size: 15px;
    }

    .pe-hero__top {
        gap: 16px;
        margin-bottom: 24px;
    }

    .pe-btn--footer-cta {
        height: 44px;
        font-size: 13px;
    }

    .pe-btn--footer-cta .pe-btn__label {
        padding: 0 14px 0 18px;
    }

    .pe-btn--footer-cta .pe-btn__icon {
        width: 38px;
    }

    .pe-stats-band {
        padding: 28px 0;
    }

    .pe-stats__grid {
        gap: 20px;
        --pe-stat-grid-gap: 20px;
    }

    .pe-stat-card {
        padding-left: 20px;
    }

    .pe-stat-card__content {
        padding: 12px 14px;
        /* background: rgba(0, 0, 0, 0.32); */
    }

    .pe-section-label {
        font-size: 13px;
    }

    .pe-contact__handle {
        font-size: 13px;
        align-items: flex-start;
    }

    .pe-contact__handle a {
        word-break: break-word;
    }

    .pe-contact-form input,
    .pe-contact-form textarea {
        font-size: 16px; /* prevents iOS zoom on focus */
    }

    .pe-policy__brand {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .pe-policy__doc-title {
        font-size: clamp(1.125rem, 4.5vw, 1.25rem);
        letter-spacing: 0.02em;
    }

    .pe-policy__table {
        min-width: 480px;
        font-size: 12px;
    }

    .pe-policy__table th,
    .pe-policy__table td {
        padding: 10px;
    }
}

/* 1280px – 1439px (laptops) — fine-tune wide layouts */
@media (min-width: 1280px) and (max-width: 1439px) {
    .pe-stats__grid {
        width: min(1060px, 90%);
    }

    .pe-partners-wrap {
        max-width: 72%;
    }
}

/* 1440px – 1919px (desktop monitors) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .pe-partners-wrap {
        max-width: 68%;
    }
}

/* 1920px+ (large desktop monitors) */
@media (min-width: 1920px) {
    .pe-hero__title {
        max-width: 680px;
    }

    .pe-hero__aside {
        max-width: 540px;
    }

    .pe-stats__grid {
        width: min(1120px, 84%);
    }

    .pe-partners-wrap {
        max-width: 64%;
    }

    .pe-contact__layout {
        max-width: 1040px;
    }
}

/* Cookie Policy page */
body.pe-policy-page main {
    padding-top: calc(var(--pe-header-offset) + clamp(24px, 4vw, 48px));
}

.pe-policy {
    background: var(--pe-white);
    padding-bottom: 64px;
}

.pe-policy__inner {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 var(--pe-container-pad-x) clamp(48px, 8vw, 80px);
}

.pe-policy__hero {
    text-align: center;
    padding: 32px 0 48px;
    border-bottom: 1px solid var(--pe-border);
    margin-bottom: 48px;
}

.pe-policy__brand {
    font-family: var(--pe-font);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--pe-teal);
    line-height: 1.15;
    margin-bottom: 8px !important;
}

.pe-policy__tagline {
    font-family: var(--pe-font-body);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 500;
    color: var(--pe-purple);
    margin-bottom: 24px !important;
}

.pe-policy__doc-title {
    font-family: var(--pe-font);
    font-size: clamp(1.5rem, 3.5vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #1a5f8a;
    margin-bottom: 24px !important;
}

.pe-policy__meta {
    font-family: var(--pe-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--pe-text);
    line-height: 1.6;
}

.pe-policy__meta a {
    color: #2e86c1 !important;
    /* text-decoration: underline; */
    text-underline-offset: 2px;
}

.pe-policy__meta a:hover {
    color: #1a5f8a;
}

.pe-policy__content {
    color: var(--pe-text-dark);
}

.pe-policy__section {
    margin-bottom: 48px;
}

.pe-policy__section h2 {
    font-family: var(--pe-font);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--pe-black);
    line-height: 1.35;
    margin-bottom: 20px;
    padding-bottom: 12px;
    /* border-bottom: 2px solid #1a5f8a; */
}

.pe-policy__section h3 {
    font-family: var(--pe-font);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--pe-black);
    margin: 28px 0 12px;
}

.pe-policy__section p {
    font-family: var(--pe-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 16px;
}

.pe-policy__section p:last-child {
    margin-bottom: 0;
}

.pe-policy__section ul {
    margin: 0 0 16px;
    padding-left: 1.35rem;
    font-family: var(--pe-font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
}

.pe-policy__section li {
    margin-bottom: 8px;
}

.pe-policy__section li:last-child {
    margin-bottom: 0;
}

.pe-policy__section a {
    color: #2e86c1;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pe-policy__section a:hover {
    color: #1a5f8a;
}

.pe-policy__table-wrap {
    margin: 24px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 100%;
}

.pe-policy__table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    font-family: var(--pe-font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.pe-policy__table th,
.pe-policy__table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border: 1px solid #ccc;
}

.pe-policy__table thead th {
    background: #1a5f8a;
    color: var(--pe-white);
    font-family: var(--pe-font);
    font-weight: 600;
    font-size: 14px;
}

.pe-policy__table tbody tr:nth-child(odd) {
    background: var(--pe-white);
}

.pe-policy__table tbody tr:nth-child(even) {
    background: #e8f4fb;
}

.pe-policy__table--contact {
    min-width: 320px;
}

.pe-policy__table--contact th[scope="row"] {
    width: 34%;
    background: #e8f4fb;
    font-family: var(--pe-font);
    font-weight: 600;
    color: var(--pe-black);
}

.pe-policy__table--contact td {
    background: var(--pe-white);
}

.pe-policy__table--contact tbody tr:nth-child(even) th[scope="row"],
.pe-policy__table--contact tbody tr:nth-child(even) td {
    background: inherit;
}

.pe-policy__note,
.pe-policy__disclaimer {
    font-size: 14px !important;
    color: #666;
    margin-top: 16px !important;
}

/* .pe-policy__disclaimer {
    text-align: center;
    padding-top: 32px;
    margin-top: 32px !important;
    border-top: 2px solid #1a5f8a;
} */
