/* =========================================================
   HealPath Site Styles
   Load after healpath-core.css.
   Current scope: Homepage sections and responsive refinements.
   Add future page sections here under clear page headings.
   ========================================================= */

/* =========================================================
   7. Who We Serve
   ========================================================= */

.healpath-home .hp-audience {
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            var(--hp-white) 0%,
            #fcfdff 100%
        );
}

/* Compatibility with the existing Text Block markup */
.healpath-home .hp-audience .container-hp.hp-container {
    width: min(
        var(--hp-container-width),
        calc(100% - (var(--hp-container-gutter) * 2))
    );
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
}

.healpath-home .hp-audience .hp-section-header {
    max-width: 1000px;
    margin-bottom: clamp(30px, 3vw, 40px);
}

.healpath-home .hp-audience .hp-title {
    max-width: none;
    margin-bottom: 8px;

    font-size: clamp(38px, 3vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.healpath-home .hp-audience .hp-lead {
    color: #66718a;
    font-size: 16px;
    line-height: 1.55;
}

.healpath-home .hp-audience .hp-grid {
    gap: 22px;
}

.healpath-home .hp-audience .hp-card--audience {
    border-color: #e4eaf1;
    border-radius: 16px;

    box-shadow: 0 9px 25px rgba(5, 21, 73, 0.07);
}

.healpath-home .hp-audience .hp-card--audience:hover {
    transform: translateY(-3px);
    border-color: rgba(17, 175, 203, 0.25);
    box-shadow: 0 15px 34px rgba(5, 21, 73, 0.11);
}

.healpath-home .hp-audience .hp-card__media {
    aspect-ratio: 16 / 10;
}

.healpath-home .hp-audience .hp-card__icon {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;

    border: 3px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;

    box-shadow: 0 6px 15px rgba(5, 21, 73, 0.18);
}

/*
 * Three stable rows:
 * 1. Title
 * 2. Flexible text area
 * 3. Link
 */
.healpath-home .hp-audience .hp-card__body {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    row-gap: 12px;

    height: 100%;
    padding: 20px 20px 22px;
}

.healpath-home .hp-audience .hp-card__title,
.healpath-home .hp-audience .hp-card__text,
.healpath-home .hp-audience .hp-card__link {
    margin: 0;
}

.healpath-home .hp-audience .hp-card__title {
    font-size: 17px;
    line-height: 1.35;
    letter-spacing: -0.015em;
}

.healpath-home .hp-audience .hp-card__text {
    align-self: start;

    color: #63708a;

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

.healpath-home .hp-audience .hp-card__footer {
    align-self: end;
    justify-self: start;

    margin: 0;
    padding: 2px 0 0;
}

.healpath-home .hp-audience .hp-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin: 0;
    padding: 0;

    line-height: 1.2;
    white-space: nowrap;
}

.healpath-home .hp-audience .hp-link-arrow {
    font-size: 13px;
    line-height: 1.2;
}

/* Per-image crop corrections */
.healpath-home .hp-audience .serve-families img {
    object-position: center 42%;
}

.healpath-home .hp-audience .serve-payers img {
    object-position: center 55%;
}

/* =========================================================
   Who We Serve — Fourth card media fix
   ========================================================= */

.healpath-home
.serve-payers.hp-card--audience {
    display: flex !important;
    flex-direction: column;

    overflow: hidden;
}

/* Force the same image height used by the other cards */
.healpath-home
.serve-payers
.hp-card__media {
    position: relative;

    width: 100%;
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
    flex: 0 0 200px !important;

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

    overflow: visible !important;
}

/* Clip the image without clipping the overlapping icon */
.healpath-home
.serve-payers
.hp-card__media > p {
    width: 100%;
    height: 100%;

    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    border-radius:
        var(--hp-radius-md)
        var(--hp-radius-md)
        0
        0;
}

.healpath-home
.serve-payers
.hp-card__media img {
    display: block;

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

    margin: 0 !important;

    object-fit: cover !important;
    object-position: center !important;
}

/* Restore the visible card content */
.healpath-home
.serve-payers
.hp-card__body {
    position: relative;
    z-index: 1;

    display: flex !important;
    min-height: 0;
    flex: 1;
    flex-direction: column;

    background-color: var(--hp-white) !important;
}

.healpath-home
.serve-payers
.hp-card__footer {
    margin-top: auto !important;
}

/* =========================================================
   Service panels
   Reusable for Core, Ongoing and Bundled services
   ========================================================= */

.healpath-home .hp-service-panel {
    --hp-service-gap: 22px;

    position: relative;
    isolation: isolate;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f6fbff 0%,
            #edf8fc 100%
        ) !important;
}


/* Decorative turquoise circle */
.healpath-home .hp-service-panel::before {
    content: "";

    position: absolute;
    top: 34px;
    right:
        max(
            30px,
            calc(
                (100vw - var(--hp-container-wide)) / 2 + 34px
            )
        );
    z-index: 0;

    display: block;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background:
        rgba(17, 175, 203, 0.07);
}


/* Decorative dots */
.healpath-home .hp-service-panel::after {
    content: "";

    position: absolute;
    top: 68px;
    right:
        max(
            20px,
            calc(
                (100vw - var(--hp-container-wide)) / 2 + 20px
            )
        );
    z-index: 0;

    display: block;

    width: 125px;
    height: 125px;

    opacity: 0.55;

    background-image:
        radial-gradient(
            rgba(17, 175, 203, 0.42) 1.5px,
            transparent 1.5px
        );

    background-size: 14px 14px;
}


/* =========================================================
   Service panel content container
   ========================================================= */

.healpath-home .hp-service-panel > .porto-wrap-container {
    position: relative;
    z-index: 1;

    width: min(
        var(--hp-container-width),
        calc(100% - (var(--hp-container-gutter) * 2))
    ) !important;
    max-width: none !important;

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

    overflow: visible;

    border: 0;
    border-radius: 0;

    background: transparent;
}


/* =========================================================
   Service panel header
   Shared by Ongoing Services and Bundled Programs
   ========================================================= */

/* =========================================================
   Shared spacing between service header and cards
   ========================================================= */

/* Text Block wrapper directly before the Posts Grid */
.healpath-home
.hp-service-panel
.wpb_text_column.hp-service-panel__header {
    max-width: 1000px;

    margin-top: 0 !important;
    margin-right: auto !important;
    margin-bottom: clamp(28px, 2.5vw, 36px) !important;
    margin-left: auto !important;

    text-align: center;
}


/* Prevent duplicated spacing on the inner header element */
.healpath-home
.hp-service-panel
.wpb_text_column.hp-service-panel__header
> .wpb_wrapper
> .hp-service-panel__header {
    max-width: none;
    margin: 0;
}


/* Shared section badge */
.healpath-home .hp-service-panel__badge {
    display: inline-flex;
    height: 43px;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 8px;

    margin: 0 auto 14px;
    padding: 0 20px;

    border-radius: var(--hp-radius-pill);

    color: var(--hp-white);
    background-color: var(--hp-turquoise-500);

    line-height: 1;

    box-shadow:
        0 8px 18px rgba(17, 175, 203, 0.18);
}


/* Shared badge title */
.healpath-home .hp-service-panel__title {
    display: flex;
    height: 100%;
    align-items: center;

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

    color: inherit !important;

    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    white-space: nowrap;

    /* Optical correction for the current font metrics */
    transform: translateY(-0.5px);
}


/* Shared service-panel badge icon */
.healpath-home .hp-service-panel__badge-icon {
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    flex: 0 0 16px;

    margin: 0;
    padding: 0;

    color: inherit;
    line-height: 1;
}

/* Core Services */
.healpath-home .hp-service-panel--core {
    --hp-panel-icon: "\f469";
}

/* Ongoing Services */
.healpath-home .hp-service-panel--ongoing {
    --hp-panel-icon: "\f2f1";
}

/* Bundled Programs */
.healpath-home .hp-service-panel--bundled {
    --hp-panel-icon: "\f1b3";
}

/* Hide the legacy HTML icon and render one stable CSS icon */
.healpath-home .hp-service-panel__badge-icon i {
    display: none !important;
}

.healpath-home .hp-service-panel__badge-icon::before {
    content: var(--hp-panel-icon, "\f0f1");

    display: block;

    margin: 0;
    padding: 0;

    color: inherit;

    font-family:
        "Font Awesome 6 Free",
        "Font Awesome 5 Free";
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;

    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}


/* Shared section description */
.healpath-home .hp-service-panel__description {
    max-width: 760px;
    margin: 0 auto;

    color: #66718a !important;

    font-size: 16px !important;
    font-weight: 400;
    line-height: 1.55 !important;
}


/* =========================================================
   Bundled Programs modifier
   ========================================================= */

.healpath-home .hp-service-panel--bundled {
    background: var(--hp-white) !important;
}

.healpath-home .hp-service-panel--bundled::before,
.healpath-home .hp-service-panel--bundled::after {
    display: none;
    content: none;
}

/* =========================================================
   Core Services modifier
   ========================================================= */

.healpath-home .hp-service-panel--core {
    padding-top: 10px !important;

    background: var(--hp-white) !important;
}

.healpath-home .hp-service-panel--core::before,
.healpath-home .hp-service-panel--core::after {
    display: none;
    content: none;
}


/* =========================================================
   Porto service grid adapter
   ========================================================= */

.healpath-home .hp-service-grid {
    margin: 0;
}

.healpath-home .hp-service-grid .posts-wrap {
    display: grid;
    align-items: stretch;

    gap: var(--hp-service-gap);

    margin: 0;
}

.healpath-home
.hp-service-grid--4
.posts-wrap {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

.healpath-home
.hp-service-grid--3
.posts-wrap {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}

/* Neutralize Porto flex-column widths and padding */
.healpath-home
.hp-service-grid
.posts-wrap
> .porto-tb-item {
    width: auto;
    min-width: 0;
    height: 100%;

    margin: 0;
    padding: 0;
}


/* =========================================================
   Dynamic service card
   ========================================================= */

.healpath-home
.hp-service-grid
.custom-service {
    display: flex;
    height: 100%;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-md);

    background-color: var(--hp-white);

    box-shadow:
        0 10px 24px rgba(5, 21, 73, 0.06);

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.healpath-home
.hp-service-grid
.custom-service:hover {
    transform: translateY(-4px);

    border-color:
        rgba(17, 175, 203, 0.28);

    box-shadow:
        0 16px 34px rgba(5, 21, 73, 0.10);
}


/* =========================================================
   Service card image
   ========================================================= */

.healpath-home
.hp-service-grid
.porto-tb-featured-image {
    position: relative;

    aspect-ratio: 4 / 3;
    flex: 0 0 auto;

    overflow: hidden;
}

.healpath-home
.hp-service-grid
.porto-tb-featured-image
.img-thumbnail {
    display: block;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 0;

    background: none;
}

.healpath-home
.hp-service-grid
.porto-tb-featured-image img {
    display: block;

    width: 100%;
    height: 100%;

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

    transition: transform 350ms ease;
}

.healpath-home
.hp-service-grid
.custom-service:hover
.porto-tb-featured-image img {
    transform: scale(1.035);
}

/* Remove Porto image overlays while keeping our card icon layer */
.healpath-home
.hp-service-grid
.porto-tb-featured-image::before,
.healpath-home
.hp-service-grid
.porto-tb-featured-image a::before,
.healpath-home
.hp-service-grid
.porto-tb-featured-image a::after {
    display: none;
    content: none;
}


/* =========================================================
   Service card body
   ========================================================= */

.healpath-home
.hp-service-grid
.custom-service
> .porto-section:last-child {
    display: flex;
    flex: 1 1 auto;

    background-color: var(--hp-white) !important;
}

.healpath-home
.hp-service-grid
.project-details {
    display: grid;
    width: 100%;
    min-height: 140px;

    grid-template-rows: auto 1fr;
    row-gap: 12px;

    margin: 0;
    padding: 20px 20px 22px;
}

/* =========================================================
   Service title and icon tile
   ========================================================= */

.healpath-home
.hp-service-grid
.post-title {
    display: block;

    min-height: 0;
    margin: 0;

    color: var(--hp-text);

    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    letter-spacing: -0.015em;
}

/* The icon is rendered inside the card image, not beside the title. */
.healpath-home
.hp-service-grid
.post-title::before {
    display: none;
    content: none;
}

.healpath-home
.hp-service-grid
.post-title a {
    color: var(--hp-text) !important;
    text-decoration: none;
}

.healpath-home
.hp-service-grid
.post-title a:hover {
    color: var(--hp-turquoise-600) !important;
}

/* Match the audience cards: circular icon positioned over the image. */
.healpath-home
.hp-service-panel
.porto-tb-featured-image::after {
    content: var(--hp-service-icon, "\f0f1");

    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;

    display: grid;
    box-sizing: border-box;
    width: var(--hp-card-icon-size);
    height: var(--hp-card-icon-size);
    place-items: center;

    border: 3px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;

    color: var(--hp-white);
    background-color: var(--hp-turquoise-500);

    font-family:
        "Font Awesome 6 Free",
        "Font Awesome 5 Free";
    font-size: var(--hp-card-icon-font-size);
    font-style: normal;
    font-weight: 900;
    line-height: 1;

    box-shadow: 0 6px 15px rgba(5, 21, 73, 0.18);

    pointer-events: none;
}


/* =========================================================
   Ongoing service icons
   ========================================================= */

.healpath-home .hp-service-panel--ongoing .post-6083 {
    --hp-service-icon: "\f48e";
}

.healpath-home .hp-service-panel--ongoing .post-6082 {
    --hp-service-icon: "\f5bb";
}

.healpath-home .hp-service-panel--ongoing .post-6081 {
    --hp-service-icon: "\f0f0";
}

.healpath-home .hp-service-panel--ongoing .post-6076 {
    --hp-service-icon: "\f486";
}

/* Keep the person visible in the Chronic Refill Program image */
.healpath-home
.hp-service-panel--ongoing
.post-6076
.porto-tb-featured-image img {
    object-position: 72% center;
}

/* =========================================================
   Bundled Programs card icons
   ========================================================= */

.healpath-home .hp-service-panel--bundled .post-6069 {
    --hp-service-icon: "\f072";
}

.healpath-home .hp-service-panel--bundled .post-6068 {
    --hp-service-icon: "\f19d";
}

.healpath-home .hp-service-panel--bundled .post-6067 {
    --hp-service-icon: "\f21e";
}

/* =========================================================
   Core Services card icons
   ========================================================= */

.healpath-home .hp-service-panel--core .post-6075 {
    --hp-service-icon: "\f590";
}

.healpath-home .hp-service-panel--core .post-6074 {
    --hp-service-icon: "\f0f0";
}

.healpath-home .hp-service-panel--core .post-6073 {
    --hp-service-icon: "\f0f9";
}


/* =========================================================
   Service excerpt
   ========================================================= */

.healpath-home
.hp-service-grid
.tb-content,
.healpath-home
.hp-service-grid
.post-excerpt {
    margin: 0;
}

.healpath-home
.hp-service-grid
.post-excerpt {
    color: #63708a;

    font-size: 14px !important;
    line-height: 1.62 !important;
}


/*
The refined design does not display Porto's two buttons.
The image and service title links remain functional.
*/
.healpath-home
.hp-service-grid
.project-links {
    display: none !important;
}

/* =========================================================
   Service Integration
   ========================================================= */

.healpath-home .hp-service-panel--integration {
    --hp-panel-icon: "\f0c1";
    background:
        linear-gradient(
            135deg,
            #f6fbff 0%,
            #eaf8fc 100%
        ) !important;
}

/* The approved design does not use the decorative dots/circle here. */
.healpath-home .hp-service-panel--integration::before,
.healpath-home .hp-service-panel--integration::after {
    display: none;
    content: none;
}


/* =========================================================
   Integration section header
   ========================================================= */

.healpath-home
.hp-service-panel__header--integration {
    max-width: 1000px;
}

.healpath-home
.hp-service-panel__integration-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin: 0 0 16px;
}

.healpath-home
.hp-service-panel__integration-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    flex: 0 0 52px;

    border-radius: 50%;

    color: var(--hp-white);
    background-color: var(--hp-turquoise-500);

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

    box-shadow:
        0 9px 22px rgba(17, 175, 203, 0.22);
}

.healpath-home
.hp-service-panel__integration-icon i {
    display: block;

    margin: 0;
    padding: 0;

    color: inherit;

    font-size: inherit;
    line-height: 1;
}

.healpath-home
.hp-service-panel__headline {
    margin: 0;
    padding: 0;

    color: var(--hp-text);

    font-size: clamp(30px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}


/* =========================================================
   Integration grid
   ========================================================= */

.healpath-home
.hp-service-grid--integration
.posts-wrap {
    grid-template-columns: minmax(0, 1fr);

    max-width: 1160px;
    margin-inline: auto;
}


/* =========================================================
   Service Integration horizontal card
   ========================================================= */

.healpath-home
.hp-service-panel--integration
.custom-service {
    display: grid;

    width: 100%;
    height: clamp(350px, 27vw, 400px);
    min-height: 0;

    grid-template-columns:
        minmax(0, 42%)
        minmax(0, 58%);

    overflow: hidden;
}


/* Image side */
.healpath-home
.hp-service-panel--integration
.porto-tb-featured-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;

    overflow: hidden;
}

.healpath-home
.hp-service-panel--integration
.porto-tb-featured-image
.img-thumbnail {
    width: 100%;
    height: 100%;
}

.healpath-home
.hp-service-panel--integration
.porto-tb-featured-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 45%;
}


/* Content side */
.healpath-home
.hp-service-panel--integration
.custom-service
> .porto-section:last-child {
    height: 100%;
    min-height: 0;
}

.healpath-home
.hp-service-panel--integration
.project-details {
    display: flex;
    height: 100%;
    min-height: 0;

    flex-direction: column;
    justify-content: center;
    row-gap: 10px;

    padding: clamp(30px, 4vw, 52px);
}

/* =========================================================
   Dark section shared modifier
   ========================================================= */

.healpath-home .hp-section--dark {
    color: rgba(255, 255, 255, 0.76);

    background:
        linear-gradient(
            115deg,
            var(--hp-navy-950) 0%,
            #082765 48%,
            #0f59a7 100%
        );
}

.healpath-home .hp-section--dark .hp-title {
    color: var(--hp-white);
}

.healpath-home .hp-section--dark .hp-eyebrow {
    color: var(--hp-turquoise-500);
    background-color: rgba(17, 175, 203, 0.16);

    box-shadow: none;
}

.healpath-home .hp-eyebrow-wrap--start {
    justify-content: flex-start;
}


/* =========================================================
   HealPath Advantage
   ========================================================= */

.healpath-home .hp-advantage {
    overflow: hidden;
}

.healpath-home .hp-advantage__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);

    align-items: center;
    gap: clamp(44px, 4vw, 64px);
}

.healpath-home
.hp-advantage__header
.hp-eyebrow {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0;
    min-height: 43px;

    align-items: center;
    justify-content: center;
    gap: 8px;

    margin: 0;
    padding: 0 18px !important;

    border-radius: var(--hp-radius-pill);

    white-space: nowrap;
}

.healpath-home
.hp-advantage__header
.hp-eyebrow i {
    position: static !important;

    display: block;
    width: auto;
    height: auto;

    margin: 0;
    padding: 0;

    font-size: 14px;
    line-height: 1;
    transform: none;
}

.healpath-home .hp-advantage__header {
    max-width: none;
    margin: 0 0 30px;
}

.healpath-home
.hp-advantage__header
.hp-title {
    max-width: none;
    margin: 0;
}

@media (min-width: 1200px) {
    .healpath-home
    .hp-advantage__header
    .hp-title {
        white-space: nowrap;
    }
}


/* =========================================================
   Advantage media
   ========================================================= */

.healpath-home .hp-advantage__media {
    position: relative;

    min-width: 0;
}

.healpath-home .hp-advantage__figure {
    position: relative;

    width: 100%;
    aspect-ratio: 0.94;

    margin: 0;
    overflow: hidden;

    border-radius: var(--hp-radius-md);

    background-color: rgba(255, 255, 255, 0.08);

    box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.18);
}

.healpath-home .hp-advantage__figure img {
    display: block;

    width: 100%;
    height: 100%;
    margin: 0;

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


/* =========================================================
   Floating metrics
   ========================================================= */

.healpath-home .hp-advantage__metric {
    position: absolute;
    z-index: 2;

    border: 1px solid rgba(5, 21, 73, 0.06);
    border-radius: var(--hp-radius-md);

    color: var(--hp-text);
    background-color: var(--hp-white);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.16);
}

.healpath-home .hp-advantage__metric--years {
    top: 7%;
    right: -24px;

    display: flex;
    min-width: 158px;
    min-height: 116px;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 18px;
    text-align: center;
}

.healpath-home .hp-advantage__metric-number {
    display: block;

    color: var(--hp-turquoise-500);

    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.healpath-home .hp-advantage__metric-label {
    display: block;

    margin-top: 12px;

    color: var(--hp-muted);

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

.healpath-home .hp-advantage__metric--members {
    left: -18px;
    bottom: 20px;

    display: inline-flex;
    min-height: 58px;
    align-items: center;
    gap: 12px;

    padding: 0 22px;

    font-size: 14px;
    white-space: nowrap;
}

.healpath-home .hp-advantage__metric--members i {
    color: var(--hp-turquoise-500);

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


/* =========================================================
   Advantage heading
   ========================================================= */

.healpath-home .hp-advantage__header {
    max-width: none;
    margin: 0 0 30px;
}

.healpath-home .hp-advantage__header .hp-title {
    margin-bottom: 0;
}


/* =========================================================
   Advantage items
   ========================================================= */

.healpath-home .hp-advantage__list {
    display: grid;
    gap: 16px;
}

.healpath-home .hp-advantage__item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 16px;

    padding: 20px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--hp-radius-md);

    background-color: rgba(255, 255, 255, 0.075);

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

    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease;
}

.healpath-home .hp-advantage__item:hover {
    transform: translateY(-2px);

    border-color: rgba(17, 175, 203, 0.30);
    background-color: rgba(255, 255, 255, 0.10);
}

.healpath-home .hp-advantage__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;

    margin: 0;

    border-radius: 13px;

    color: var(--hp-turquoise-500);
    background-color: rgba(17, 175, 203, 0.16);

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

.healpath-home .hp-advantage__item-content h4 {
    margin: 1px 0 8px;

    color: var(--hp-white);

    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.healpath-home .hp-advantage__item-content p {
    margin: 0;

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

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

/* =========================================================
   How It Works
   ========================================================= */

.healpath-home .hp-process {
    overflow: hidden;
}

.healpath-home .hp-process__header {
    margin-bottom: clamp(36px, 3vw, 44px);
}


/* =========================================================
   Process grid
   ========================================================= */

.healpath-home .hp-process .hp-process__grid {
    display: grid !important;

    grid-template-columns:
        minmax(0, 1fr)
        44px
        minmax(0, 1fr)
        44px
        minmax(0, 1fr) !important;

    align-items: stretch;
    gap: 0;

    width: 100%;
    max-width: 1160px;

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


/* =========================================================
   Step card
   ========================================================= */

.healpath-home .hp-process .hp-step {
    position: relative;

    display: flex !important;
    width: auto !important;
    min-width: 0;
    min-height: 460px;
    height: 100%;

    flex-direction: column;

    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-md);

    background-color: var(--hp-white);

    box-shadow: var(--hp-shadow-card);
}


/* =========================================================
   Step image
   ========================================================= */

.healpath-home .hp-process .hp-step__media {
    position: relative;

    width: 100%;
    height: clamp(175px, 14vw, 190px);
    flex: 0 0 auto;

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

.healpath-home .hp-process .hp-step__media > p {
    width: 100%;
    height: 100%;

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

.healpath-home .hp-process .hp-step__media img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

    margin: 0 !important;

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


/* =========================================================
   Step body
   ========================================================= */

.healpath-home .hp-process .hp-step__body {
    display: flex !important;
    min-height: 0;
    flex: 1;
    flex-direction: column;

    margin: 0 !important;
    padding: 22px 24px 24px !important;
}

.healpath-home .hp-process .hp-step__title {
    margin: 0 0 12px !important;
    padding: 0 !important;

    color: var(--hp-text) !important;

    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.healpath-home .hp-process .hp-step__text {
    margin: 0 0 18px !important;
    padding: 0 !important;

    color: var(--hp-muted) !important;

    font-size: 14px !important;
    line-height: 1.62 !important;
}


/* =========================================================
   Step number
   ========================================================= */

.healpath-home .hp-process .hp-step__number {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;

    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;

    margin: 0;
    padding: 0;

    border-radius: 50%;

    color: var(--hp-white);
    background-color: var(--hp-turquoise-500);

    font-size: 15px;
    font-weight: 800;
    line-height: 1;

    box-shadow:
        0 8px 18px rgba(17, 175, 203, 0.22);
}


/* =========================================================
   Step features
   ========================================================= */

.healpath-home .hp-process .hp-step__features {
    display: grid;
    gap: 10px;

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

    list-style: none !important;
}

.healpath-home .hp-process .hp-step__features li {
    position: relative;

    margin: 0 !important;
    padding: 0 0 0 22px !important;

    color: var(--hp-text);

    font-size: 13px;
    line-height: 1.5;

    list-style: none !important;
}

.healpath-home .hp-process .hp-step__features li::before {
    content: "\2713";

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

    color: var(--hp-success);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}


/* =========================================================
   Step connectors
   ========================================================= */

.healpath-home
.hp-process
.step-connector-hp.hp-step__connector {
    position: relative !important;

    display: block !important;
    width: 44px !important;
    min-width: 44px !important;
    height: auto !important;
    min-height: 0 !important;

    align-self: stretch !important;

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

    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/*
 * A single SVG draws both the line and arrowhead.
 * This prevents conflicts between old ::before and ::after rules.
 */
.healpath-home
.hp-process
.step-connector-hp.hp-step__connector::before {
    content: "" !important;

    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;

    display: block !important;
    width: 30px !important;
    height: 18px !important;

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

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

    background-color: transparent !important;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='18' viewBox='0 0 30 18' fill='none'%3E%3Cpath d='M2 9H26M20 3L26 9L20 15' stroke='%2311AFCB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;

    opacity: 1 !important;

    transform: translate(-50%, -50%) !important;
}

.healpath-home
.hp-process
.step-connector-hp.hp-step__connector::after {
    content: none !important;
    display: none !important;
}

.healpath-home
.hp-process
.step-connector-hp.hp-step__connector
.connector-line-hp {
    display: none !important;
}


/* =========================================================
   Final step
   ========================================================= */

.healpath-home .hp-process .hp-step--final {
    border-color: rgba(47, 179, 109, 0.72);
}

.healpath-home
.hp-process
.hp-step--final
.hp-step__number {
    background-color: var(--hp-success);

    box-shadow:
        0 8px 18px rgba(47, 179, 109, 0.22);
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .healpath-home .hp-process .hp-process__grid {
        grid-template-columns: minmax(0, 1fr) !important;

        max-width: 620px;
    }

    .healpath-home .hp-process .hp-step {
        min-height: 0;
    }

    .healpath-home
    .hp-process
    .step-connector-hp.hp-step__connector {
        display: none !important;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-process__header {
        margin-bottom: 30px;
    }

    .healpath-home .hp-process .hp-step__media {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .healpath-home .hp-process .hp-step__body {
        padding: 20px !important;
    }

    .healpath-home .hp-process .hp-step__number {
        top: 14px;
        left: 14px;

        width: 42px;
        height: 42px;

        font-size: 14px;
    }

    .healpath-home .hp-process .hp-step__title {
        font-size: 16px !important;
    }

    .healpath-home .hp-process .hp-step__text,
    .healpath-home .hp-process .hp-step__features li {
        font-size: 13px !important;
    }
}

/* =========================================================
   Foundation of Modern Healthcare — top cards
   ========================================================= */

.healpath-home .hp-foundation {
    overflow: hidden;
}

.healpath-home .hp-foundation__header {
    margin-bottom: var(--hp-section-header-gap, 40px);
}


/* =========================================================
   Foundation grid
   ========================================================= */

.healpath-home
.hp-foundation
.primary-grid-hp.hp-foundation__grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: var(--hp-grid-gap, 24px);

    width: 100%;
    max-width: 1160px;

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


/* =========================================================
   Foundation card
   ========================================================= */

.healpath-home
.hp-foundation
.primary-card-hp.hp-foundation-card {
    position: relative;

    display: flex !important;
    width: auto !important;
    min-width: 0;
    height: 100%;
    flex-direction: column;

    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-md);

    background-color: var(--hp-white);
    box-shadow: var(--hp-shadow-card);
}


/* =========================================================
   Card media
   ========================================================= */

.healpath-home
.hp-foundation
.primary-img-hp.hp-foundation-card__media {
    position: relative;

    width: 100%;
    aspect-ratio: 2 / 1;
    flex: 0 0 auto;

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

.healpath-home
.hp-foundation
.primary-img-hp.hp-foundation-card__media img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

    margin: 0 !important;

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


/* =========================================================
   Card body
   The icon is absolutely anchored to this body, while the
   top padding reserves a stable title area below the icon.
   ========================================================= */

.healpath-home
.hp-foundation
.primary-content-hp.hp-foundation-card__body {
    position: relative !important;

    display: flex !important;
    min-height: 245px;
    flex: 1 1 auto;
    flex-direction: column;

    margin: 0 !important;
    padding: 46px 24px 26px !important;

    background-color: var(--hp-white);
}


/* =========================================================
   Floating icon
   ========================================================= */

.healpath-home
.hp-foundation
.primary-content-hp.hp-foundation-card__body
> .primary-icon-hp.hp-foundation-card__icon {
    position: absolute !important;
    top: calc(var(--hp-card-icon-size) / -2) !important;
    right: auto !important;
    bottom: auto !important;
    left: 24px !important;
    z-index: 3;

    display: grid !important;
    box-sizing: border-box !important;
    width: var(--hp-card-icon-size) !important;
    height: var(--hp-card-icon-size) !important;
    min-width: var(--hp-card-icon-size) !important;
    min-height: var(--hp-card-icon-size) !important;
    place-items: center !important;
    float: none !important;

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

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

    color: var(--hp-white) !important;
    background: var(--hp-turquoise-500) !important;

    font-size: var(--hp-card-icon-font-size) !important;
    line-height: 1 !important;

    box-shadow:
        0 10px 22px rgba(17, 175, 203, 0.22) !important;

    transform: none !important;
}

/* Disable the legacy icon rendered by primary-icon-hp. */
.healpath-home
.hp-foundation
.primary-content-hp.hp-foundation-card__body
> .primary-icon-hp.hp-foundation-card__icon::before,
.healpath-home
.hp-foundation
.primary-content-hp.hp-foundation-card__body
> .primary-icon-hp.hp-foundation-card__icon::after {
    content: none !important;
    display: none !important;
}

.healpath-home
.hp-foundation
.primary-content-hp.hp-foundation-card__body
> .primary-icon-hp.hp-foundation-card__icon
> i {
    position: static !important;

    display: block !important;
    width: auto !important;
    height: auto !important;

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

    color: inherit !important;

    font-size: var(--hp-card-icon-font-size) !important;
    line-height: 1 !important;

    transform: none !important;
}


/* =========================================================
   Card typography
   ========================================================= */

.healpath-home
.hp-foundation
.primary-content-hp.hp-foundation-card__body
> .hp-foundation-card__title {
    position: static !important;

    display: block !important;
    width: 100%;
    min-height: 46px;
    float: none !important;

    margin: 0 0 10px !important;
    padding: 0 !important;

    color: var(--hp-text) !important;

    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;

    transform: none !important;
}

.healpath-home
.hp-foundation
.primary-content-hp.hp-foundation-card__body
> .hp-foundation-card__text {
    display: block !important;
    width: 100%;

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

    color: var(--hp-muted) !important;

    font-size: 14px !important;
    line-height: 1.65 !important;
}


/* =========================================================
   Foundation tablet
   ========================================================= */

@media (max-width: 991px) {
    .healpath-home
    .hp-foundation
    .primary-grid-hp.hp-foundation__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 760px;
    }

    .healpath-home
    .hp-foundation
    .primary-card-hp.hp-foundation-card:last-child {
        grid-column: 1 / -1;
        width: min(100%, 368px) !important;
        justify-self: center;
    }
}


/* =========================================================
   Foundation mobile
   ========================================================= */

@media (max-width: 767px) {
    .healpath-home .hp-foundation__header {
        margin-bottom: 30px;
    }

    .healpath-home
    .hp-foundation
    .primary-grid-hp.hp-foundation__grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 430px;
    }

    .healpath-home
    .hp-foundation
    .primary-card-hp.hp-foundation-card:last-child {
        grid-column: auto;
        width: auto !important;
    }

    .healpath-home
    .hp-foundation
    .primary-content-hp.hp-foundation-card__body {
        min-height: 0;
        padding: 42px 20px 22px !important;
    }

    .healpath-home
    .hp-foundation
    .primary-content-hp.hp-foundation-card__body
    > .primary-icon-hp.hp-foundation-card__icon {
        top: calc(var(--hp-card-icon-size) / -2) !important;
        left: 20px !important;

        width: var(--hp-card-icon-size) !important;
        height: var(--hp-card-icon-size) !important;
        min-width: var(--hp-card-icon-size) !important;
        min-height: var(--hp-card-icon-size) !important;

        border-radius: 13px !important;
    }

    .healpath-home
    .hp-foundation
    .primary-content-hp.hp-foundation-card__body
    > .primary-icon-hp.hp-foundation-card__icon
    > i {
        font-size: var(--hp-card-icon-font-size) !important;
    }

    .healpath-home
    .hp-foundation
    .primary-content-hp.hp-foundation-card__body
    > .hp-foundation-card__title {
        min-height: 0;
        font-size: 16px !important;
    }

    .healpath-home
    .hp-foundation
    .primary-content-hp.hp-foundation-card__body
    > .hp-foundation-card__text {
        font-size: 13px !important;
    }
}

/* =========================================================
   Foundation — Mission and Vision
   ========================================================= */

/*
 * The top cards and Mission/Vision belong to the same visual
 * section, so avoid applying two full section spacings.
 */
.healpath-home .hp-foundation {
    padding-bottom: clamp(30px, 3vw, 42px) !important;
}

.healpath-home .hp-foundation-mv-row {
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: var(--hp-section-space, 88px) !important;

    background-color: var(--hp-white) !important;
}

.healpath-home .hp-foundation-mv-row .section-hp,
.healpath-home .hp-foundation-mv-row .wpb_text_column,
.healpath-home .hp-foundation-mv-row .wpb_wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.healpath-home .hp-foundation-mv-row .section-hp {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   Grid
   ========================================================= */

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlights {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: var(--hp-grid-gap, 24px);

    width: 100%;
    max-width: 1040px;

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


/* =========================================================
   Shared card
   ========================================================= */

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight {
    position: relative;

    display: flex !important;
    min-width: 0;
    min-height: clamp(300px, 22vw, 340px);
    flex-direction: column;

    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    border: 0;
    border-radius: var(--hp-radius-md, 20px);

    background-color: var(--hp-navy-900, #071847);

    box-shadow: var(--hp-shadow-card);
}


/* =========================================================
   Background image and overlay
   ========================================================= */

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__media {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

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

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__media img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

    margin: 0 !important;

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

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}


/* Mission color */
.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight--mission
.hp-foundation-highlight__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 181, 204, 0.97) 0%,
            rgba(0, 178, 201, 0.90) 48%,
            rgba(0, 166, 190, 0.72) 100%
        );
}


/* Vision color */
.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight--vision
.hp-foundation-highlight__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 28, 78, 0.97) 0%,
            rgba(12, 42, 101, 0.91) 55%,
            rgba(20, 58, 125, 0.78) 100%
        );
}


/* =========================================================
   Content
   ========================================================= */

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__content {
    position: relative;
    z-index: 1;

    display: flex !important;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    margin: 0 !important;
    padding: clamp(28px, 3vw, 40px) !important;

    color: var(--hp-white) !important;
}


/* =========================================================
   Icon
   ========================================================= */

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__icon {
    position: static !important;

    display: grid !important;
    width: 44px !important;
    height: 44px !important;
    place-items: center;
    flex: 0 0 44px;

    margin: 0 0 18px !important;
    padding: 0 !important;

    border: 3px solid rgba(255, 255, 255, 0.95) !important;
    border-radius: 50% !important;

    color: var(--hp-white) !important;
    background: transparent !important;

    box-shadow: none !important;
    transform: none !important;
}


/* Disable legacy generated icons */
.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__icon::before,
.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__icon::after {
    content: none !important;
    display: none !important;
}

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__icon i {
    position: static !important;

    display: block !important;

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

    color: inherit !important;

    font-size: 17px !important;
    line-height: 1 !important;

    transform: none !important;
}


/* =========================================================
   Label
   ========================================================= */

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__label {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    justify-content: center;

    margin: 0 0 14px !important;
    padding: 0 14px !important;

    border-radius: var(--hp-radius-pill, 999px);

    color: var(--hp-white) !important;
    background: rgba(255, 255, 255, 0.14);

    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}


/* =========================================================
   Typography
   ========================================================= */

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__title {
    max-width: 470px;

    margin: 0 0 14px !important;
    padding: 0 !important;

    color: var(--hp-white) !important;

    font-size: clamp(20px, 1.8vw, 26px) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__text {
    max-width: 490px;

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

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

    font-size: 14px !important;
    line-height: 1.65 !important;
}


/* Remove WordPress paragraph margins */
.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__content > p {
    margin-top: 0 !important;
}

.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlight__content > p:last-child {
    margin-bottom: 0 !important;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlights {
        max-width: 760px;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight {
        min-height: 330px;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__content {
        padding: 28px !important;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-foundation {
        padding-bottom: 30px !important;
    }

    .healpath-home .hp-foundation-mv-row {
        padding-bottom: var(--hp-section-space, 72px) !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlights {
        grid-template-columns: minmax(0, 1fr);

        max-width: 430px;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight {
        min-height: 300px;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__content {
        justify-content: flex-end;

        padding: 24px !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__icon {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px;

        margin-bottom: 16px !important;

        border-width: 2px !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__icon i {
        font-size: 15px !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__title {
        font-size: 20px !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__text {
        font-size: 13px !important;
    }
}

/* =========================================================
   Primary Care — unified top and bottom rows
   ========================================================= */

/* Same background for both rows */
.healpath-home .hp-foundation,
.healpath-home .hp-foundation-mv-row {
    background-color: var(--hp-bg-light, #f5f8fb) !important;
}

/*
 * Treat both WPBakery rows as one visual section:
 * the upper row owns the top spacing,
 * and the lower row owns the bottom spacing.
 */
.healpath-home .hp-foundation {
    padding-bottom: 0 !important;
}

.healpath-home .hp-foundation-mv-row {
    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding-top: clamp(34px, 3vw, 46px) !important;
    padding-bottom: var(--hp-section-space, 88px) !important;

    border: 0 !important;
}

/* Remove possible WPBakery spacing between both rows */
.healpath-home .hp-foundation-mv-row > .vc_column_container,
.healpath-home .hp-foundation-mv-row .vc_column-inner,
.healpath-home .hp-foundation-mv-row .section-hp,
.healpath-home .hp-foundation-mv-row .wpb_text_column {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.healpath-home .hp-foundation-mv-row .section-hp {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* Same total width as the upper three-card row */
.healpath-home
.hp-foundation-mv-row
.hp-foundation-highlights {
    width: 100%;
    max-width: 1160px;

    margin-inline: auto !important;

    gap: var(--hp-grid-gap, 24px);
}


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

    .healpath-home .hp-foundation-mv-row {
        padding-top: 36px !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlights {
        max-width: 760px;
    }
}


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

    .healpath-home .hp-foundation-mv-row {
        padding-top: 30px !important;
        padding-bottom: var(--hp-section-space, 72px) !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlights {
        max-width: 430px;
    }
}

/* =========================================================
   Our Impact
   ========================================================= */

.healpath-home .hp-impact {
    overflow: hidden;

    background-color: var(--hp-white) !important;
}

.healpath-home .hp-impact__header {
    margin-bottom: clamp(34px, 3vw, 42px);
}


/* =========================================================
   Impact grid
   ========================================================= */

.healpath-home
.hp-impact
.stats-grid-hp.hp-impact__grid {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
    gap: 16px;

    width: 100%;
    max-width: 1160px;

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


/* =========================================================
   Impact card
   ========================================================= */

.healpath-home
.hp-impact
.stat-card-hp.hp-impact-card {
    position: relative;

    display: flex !important;
    min-width: 0;
    min-height: 220px;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    margin: 0 !important;
    padding: 28px 16px 24px !important;
    overflow: hidden;

    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-md);

    color: var(--hp-text);
    background-color: var(--hp-white);

    text-align: center;

    box-shadow: var(--hp-shadow-card);

    transform: none !important;
}


/* =========================================================
   Impact icon
   ========================================================= */

.healpath-home
.hp-impact
.stat-icon-hp.hp-impact-card__icon {
    position: static !important;

    display: grid !important;
    width: 52px !important;
    height: 52px !important;
    place-items: center;
    flex: 0 0 52px;

    margin: 0 0 18px !important;
    padding: 0 !important;

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

    color: var(--hp-turquoise-500) !important;
    background-color: var(--hp-turquoise-050) !important;

    box-shadow: none !important;

    transform: none !important;
}

/* Disable legacy generated icons */
.healpath-home
.hp-impact
.stat-icon-hp.hp-impact-card__icon::before,
.healpath-home
.hp-impact
.stat-icon-hp.hp-impact-card__icon::after {
    content: none !important;
    display: none !important;
}

.healpath-home
.hp-impact
.hp-impact-card__icon i {
    position: static !important;

    display: block !important;

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

    color: inherit !important;

    font-size: 20px !important;
    line-height: 1 !important;

    transform: none !important;
}


/* =========================================================
   Impact content
   ========================================================= */

.healpath-home
.hp-impact
.hp-impact-card__content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    align-items: center;

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

.healpath-home
.hp-impact
.hp-impact-card__number {
    margin: 0 0 10px !important;
    padding: 0 !important;

    color: var(--hp-text) !important;

    font-size: clamp(26px, 2vw, 32px) !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -0.025em;
}

.healpath-home
.hp-impact
.hp-impact-card__label {
    max-width: 145px;

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

    color: var(--hp-muted) !important;

    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
}


/* =========================================================
   Highlight card
   ========================================================= */

.healpath-home
.hp-impact
.hp-impact-card--highlight {
    border-color: transparent !important;

    color: var(--hp-white) !important;
    background:
        linear-gradient(
            180deg,
            var(--hp-turquoise-500) 0%,
            #069db7 100%
        ) !important;

    box-shadow:
        0 18px 34px rgba(17, 175, 203, 0.24) !important;
}

.healpath-home
.hp-impact
.hp-impact-card--highlight
.hp-impact-card__icon {
    color: var(--hp-white) !important;
    background-color: rgba(255, 255, 255, 0.18) !important;
}

.healpath-home
.hp-impact
.hp-impact-card--highlight
.hp-impact-card__number,
.healpath-home
.hp-impact
.hp-impact-card--highlight
.hp-impact-card__label {
    color: var(--hp-white) !important;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1199px) {

    .healpath-home
    .hp-impact
    .stats-grid-hp.hp-impact__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        max-width: 760px;
    }

    .healpath-home
    .hp-impact
    .stat-card-hp.hp-impact-card {
        min-height: 205px;
    }
}


/* =========================================================
   Small tablet
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-impact__header {
        margin-bottom: 30px;
    }

    .healpath-home
    .hp-impact
    .stats-grid-hp.hp-impact__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        max-width: 430px;
        gap: 14px;
    }

    .healpath-home
    .hp-impact
    .stat-card-hp.hp-impact-card {
        min-height: 190px;

        padding: 22px 14px 20px !important;
    }

    .healpath-home
    .hp-impact
    .stat-icon-hp.hp-impact-card__icon {
        width: 48px !important;
        height: 48px !important;
        flex-basis: 48px;

        margin-bottom: 16px !important;

        border-radius: 13px !important;
    }

    .healpath-home
    .hp-impact
    .hp-impact-card__icon i {
        font-size: 18px !important;
    }

    .healpath-home
    .hp-impact
    .hp-impact-card__number {
        font-size: 25px !important;
    }

    .healpath-home
    .hp-impact
    .hp-impact-card__label {
        font-size: 12px !important;
    }
}


/* =========================================================
   Small mobile
   ========================================================= */

@media (max-width: 420px) {

    .healpath-home
    .hp-impact
    .stats-grid-hp.hp-impact__grid {
        grid-template-columns: minmax(0, 1fr);

        max-width: 300px;
    }

    .healpath-home
    .hp-impact
    .stat-card-hp.hp-impact-card {
        min-height: 180px;
    }
}

/* =========================================================
   Compliance & Certifications
   ========================================================= */

.healpath-home .hp-certifications {
    position: relative;

    margin: 0 !important;
    padding: clamp(38px, 4vw, 54px) 0 !important;
    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            var(--hp-navy-950, #061443) 0%,
            var(--hp-navy-800, #0b2d72) 58%,
            var(--hp-blue-700, #0e58aa) 100%
        ) !important;
}

.healpath-home .hp-certifications::before,
.healpath-home .hp-certifications::after {
    content: none !important;
    display: none !important;
}


/* Remove WPBakery spacing */
.healpath-home .hp-certifications > .vc_column_container,
.healpath-home .hp-certifications .vc_column-inner,
.healpath-home .hp-certifications .wpb_text_column,
.healpath-home .hp-certifications .wpb_wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.healpath-home .hp-certifications .cert-section-hp {
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================================
   Inner wrapper
   ========================================================= */

.healpath-home .hp-certifications__inner {
    width: 100%;
    max-width: 1160px;

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

    text-align: center;
}


/* =========================================================
   Title
   ========================================================= */

.healpath-home .hp-certifications__title {
    margin: 0 0 24px !important;
    padding: 0 !important;

    color: var(--hp-white, #ffffff) !important;

    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    text-align: center;
}


/* =========================================================
   Certification list
   ========================================================= */

.healpath-home .hp-certifications__list {
    display: flex !important;
    width: 100%;
    max-width: 1080px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 16px;

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


/* =========================================================
   Certification item
   ========================================================= */

.healpath-home
.hp-certifications
.cert-item-hp.hp-certifications__item {
    display: inline-flex !important;
    min-height: 42px;
    width: auto !important;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 0 1 auto;

    margin: 0 !important;
    padding: 0 18px !important;

    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: var(--hp-radius-pill, 999px) !important;

    color: var(--hp-white, #ffffff) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;

    box-shadow: none !important;

    opacity: 1 !important;
    transform: none !important;
}


/* Disable old generated icons */
.healpath-home
.hp-certifications
.cert-item-hp.hp-certifications__item::before,
.healpath-home
.hp-certifications
.cert-item-hp.hp-certifications__item::after {
    content: none !important;
    display: none !important;
}


/* =========================================================
   Check icon
   ========================================================= */

.healpath-home .hp-certifications__icon {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    flex: 0 0 20px;

    margin: 0;
    padding: 0;

    border-radius: 50%;

    color: var(--hp-white, #ffffff);
    background-color: var(--hp-turquoise-500, #11afcb);

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

.healpath-home .hp-certifications__icon i {
    display: block;

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

    color: inherit !important;

    font-size: inherit !important;
    line-height: 1 !important;
}


/* =========================================================
   Item text
   ========================================================= */

.healpath-home .hp-certifications__text {
    min-width: 0;

    color: inherit;

    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    white-space: nowrap;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .healpath-home .hp-certifications__inner {
        max-width: 760px;
    }

    .healpath-home .hp-certifications__list {
        max-width: 720px;
    }

    .healpath-home
    .hp-certifications
    .cert-item-hp.hp-certifications__item {
        min-height: 44px;

        padding-inline: 16px !important;
    }

    .healpath-home .hp-certifications__text {
        white-space: normal;
    }
}


/* =========================================================
   Compliance & Certifications — Mobile
   Centered auto-width pills
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-certifications {
        padding: 30px 0 32px !important;
    }

    .healpath-home .hp-certifications__inner {
        width: 100%;
        max-width: 430px;

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

    .healpath-home .hp-certifications__title {
        max-width: 320px;

        margin: 0 auto 20px !important;

        font-size: 15px !important;
        line-height: 1.4 !important;
        text-align: center;
    }

    .healpath-home .hp-certifications__list {
        display: flex !important;
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;

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

    .healpath-home
    .hp-certifications
    .cert-item-hp.hp-certifications__item {
        display: inline-flex !important;
        width: fit-content !important;
        min-width: 0 !important;
        max-width: 100%;
        min-height: 40px;

        align-items: center;
        justify-content: center;
        gap: 8px;

        margin: 0 auto !important;
        padding: 8px 14px !important;

        border-color: rgba(255, 255, 255, 0.16) !important;

        text-align: center;
    }

    .healpath-home .hp-certifications__icon {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;

        font-size: 8px;
    }

    .healpath-home .hp-certifications__text {
        width: auto;
        min-width: 0;

        font-size: 10.5px !important;
        line-height: 1.4 !important;
        white-space: normal;

        overflow-wrap: break-word;
    }
}

/* =========================================================
   Testimonial
   ========================================================= */

.healpath-home .hp-testimonial {
    overflow: hidden;

    background-color: var(--hp-bg-light, #f6f9fc) !important;
}


/* Remove old WPBakery spacing */
.healpath-home .hp-testimonial > .vc_column_container,
.healpath-home .hp-testimonial .vc_column-inner,
.healpath-home .hp-testimonial .wpb_text_column,
.healpath-home .hp-testimonial .section-hp {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.healpath-home .hp-testimonial .section-hp {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   Layout
   ========================================================= */

.healpath-home
.hp-testimonial
.testimonial-wrapper-hp.hp-testimonial__layout {
    display: grid !important;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(54px, 6vw, 92px);

    width: 100%;
    max-width: 1160px;

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

    opacity: 1 !important;
    transform: none !important;
}


/* =========================================================
   Media
   ========================================================= */

.healpath-home .hp-testimonial__media {
    min-width: 0;

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

.healpath-home .hp-testimonial__figure {
    width: 100%;
    aspect-ratio: 1.3 / 1;

    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    border-radius: var(--hp-radius-md, 20px);

    background-color: var(--hp-white);

    box-shadow: var(--hp-shadow-card);
}

.healpath-home .hp-testimonial__figure img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

    margin: 0 !important;

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


/* =========================================================
   Experience
   ========================================================= */

.healpath-home .hp-testimonial__experience {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;

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

.healpath-home .hp-testimonial__experience-number {
    display: block;

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

    color: var(--hp-text);

    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.healpath-home .hp-testimonial__experience-label {
    display: block;

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

    color: var(--hp-muted);

    font-size: 12px !important;
    line-height: 1.4 !important;
}


/* =========================================================
   Testimonial content
   ========================================================= */

.healpath-home .hp-testimonial__content {
    display: flex !important;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;

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


/* =========================================================
   Quote icon
   ========================================================= */

.healpath-home
.hp-testimonial
.quote-icon-hp.hp-testimonial__quote-icon {
    position: static !important;

    display: flex !important;
    width: auto !important;
    height: auto !important;
    align-items: center;
    justify-content: flex-start;

    margin: 0 0 24px !important;
    padding: 0 !important;

    color: var(--hp-turquoise-300, #8ce4ef) !important;
    background: transparent !important;

    box-shadow: none !important;
    transform: none !important;
}

.healpath-home
.hp-testimonial
.hp-testimonial__quote-icon::before,
.healpath-home
.hp-testimonial
.hp-testimonial__quote-icon::after {
    content: none !important;
    display: none !important;
}

.healpath-home .hp-testimonial__quote-icon i {
    display: block;

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

    color: inherit !important;

    font-size: 42px !important;
    line-height: 1 !important;
}


/* =========================================================
   Quote
   ========================================================= */

.healpath-home
.hp-testimonial
.testimonial-quote-hp.hp-testimonial__quote {
    max-width: 600px;

    margin: 0 0 32px !important;
    padding: 0 !important;

    border: 0 !important;
    background: transparent !important;
}

.healpath-home .hp-testimonial__quote p {
    margin: 0 !important;
    padding: 0 !important;

    color: var(--hp-text) !important;

    font-size: clamp(20px, 1.8vw, 25px) !important;
    font-style: italic;
    font-weight: 500 !important;
    line-height: 1.65 !important;
}


/* =========================================================
   Author
   ========================================================= */

.healpath-home .hp-testimonial__author {
    display: flex !important;
    align-items: center;
    gap: 14px;

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

.healpath-home .hp-testimonial__avatar {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;

    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    border: 2px solid var(--hp-white);
    border-radius: 50%;

    box-shadow: 0 5px 14px rgba(7, 24, 71, 0.12);
}

.healpath-home .hp-testimonial__avatar img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

    margin: 0 !important;

    object-fit: cover;
}

.healpath-home .hp-testimonial__author-info {
    min-width: 0;

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

.healpath-home .hp-testimonial__author-name {
    margin: 0 0 3px !important;
    padding: 0 !important;

    color: var(--hp-text) !important;

    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.healpath-home .hp-testimonial__author-location {
    margin: 0 !important;
    padding: 0 !important;

    color: var(--hp-muted) !important;

    font-size: 12px !important;
    line-height: 1.4 !important;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .healpath-home
    .hp-testimonial
    .testimonial-wrapper-hp.hp-testimonial__layout {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(0, 1.1fr);
        gap: 42px;

        max-width: 760px;
    }

    .healpath-home .hp-testimonial__quote p {
        font-size: 19px !important;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home
    .hp-testimonial
    .testimonial-wrapper-hp.hp-testimonial__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;

        max-width: 430px;
    }

    .healpath-home .hp-testimonial__figure {
        aspect-ratio: 4 / 3;
    }

    .healpath-home .hp-testimonial__experience {
        margin-top: 12px !important;
    }

    .healpath-home .hp-testimonial__quote-icon {
        margin-bottom: 16px !important;
    }

    .healpath-home .hp-testimonial__quote-icon i {
        font-size: 34px !important;
    }

    .healpath-home .hp-testimonial__quote {
        margin-bottom: 24px !important;
    }

    .healpath-home .hp-testimonial__quote p {
        font-size: 18px !important;
        line-height: 1.6 !important;
    }

    .healpath-home .hp-testimonial__avatar {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .healpath-home .hp-testimonial__author-name {
        font-size: 14px !important;
    }
}

/* =========================================================
   Contact Us
   ========================================================= */

.healpath-home .hp-contact {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            105deg,
            var(--hp-navy-950, #061443) 0%,
            var(--hp-navy-800, #123b82) 55%,
            var(--hp-blue-700, #1767bd) 100%
        ) !important;
}


/* Subtle decorative background */
.healpath-home .hp-contact::before,
.healpath-home .hp-contact::after {
    content: "";

    position: absolute;
    z-index: 0;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(17, 175, 203, 0.13) 0%,
            rgba(17, 175, 203, 0) 70%
        );

    pointer-events: none;
}

.healpath-home .hp-contact::before {
    top: -70px;
    left: -55px;
}

.healpath-home .hp-contact::after {
    top: -45px;
    right: -45px;
}


/* Keep content above decorations */
.healpath-home .hp-contact .hp-container {
    position: relative;
    z-index: 1;
}


/* Remove WPBakery margins */
.healpath-home .hp-contact > .vc_column_container,
.healpath-home .hp-contact .vc_column-inner,
.healpath-home .hp-contact .wpb_text_column,
.healpath-home .hp-contact .section-hp {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.healpath-home .hp-contact .section-hp {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   Section header
   ========================================================= */

.healpath-home .hp-contact__header {
    margin-bottom: clamp(36px, 3vw, 46px);
}

.healpath-home .hp-contact__title {
    color: var(--hp-white) !important;
}

.healpath-home .hp-contact__description {
    color: rgba(255, 255, 255, 0.82) !important;
}


/* =========================================================
   Contact grid
   ========================================================= */

.healpath-home
.hp-contact
.contact-grid-hp.hp-contact__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;

    width: 100%;
    max-width: 1160px;

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


/* =========================================================
   Contact card
   ========================================================= */

.healpath-home
.hp-contact
.contact-card-hp.hp-contact-card {
    display: flex !important;
    min-width: 0;
    min-height: 330px;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;

    margin: 0 !important;
    padding: 28px 24px !important;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--hp-radius-md);

    color: var(--hp-white);
    background-color: rgba(255, 255, 255, 0.075);

    box-shadow:
        0 16px 34px rgba(2, 17, 58, 0.16);

    backdrop-filter: blur(3px);

    opacity: 1 !important;
    transform: none !important;
}


/* =========================================================
   Card icon
   ========================================================= */

.healpath-home
.hp-contact
.contact-icon-hp.hp-contact-card__icon {
    position: static !important;

    display: grid !important;
    width: 52px !important;
    height: 52px !important;
    place-items: center;
    flex: 0 0 52px;

    margin: 0 0 22px !important;
    padding: 0 !important;

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

    color: var(--hp-turquoise-300, #7de5ef) !important;
    background-color: rgba(17, 175, 203, 0.18) !important;

    box-shadow: none !important;
    transform: none !important;
}


/* Disable legacy generated icons */
.healpath-home
.hp-contact
.hp-contact-card__icon::before,
.healpath-home
.hp-contact
.hp-contact-card__icon::after {
    content: none !important;
    display: none !important;
}

.healpath-home .hp-contact-card__icon i {
    position: static !important;

    display: block !important;

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

    color: inherit !important;

    font-size: 20px !important;
    line-height: 1 !important;

    transform: none !important;
}


/* =========================================================
   Card typography
   ========================================================= */

.healpath-home .hp-contact-card__title {
    margin: 0 0 18px !important;
    padding: 0 !important;

    color: var(--hp-white) !important;

    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.healpath-home .hp-contact-card__content {
    width: 100%;
    min-width: 0;

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

.healpath-home .hp-contact-card__content p {
    margin: 0 0 13px !important;
    padding: 0 !important;

    color: rgba(255, 255, 255, 0.78) !important;

    font-size: 13px !important;
    line-height: 1.6 !important;
}

.healpath-home .hp-contact-card__content p:last-child {
    margin-bottom: 0 !important;
}

.healpath-home .hp-contact-card__content strong {
    color: var(--hp-white);

    font-weight: 700;
}

.healpath-home .hp-contact-card__content a:not(.hp-contact-card__button) {
    color: rgba(255, 255, 255, 0.82) !important;

    overflow-wrap: anywhere;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.healpath-home
.hp-contact-card__content
a:not(.hp-contact-card__button):hover {
    color: var(--hp-turquoise-300, #7de5ef) !important;
}


/* =========================================================
   Request Demo button
   ========================================================= */

.healpath-home .hp-contact-card__button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;

    margin: 10px 0 0 !important;
    padding: 0 22px !important;

    border: 0;
    border-radius: var(--hp-radius-pill);

    color: var(--hp-navy-900, #071847) !important;
    background-color: var(--hp-white) !important;

    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    box-shadow:
        0 8px 20px rgba(2, 17, 58, 0.16);

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

.healpath-home .hp-contact-card__button:hover {
    color: var(--hp-navy-900, #071847) !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 24px rgba(2, 17, 58, 0.22);
}


/* =========================================================
   Capabilities list
   ========================================================= */

.healpath-home .hp-contact-card__list {
    display: grid;
    gap: 12px;

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

    list-style: none !important;
}

.healpath-home .hp-contact-card__list li {
    position: relative;

    margin: 0 !important;
    padding: 0 0 0 22px !important;

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

    font-size: 13px !important;
    line-height: 1.5 !important;

    list-style: none !important;
}

.healpath-home .hp-contact-card__list li::before {
    content: "\2713";

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

    color: var(--hp-success, #2fb36d);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .healpath-home
    .hp-contact
    .contact-grid-hp.hp-contact__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        max-width: 760px;
    }

    .healpath-home
    .hp-contact
    .contact-card-hp.hp-contact-card {
        min-height: 300px;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-contact__header {
        margin-bottom: 30px;
    }

    .healpath-home
    .hp-contact
    .contact-grid-hp.hp-contact__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;

        max-width: 430px;
    }

    .healpath-home
    .hp-contact
    .contact-card-hp.hp-contact-card {
        min-height: 0;

        padding: 22px 20px !important;
    }

    .healpath-home
    .hp-contact
    .contact-icon-hp.hp-contact-card__icon {
        width: 48px !important;
        height: 48px !important;
        flex-basis: 48px;

        margin-bottom: 18px !important;

        border-radius: 13px !important;
    }

    .healpath-home .hp-contact-card__icon i {
        font-size: 18px !important;
    }

    .healpath-home .hp-contact-card__title {
        margin-bottom: 14px !important;

        font-size: 16px !important;
    }

    .healpath-home .hp-contact-card__content p,
    .healpath-home .hp-contact-card__list li {
        font-size: 12.5px !important;
    }
}

/* =========================================================
   FAQ
   ========================================================= */

.healpath-home .hp-faq {
    overflow: hidden;

    background-color: var(--hp-bg-light, #f6f9fc) !important;
}

/* Remove old WPBakery spacing */
.healpath-home .hp-faq > .vc_column_container,
.healpath-home .hp-faq .vc_column-inner,
.healpath-home .hp-faq .wpb_text_column,
.healpath-home .hp-faq .section-hp {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.healpath-home .hp-faq .section-hp {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   Section header
   ========================================================= */

.healpath-home .hp-faq__header {
    margin-bottom: clamp(38px, 4vw, 52px);
}


/* =========================================================
   Main layout
   ========================================================= */

.healpath-home
.hp-faq
.faq-wrapper-hp.hp-faq__layout {
    display: grid !important;
    grid-template-columns:
        minmax(0, 0.86fr)
        minmax(0, 1.14fr);
    align-items: stretch;
    gap: clamp(48px, 6vw, 82px);

    width: 100%;
    max-width: 1160px;

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


/* =========================================================
   FAQ media
   ========================================================= */

.healpath-home .hp-faq__media {
    position: relative;

    min-width: 0;

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

.healpath-home .hp-faq__figure {
    width: 100%;
    height: 100%;
    min-height: 470px;

    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    border-radius: var(--hp-radius-md);

    background-color: var(--hp-white);

    box-shadow: var(--hp-shadow-card);
}

.healpath-home .hp-faq__figure img {
    display: block;

    width: 100%;
    height: 100%;
    max-width: none;

    margin: 0 !important;

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


/* =========================================================
   Need Help badge
   ========================================================= */

.healpath-home
.hp-faq
.faq-badge-hp.hp-faq__help-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;

    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin: 0 !important;
    padding: 0 20px !important;

    border-radius: 16px;

    color: var(--hp-text) !important;
    background-color: var(--hp-white) !important;

    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1 !important;

    box-shadow:
        0 12px 28px rgba(7, 24, 71, 0.14);
}

.healpath-home .hp-faq__help-icon {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    flex: 0 0 24px;

    border-radius: 50%;

    color: var(--hp-white);
    background-color: var(--hp-turquoise-500);

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


/* =========================================================
   FAQ list
   ========================================================= */

.healpath-home .hp-faq__list {
    display: flex !important;
    min-width: 0;
    flex-direction: column;
    gap: 14px;

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


/* =========================================================
   FAQ item
   ========================================================= */

.healpath-home
.hp-faq
.faq-item-hp.hp-faq__item {
    position: relative;

    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;

    border: 1px solid var(--hp-border);
    border-radius: 18px;

    background-color: var(--hp-white);

    box-shadow:
        0 8px 24px rgba(7, 24, 71, 0.045);

    opacity: 1 !important;
    transform: none !important;
}

.healpath-home
.hp-faq
.faq-item-hp.hp-faq__item.active {
    border-color: var(--hp-turquoise-500);

    box-shadow:
        0 12px 28px rgba(17, 175, 203, 0.09);
}


/* =========================================================
   Question header
   ========================================================= */

.healpath-home
.hp-faq
.faq-header-hp.hp-faq__question {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) 38px;
    align-items: center;
    gap: 16px;

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

    margin: 0 !important;
    padding: 18px 20px !important;

    cursor: pointer;

    outline: none;
}

.healpath-home
.hp-faq
.hp-faq__question:focus-visible {
    box-shadow:
        inset 0 0 0 3px rgba(17, 175, 203, 0.18);
}


/* Remove old paragraph spacing */
.healpath-home .hp-faq__question > p {
    display: contents;

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


/* =========================================================
   Question number
   ========================================================= */

.healpath-home
.hp-faq
.faq-num-hp.hp-faq__number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    flex: 0 0 42px;

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

    border-radius: 50%;

    color: var(--hp-white);
    background-color: var(--hp-turquoise-500);

    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}


/* =========================================================
   Question title
   ========================================================= */

.healpath-home .hp-faq__question-title {
    margin: 0 !important;
    padding: 0 !important;

    color: var(--hp-text) !important;

    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
}


/* =========================================================
   Plus / minus toggle
   ========================================================= */

.healpath-home
.hp-faq
.faq-toggle-hp.hp-faq__toggle {
    position: relative !important;

    display: grid !important;
    width: 38px !important;
    height: 38px !important;
    place-items: center;
    justify-self: end;

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

    border-radius: 50%;

    color: var(--hp-turquoise-500);
    background-color: var(--hp-turquoise-050);

    transform: none !important;
}

.healpath-home .hp-faq__toggle::before,
.healpath-home .hp-faq__toggle::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 12px;
    height: 2px;

    border-radius: 999px;

    background-color: currentColor;

    transform: translate(-50%, -50%);
}

.healpath-home .hp-faq__toggle::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);
}

.healpath-home
.hp-faq__item.active
.hp-faq__toggle {
    color: var(--hp-white);
    background-color: var(--hp-turquoise-500);
}

.healpath-home
.hp-faq__item.active
.hp-faq__toggle::after {
    opacity: 0;
}


/* =========================================================
   FAQ answer
   ========================================================= */

.healpath-home
.hp-faq
.faq-body-hp.hp-faq__answer {
    display: none;

    margin: 0 !important;
    padding: 0 20px 22px 78px !important;
}

.healpath-home
.hp-faq
.hp-faq__item.active
.hp-faq__answer {
    display: block;
}

.healpath-home .hp-faq__answer p {
    margin: 0 !important;
    padding: 0 !important;

    color: var(--hp-muted) !important;

    font-size: 14px !important;
    line-height: 1.65 !important;
}

.healpath-home .hp-faq__answer a {
    color: var(--hp-turquoise-600, #079bb4) !important;

    font-weight: 600;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .healpath-home
    .hp-faq
    .faq-wrapper-hp.hp-faq__layout {
        grid-template-columns:
            minmax(0, 0.8fr)
            minmax(0, 1.2fr);
        gap: 36px;

        max-width: 760px;
    }

    .healpath-home .hp-faq__figure {
        min-height: 440px;
    }

    .healpath-home .hp-faq__question {
        grid-template-columns: 38px minmax(0, 1fr) 34px;
        gap: 12px;

        min-height: 78px;

        padding: 16px !important;
    }

    .healpath-home .hp-faq__number {
        width: 38px !important;
        height: 38px !important;
    }

    .healpath-home .hp-faq__toggle {
        width: 34px !important;
        height: 34px !important;
    }

    .healpath-home .hp-faq__question-title {
        font-size: 15px !important;
    }

    .healpath-home .hp-faq__answer {
        padding:
            0 16px 20px 66px !important;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-faq__header {
        margin-bottom: 30px;
    }

    .healpath-home
    .hp-faq
    .faq-wrapper-hp.hp-faq__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;

        max-width: 430px;
    }

    .healpath-home .hp-faq__figure {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .healpath-home .hp-faq__help-badge {
        right: 14px;
        bottom: 14px;

        min-height: 46px;

        padding-inline: 16px !important;

        border-radius: 14px;

        font-size: 12px !important;
    }

    .healpath-home .hp-faq__question {
        grid-template-columns: 36px minmax(0, 1fr) 32px;
        gap: 10px;

        min-height: 72px;

        padding: 14px !important;
    }

    .healpath-home .hp-faq__number {
        width: 36px !important;
        height: 36px !important;

        font-size: 12px !important;
    }

    .healpath-home .hp-faq__toggle {
        width: 32px !important;
        height: 32px !important;
    }

    .healpath-home .hp-faq__question-title {
        font-size: 14px !important;
    }

    .healpath-home .hp-faq__answer {
        padding:
            0 14px 18px 60px !important;
    }

    .healpath-home .hp-faq__answer p {
        font-size: 13px !important;
    }
}

/* =========================================================
   FAQ — conflict and sizing fixes
   ========================================================= */

/* Keep the two columns aligned from the top */
.healpath-home
.hp-faq
.faq-wrapper-hp.hp-faq__layout {
    align-items: start;
}


/* =========================================================
   FAQ figure height
   ========================================================= */

.healpath-home .hp-faq__figure {
    width: 100%;
    height: clamp(400px, 29vw, 440px) !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
}

.healpath-home .hp-faq__figure img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;
}


/* =========================================================
   Remove duplicated Need Help icon
   ========================================================= */

.healpath-home
.hp-faq
.faq-badge-hp.hp-faq__help-badge::before,
.healpath-home
.hp-faq
.faq-badge-hp.hp-faq__help-badge::after {
    content: none !important;
    display: none !important;
}

.healpath-home .hp-faq__help-icon {
    display: grid !important;
    width: 24px !important;
    height: 24px !important;
    place-items: center;
    flex: 0 0 24px;

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

    border-radius: 50%;

    color: var(--hp-white) !important;
    background-color: var(--hp-turquoise-500) !important;
}

.healpath-home .hp-faq__help-icon i {
    display: block !important;

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

    color: inherit !important;

    font-size: 10px !important;
    line-height: 1 !important;
}


/* =========================================================
   FAQ toggle — use background icons only
   ========================================================= */

.healpath-home
.hp-faq
.faq-toggle-hp.hp-faq__toggle {
    position: relative !important;

    display: block !important;
    width: 38px !important;
    height: 38px !important;

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

    border: 0 !important;
    border-radius: 50% !important;

    color: var(--hp-turquoise-500) !important;
    background-color: var(--hp-turquoise-050) !important;

    /*
     * Plus icon created using two backgrounds.
     * This avoids conflicts with legacy pseudo-elements.
     */
    background-image:
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor) !important;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size:
        12px 2px,
        2px 12px !important;

    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px;

    box-shadow: none !important;
    transform: none !important;
}

/* Completely disable all old generated toggle icons */
.healpath-home
.hp-faq
.faq-toggle-hp.hp-faq__toggle::before,
.healpath-home
.hp-faq
.faq-toggle-hp.hp-faq__toggle::after {
    content: none !important;
    display: none !important;
}

/* Active state: minus only */
.healpath-home
.hp-faq
.hp-faq__item.active
.faq-toggle-hp.hp-faq__toggle {
    color: var(--hp-white) !important;
    background-color: var(--hp-turquoise-500) !important;

    background-image:
        linear-gradient(currentColor, currentColor) !important;

    background-size: 12px 2px !important;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .healpath-home .hp-faq__figure {
        height: 410px !important;
    }

    .healpath-home
    .hp-faq
    .faq-toggle-hp.hp-faq__toggle {
        width: 34px !important;
        height: 34px !important;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-faq__figure {
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 4 / 3 !important;
    }

    .healpath-home
    .hp-faq
    .faq-toggle-hp.hp-faq__toggle {
        width: 32px !important;
        height: 32px !important;

        background-size:
            11px 2px,
            2px 11px !important;
    }

    .healpath-home
    .hp-faq
    .hp-faq__item.active
    .faq-toggle-hp.hp-faq__toggle {
        background-size: 11px 2px !important;
    }
}

/* =========================================================
   Final CTA
   ========================================================= */

.healpath-home .hp-final-cta {
    position: relative;

    margin: 0 !important;
    padding: clamp(54px, 5vw, 72px) 0 !important;
    overflow: hidden;

    background:
        linear-gradient(
            100deg,
            #12b4c9 0%,
            var(--hp-turquoise-500, #11afcb) 52%,
            #0ca2b7 100%
        ) !important;
}


/* =========================================================
   Remove WPBakery spacing
   ========================================================= */

.healpath-home .hp-final-cta > .vc_column_container,
.healpath-home .hp-final-cta .vc-column-inner,
.healpath-home .hp-final-cta .vc_column-inner,
.healpath-home .hp-final-cta .wpb_text_column,
.healpath-home .hp-final-cta .section-hp,
.healpath-home .hp-final-cta .wpb_wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.healpath-home .hp-final-cta .section-hp {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* =========================================================
   Background decoration
   ========================================================= */

.healpath-home .hp-final-cta::before,
.healpath-home .hp-final-cta::after,
.healpath-home .hp-final-cta__decor::before,
.healpath-home .hp-final-cta__decor::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.08);

    pointer-events: none;
}

.healpath-home .hp-final-cta::before {
    bottom: -135px;
    left: -105px;

    width: 250px;
    height: 250px;
}

.healpath-home .hp-final-cta::after {
    top: -135px;
    right: -85px;

    width: 280px;
    height: 280px;
}

.healpath-home .hp-final-cta__decor {
    position: absolute;
    inset: 0;
    z-index: 0;

    display: block;

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

    pointer-events: none;
}

.healpath-home .hp-final-cta__decor::before {
    top: 22px;
    left: 18%;

    width: 135px;
    height: 135px;
}

.healpath-home .hp-final-cta__decor::after {
    top: 58px;
    right: 19%;

    width: 92px;
    height: 92px;
}


/* =========================================================
   CTA content
   ========================================================= */

.healpath-home .hp-final-cta .hp-container {
    position: relative;
    z-index: 1;
}

.healpath-home
.hp-final-cta
.cta-wrapper-hp.hp-final-cta__content {
    display: flex !important;
    width: 100%;
    max-width: 980px;
    flex-direction: column;
    align-items: center;

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

    text-align: center;
}


/* =========================================================
   Typography
   ========================================================= */

.healpath-home .hp-final-cta__title {
    max-width: 900px;

    margin: 0 0 14px !important;
    padding: 0 !important;

    color: var(--hp-white, #ffffff) !important;

    font-size: clamp(28px, 3vw, 38px) !important;
    font-weight: 700 !important;
    line-height: 1.22 !important;
    letter-spacing: -0.025em;
}

.healpath-home .hp-final-cta__description {
    max-width: 760px;

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

    color: rgba(255, 255, 255, 0.88) !important;

    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}


/* =========================================================
   CTA buttons
   ========================================================= */

.healpath-home
.hp-final-cta
.cta-buttons-hp.hp-final-cta__actions {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;

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

.healpath-home .hp-final-cta__button {
    display: inline-flex !important;
    min-width: 210px;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;

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

    border-radius: var(--hp-radius-pill, 999px) !important;

    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-decoration: none !important;

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

.healpath-home .hp-final-cta__button i {
    display: block;

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

    font-size: 14px !important;
    line-height: 1 !important;
}


/* Primary button */

.healpath-home .hp-final-cta__button--primary {
    border: 1px solid var(--hp-white, #ffffff) !important;

    color: var(--hp-navy-900, #071847) !important;
    background-color: var(--hp-white, #ffffff) !important;

    box-shadow:
        0 10px 24px rgba(3, 29, 74, 0.14);
}

.healpath-home .hp-final-cta__button--primary:hover {
    color: var(--hp-navy-900, #071847) !important;

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(3, 29, 74, 0.2);
}


/* Secondary button */

.healpath-home .hp-final-cta__button--secondary {
    border: 2px solid rgba(255, 255, 255, 0.72) !important;

    color: var(--hp-white, #ffffff) !important;
    background-color: transparent !important;

    box-shadow: none !important;
}

.healpath-home .hp-final-cta__button--secondary:hover {
    border-color: var(--hp-white, #ffffff) !important;

    color: var(--hp-navy-900, #071847) !important;
    background-color: var(--hp-white, #ffffff) !important;

    transform: translateY(-2px);
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .healpath-home .hp-final-cta {
        padding: 54px 0 !important;
    }

    .healpath-home .hp-final-cta__decor::before {
        left: 8%;
    }

    .healpath-home .hp-final-cta__decor::after {
        right: 8%;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-final-cta {
        padding: 42px 0 !important;
    }

    .healpath-home .hp-final-cta__content {
        max-width: 430px;
    }

    .healpath-home .hp-final-cta__title {
        max-width: 360px;

        margin-bottom: 12px !important;

        font-size: 26px !important;
        line-height: 1.28 !important;
    }

    .healpath-home .hp-final-cta__description {
        max-width: 340px;

        margin-bottom: 24px !important;

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

    .healpath-home
    .hp-final-cta
    .cta-buttons-hp.hp-final-cta__actions {
        width: 100%;
        max-width: 320px;
        flex-direction: column;
        gap: 12px;
    }

    .healpath-home .hp-final-cta__button {
        width: 100%;
        min-width: 0;
        min-height: 50px;

        padding-inline: 22px !important;

        font-size: 14px !important;
    }

    .healpath-home .hp-final-cta::before {
        bottom: -110px;
        left: -110px;

        width: 210px;
        height: 210px;
    }

    .healpath-home .hp-final-cta::after {
        top: -90px;
        right: -100px;

        width: 210px;
        height: 210px;
    }

    .healpath-home .hp-final-cta__decor::before {
        top: 24px;
        left: 12%;

        width: 82px;
        height: 82px;
    }

    .healpath-home .hp-final-cta__decor::after {
        top: auto;
        right: 10%;
        bottom: 18px;

        width: 62px;
        height: 62px;
    }
}

/* =========================================================
   Final CTA — legacy conflicts fix
   ========================================================= */

/* Disable old generated button icons */
.healpath-home
.hp-final-cta
.cta-btn-white-hp::before,
.healpath-home
.hp-final-cta
.cta-btn-white-hp::after,
.healpath-home
.hp-final-cta
.cta-btn-outline-hp::before,
.healpath-home
.hp-final-cta
.cta-btn-outline-hp::after {
    content: none !important;
    display: none !important;
}

/* Keep only the explicit Font Awesome icons */
.healpath-home .hp-final-cta__button i {
    position: static !important;

    display: inline-block !important;
    flex: 0 0 auto;

    width: auto !important;
    height: auto !important;

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

    color: inherit !important;

    font-size: 14px !important;
    line-height: 1 !important;

    transform: none !important;
}

/* Keep desktop heading on one line like the reference */
@media (min-width: 1200px) {

    .healpath-home .hp-final-cta__content {
        max-width: 1120px !important;
    }

    .healpath-home .hp-final-cta__title {
        width: 100%;
        max-width: none !important;

        font-size: 36px !important;
        white-space: nowrap;
    }
}

/* Allow natural wrapping on smaller screens */
@media (max-width: 1199px) {

    .healpath-home .hp-final-cta__title {
        white-space: normal;
    }
}

/* =========================================================
   8. Responsive
   ========================================================= */

@media (max-width: 1199px) {
    .healpath-home .hp-grid--4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .healpath-home .hp-audience .hp-title {
        white-space: normal;
    }

    .healpath-home .hp-audience .hp-grid {
        gap: 20px;
    }

    .healpath-home
    .hp-service-grid--4
    .posts-wrap,
    .healpath-home
    .hp-service-grid--3
    .posts-wrap {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .healpath-home {
        --hp-section-padding-y: 56px;
    }

    .healpath-home
    .hp-service-panel--integration
    .custom-service {
        height: auto;

        grid-template-columns: 1fr;
    }

    .healpath-home
    .hp-service-panel--integration
    .porto-tb-featured-image {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .healpath-home
    .hp-service-panel--integration
    .project-details {
        height: auto;
        padding: 30px;
    }

    .healpath-home .hp-advantage__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .healpath-home .hp-advantage__media {
        width: min(620px, 100%);
        margin-inline: auto;
    }
}


@media (max-width: 767px) {
    .healpath-home {
        --hp-container-gutter: 20px;
        --hp-section-padding-y: 40px;
        --hp-grid-gap: 18px;
        --hp-card-icon-size: 48px;
        --hp-card-icon-font-size: 17px;
    }

    .healpath-home .hp-grid--4,
    .healpath-home .hp-service-grid--4 .posts-wrap,
    .healpath-home .hp-service-grid--3 .posts-wrap {
        grid-template-columns: 1fr;
    }

    .healpath-home .hp-section-header {
        margin-bottom: 30px;
    }

    .healpath-home .hp-title {
        font-size: clamp(28px, 7vw, 32px) !important;
        line-height: 1.12;
        letter-spacing: -0.025em;
    }

    .healpath-home .hp-audience .container-hp.hp-container {
        width: calc(100% - 40px);
    }

    .healpath-home .hp-audience .hp-title {
        white-space: normal;
    }

    .healpath-home
    .hp-service-grid
    .porto-tb-featured-image {
        aspect-ratio: 16 / 10;
    }

    .healpath-home
    .hp-service-grid
    .project-details {
        min-height: auto;
        padding: 18px 18px 22px;
    }

    .healpath-home .hp-service-panel::before {
        top: 28px;
        right: -70px;

        width: 210px;
        height: 210px;
    }

    .healpath-home .hp-service-panel::after {
        top: 52px;
        right: 8px;

        width: 90px;
        height: 90px;
    }

    .healpath-home
    .hp-service-panel
    .wpb_text_column.hp-service-panel__header {
        margin-bottom: 24px !important;
    }

    .healpath-home
    .hp-service-panel__integration-heading {
        gap: 11px;

        margin-bottom: 14px;
    }

    .healpath-home
    .hp-service-panel__integration-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;

        font-size: 17px;
    }

    .healpath-home
    .hp-service-panel__headline {
        font-size: 26px;
        line-height: 1.15;
    }

    .healpath-home
    .hp-service-panel--integration
    .project-details {
        min-height: 0;
        padding: 24px 20px 28px;
    }

    .healpath-home
    .hp-service-panel--integration
    .post-title {
        font-size: 19px !important;
    }

    .healpath-home .hp-advantage__layout {
        gap: 36px;
    }

    .healpath-home .hp-advantage__header {
        margin-bottom: 26px;
        text-align: center;
    }

    .healpath-home
    .hp-advantage__header
    .hp-eyebrow-wrap {
        justify-content: center;
    }

    .healpath-home .hp-advantage__metric--years {
        top: 14px;
        right: 14px;

        min-width: 130px;
        min-height: 96px;

        padding: 14px;
    }

    .healpath-home .hp-advantage__metric-number {
        font-size: 28px;
    }

    .healpath-home .hp-advantage__metric-label {
        margin-top: 8px;
        font-size: 12px;
    }

    .healpath-home .hp-advantage__metric--members {
        left: 14px;
        bottom: 14px;

        min-height: 50px;

        padding-inline: 16px;

        font-size: 12px;
    }

    .healpath-home .hp-advantage__item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;

        padding: 17px;
    }

    .healpath-home .hp-advantage__icon {
        width: 42px;
        height: 42px;

        border-radius: 11px;

        font-size: 16px;
    }

    .healpath-home .hp-advantage__item-content h4 {
        font-size: 16px;
    }

    .healpath-home .hp-advantage__item-content p {
        font-size: 13px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .healpath-home *,
    .healpath-home *::before,
    .healpath-home *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }
}

/* =========================================================
   Shared card icon placement
   Primary Care cards are the visual reference:
   icons overlap the image/content boundary and align with
   the card content without changing the existing HTML.
   ========================================================= */

/* Who We Serve */
.healpath-home .hp-audience .hp-card__media {
    z-index: 2;
    overflow: visible;
}

.healpath-home .hp-audience .hp-card__icon {
    top: auto !important;
    bottom: calc(var(--hp-card-icon-size) / -2) !important;
    left: 20px !important;
}

.healpath-home .hp-audience .hp-card__body {
    padding-top: 46px;
}


/* Core, Ongoing and Bundled service cards */
.healpath-home
.hp-service-panel--core
.hp-service-grid
.porto-tb-featured-image,
.healpath-home
.hp-service-panel--ongoing
.hp-service-grid
.porto-tb-featured-image,
.healpath-home
.hp-service-panel--bundled
.hp-service-grid
.porto-tb-featured-image {
    z-index: 2;
    overflow: visible;
}

/*
 * Keep the image crop and hover zoom contained after allowing
 * the generated icon to overlap the card body.
 */
.healpath-home
.hp-service-panel--core
.hp-service-grid
.porto-tb-featured-image
.img-thumbnail,
.healpath-home
.hp-service-panel--ongoing
.hp-service-grid
.porto-tb-featured-image
.img-thumbnail,
.healpath-home
.hp-service-panel--bundled
.hp-service-grid
.porto-tb-featured-image
.img-thumbnail {
    overflow: hidden;
}

.healpath-home
.hp-service-panel--core
.porto-tb-featured-image::after,
.healpath-home
.hp-service-panel--ongoing
.porto-tb-featured-image::after,
.healpath-home
.hp-service-panel--bundled
.porto-tb-featured-image::after {
    top: auto !important;
    bottom: calc(var(--hp-card-icon-size) / -2) !important;
    left: 20px !important;
}

.healpath-home
.hp-service-panel--core
.hp-service-grid
.project-details,
.healpath-home
.hp-service-panel--ongoing
.hp-service-grid
.project-details,
.healpath-home
.hp-service-panel--bundled
.hp-service-grid
.project-details {
    padding-top: 46px;
}


/* Mobile spacing keeps the same shared placement pattern */
@media (max-width: 767px) {
    .healpath-home .hp-audience .hp-card__icon {
        bottom: calc(var(--hp-card-icon-size) / -2) !important;
        left: 18px !important;
    }

    .healpath-home .hp-audience .hp-card__body {
        padding-top: 42px;
    }

    .healpath-home
    .hp-service-panel--core
    .porto-tb-featured-image::after,
    .healpath-home
    .hp-service-panel--ongoing
    .porto-tb-featured-image::after,
    .healpath-home
    .hp-service-panel--bundled
    .porto-tb-featured-image::after {
        bottom: calc(var(--hp-card-icon-size) / -2) !important;
        left: 18px !important;
    }

    .healpath-home
    .hp-service-panel--core
    .hp-service-grid
    .project-details,
    .healpath-home
    .hp-service-panel--ongoing
    .hp-service-grid
    .project-details,
    .healpath-home
    .hp-service-panel--bundled
    .hp-service-grid
    .project-details {
        padding-top: 42px;
    }
}

/* =========================================================
   Who We Serve — Mobile refinement
   ========================================================= */

@media (max-width: 767px) {

    /* Grid */
    .healpath-home
    .serve-grid-hp.hp-grid--4 {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 20px !important;

        width: 100%;
        max-width: 410px;

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

    /* Card */
    .healpath-home
    .serve-grid-hp
    .hp-card--audience {
        display: flex !important;
        width: 100% !important;
        min-width: 0;
        min-height: 0 !important;
        height: auto !important;
        flex-direction: column;

        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;

        border-radius: 16px !important;

        background-color: var(--hp-white);

        box-shadow:
            0 10px 24px rgba(7, 24, 71, 0.08) !important;
    }

    /* Media */
    .healpath-home
    .serve-grid-hp
    .hp-card--audience
    .hp-card__media {
        position: relative;

        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 16 / 10;
        flex: 0 0 auto !important;

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

        overflow: visible !important;
    }

    .healpath-home
    .serve-grid-hp
    .hp-card--audience
    .hp-card__media > p {
        width: 100%;
        height: 100%;

        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;

        border-radius: 16px 16px 0 0;
    }

    .healpath-home
    .serve-grid-hp
    .hp-card--audience
    .hp-card__media img {
        display: block;

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

        margin: 0 !important;

        object-fit: cover !important;
        object-position: center !important;
    }

    /* Icon */
    .healpath-home
    .serve-grid-hp
    .hp-card--audience
    .hp-card__icon {
        position: absolute !important;
        bottom: -23px !important;
        left: 18px !important;
        z-index: 3;

        display: grid !important;
        width: 46px !important;
        height: 46px !important;
        place-items: center;
        flex: 0 0 46px;

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

        border: 3px solid var(--hp-white) !important;
        border-radius: 50% !important;

        box-sizing: border-box;
        transform: none !important;
    }

    /* Body */
    .healpath-home
    .serve-grid-hp
    .hp-card--audience
    .hp-card__body {
        position: relative;
        z-index: 1;

        display: flex !important;
        min-height: 0 !important;
        flex: 1;
        flex-direction: column;

        margin: 0 !important;
        padding: 34px 18px 18px !important;

        background-color: var(--hp-white) !important;
    }

    /* Title */
    .healpath-home
    .serve-grid-hp
    .hp-card--audience
    .hp-card__title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

        margin: 0 0 10px !important;
        padding: 0 !important;

        color: var(--hp-text) !important;

        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1.35 !important;

        transform: none !important;
    }

    /* Description */
    .healpath-home
    .serve-grid-hp
    .hp-card--audience
    .hp-card__text {
        margin: 0 0 18px !important;
        padding: 0 !important;

        color: var(--hp-muted) !important;

        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    /*
     * Ignore manually inserted desktop line breaks.
     * Let the mobile width wrap the text naturally.
     */
    .healpath-home
    .serve-grid-hp
    .hp-card--audience
    .hp-card__text br {
        display: none !important;
    }

    /* Footer */
    .healpath-home
    .serve-grid-hp
    .hp-card--audience
    .hp-card__footer {
        margin: auto 0 0 !important;
        padding: 0 !important;
    }

    .healpath-home
    .serve-grid-hp
    .hp-card--audience
    .hp-card__link {
        display: inline-flex;
        align-items: center;
        gap: 8px;

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

/* =========================================================
   Hero Section — Safe Refinement
   ========================================================= */

.healpath-home .hp-hero {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   Main container and layout
   ========================================================= */

.healpath-home .hp-hero .hero-content-hp {
    position: relative;
    z-index: 2;
}

.healpath-home .hp-hero .container-hp {
    width: calc(100% - 40px);
    max-width: 1160px;

    margin: 0 auto !important;
}

.healpath-home .hp-hero .hero-grid-hp {
    display: grid !important;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(56px, 6vw, 92px);

    width: 100%;

    margin: 0 !important;
}


/* =========================================================
   Hero text
   ========================================================= */

.healpath-home .hp-hero .hero-text-hp {
    min-width: 0;
}

.healpath-home .hp-hero .hero-badge-hp {
    width: fit-content;
    max-width: 100%;

    margin-bottom: 24px !important;
}

.healpath-home .hp-hero .hero-title-hp {
    max-width: 560px;

    margin: 0 0 20px !important;

    line-height: 1.08 !important;
    letter-spacing: -0.035em;
}

.healpath-home .hp-hero .title-highlight-hp {
    display: block;
}

.healpath-home .hp-hero .hero-tagline-hp {
    margin: 0 0 22px !important;
}

.healpath-home .hp-hero .hero-desc-hp {
    max-width: 560px;

    margin: 0 0 28px !important;

    line-height: 1.72 !important;
}

.healpath-home .hp-hero .hero-cta-hp {
    margin: 0 0 30px !important;
}


/* =========================================================
   Trust items
   ========================================================= */

.healpath-home .hp-hero .hero-trust-hp {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 24px;

    margin: 0 !important;
    padding-top: 22px;

    border-top: 1px solid rgba(7, 24, 71, 0.08);
}

.healpath-home .hp-hero .trust-item-hp {
    width: auto !important;
    margin: 0 !important;

    white-space: nowrap;
}


/* =========================================================
   Hero visual
   ========================================================= */

.healpath-home .hp-hero .hero-visual-hp {
    position: relative;

    width: 100%;
    max-width: 540px;
    min-width: 0;

    margin: 0 auto !important;
}

.healpath-home .hp-hero .hero-main-image-hp {
    position: relative;

    width: min(100%, 460px);
    aspect-ratio: 4 / 4.35;

    margin: 0 auto !important;
    overflow: hidden;

    border-radius: 24px;

    transform: none !important;
}

.healpath-home .hp-hero .hero-main-image-hp > p {
    width: 100%;
    height: 100%;

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

.healpath-home .hp-hero .hero-main-image-hp img {
    display: block;

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

    margin: 0 !important;

    object-fit: cover !important;
    object-position: center !important;
}


/* =========================================================
   Statistics cards
   ========================================================= */

.healpath-home .hp-hero .hero-stats-card-hp {
    display: flex !important;
    width: 150px;
    min-height: 82px;
    align-items: center;
    gap: 12px;

    padding: 14px 16px !important;

    border-radius: 18px;

    background-color: #ffffff;

    box-shadow:
        0 16px 34px rgba(7, 24, 71, 0.12);

    box-sizing: border-box;
}

.healpath-home .hp-hero .stats-icon-hp {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px;

    margin: 0 !important;
}

.healpath-home .hp-hero .stats-info-hp {
    min-width: 0;
}

.healpath-home .hp-hero .stats-number-hp {
    display: block;

    margin: 0 0 4px !important;

    font-size: 20px !important;
    line-height: 1 !important;
}

.healpath-home .hp-hero .stats-label-hp {
    display: block;

    font-size: 11px !important;
    line-height: 1.3 !important;
}

.healpath-home .hp-hero .stats-info-hp br {
    display: none !important;
}


/* Card positions */

.healpath-home .hp-hero .hero-stats-card-hp.sc-1 {
    top: 7%;
    left: -3%;
}

.healpath-home .hp-hero .hero-stats-card-hp.sc-2 {
    top: 42%;
    right: -5%;
}

.healpath-home .hp-hero .hero-stats-card-hp.sc-3 {
    bottom: 9%;
    left: -1%;
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {

    .healpath-home .hp-hero .hero-grid-hp {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.9fr);
        gap: 40px;
    }

    .healpath-home .hp-hero .hero-title-hp {
        font-size: clamp(40px, 5vw, 54px) !important;
    }

    .healpath-home .hp-hero .hero-main-image-hp {
        width: min(100%, 390px);
    }

    .healpath-home .hp-hero .hero-stats-card-hp {
        width: 134px;
        min-height: 72px;

        padding: 12px !important;
    }

    .healpath-home .hp-hero .stats-icon-hp {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px;
    }

    .healpath-home .hp-hero .stats-number-hp {
        font-size: 18px !important;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-hero .container-hp {
        width: calc(100% - 32px);
    }

    .healpath-home .hp-hero .hero-grid-hp {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }

    .healpath-home .hp-hero .hero-text-hp {
        text-align: left;
    }

    .healpath-home .hp-hero .hero-badge-hp {
        margin-bottom: 20px !important;
    }

    .healpath-home .hp-hero .hero-title-hp {
        max-width: 100%;

        margin-bottom: 18px !important;

        font-size: clamp(38px, 11vw, 48px) !important;
        line-height: 1.08 !important;
    }

    .healpath-home .hp-hero .hero-tagline-hp {
        margin-bottom: 18px !important;
    }

    .healpath-home .hp-hero .hero-desc-hp {
        margin-bottom: 24px !important;

        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .healpath-home .hp-hero .hero-cta-hp {
        margin-bottom: 24px !important;
    }

    .healpath-home .hp-hero .hero-trust-hp {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;

        padding-top: 20px;
    }

    .healpath-home .hp-hero .trust-item-hp {
        white-space: normal;
    }


    /* Mobile visual */

    .healpath-home .hp-hero .hero-visual-hp {
        max-width: 430px;
        padding: 0 18px;
    }

    .healpath-home .hp-hero .hero-main-image-hp {
        width: 100%;
        max-width: 340px;
        aspect-ratio: 4 / 4.5;

        border-radius: 20px;
    }

    .healpath-home .hp-hero .hero-stats-card-hp {
        width: 124px;
        min-height: 66px;
        gap: 8px;

        padding: 10px !important;

        border-radius: 14px;
    }

    .healpath-home .hp-hero .stats-icon-hp {
        width: 34px !important;
        height: 34px !important;
        flex-basis: 34px;
    }

    .healpath-home .hp-hero .stats-number-hp {
        font-size: 16px !important;
    }

    .healpath-home .hp-hero .stats-label-hp {
        font-size: 9px !important;
    }

    .healpath-home .hp-hero .hero-stats-card-hp.sc-1 {
        top: 7%;
        left: 0;
    }

    .healpath-home .hp-hero .hero-stats-card-hp.sc-2 {
        top: 42%;
        right: 0;
    }

    .healpath-home .hp-hero .hero-stats-card-hp.sc-3 {
        bottom: 7%;
        left: 0;
    }
}


/* =========================================================
   Small mobile screens
   ========================================================= */

@media (max-width: 390px) {

    .healpath-home .hp-hero .hero-visual-hp {
        padding-inline: 12px;
    }

    .healpath-home .hp-hero .hero-stats-card-hp {
        width: 112px;
    }

    .healpath-home .hp-hero .stats-icon-hp {
        width: 30px !important;
        height: 30px !important;
        flex-basis: 30px;
    }
}

/* =========================================================
   Mobile compact layout
   Purpose: reduce homepage length on phones without hiding
   content or changing the desktop/tablet design.
   ========================================================= */

@media (max-width: 767px) {

    /* =====================================================
       Global mobile rhythm
       ===================================================== */

    .healpath-home {
        --hp-container-gutter: 16px;
        --hp-section-padding-y: 32px;
        --hp-grid-gap: 14px;
        --hp-card-icon-size: 44px;
        --hp-card-icon-font-size: 16px;
    }

    .healpath-home .hp-section {
        padding-top: var(--hp-section-padding-y) !important;
        padding-bottom: var(--hp-section-padding-y) !important;
    }

    .healpath-home .hp-container,
    .healpath-home .hp-audience .container-hp.hp-container,
    .healpath-home .hp-hero .container-hp {
        width: calc(100% - 32px) !important;
    }

    .healpath-home .hp-section-header,
    .healpath-home .hp-process__header,
    .healpath-home .hp-foundation__header,
    .healpath-home .hp-impact__header,
    .healpath-home .hp-contact__header,
    .healpath-home .hp-faq__header {
        margin-bottom: 22px !important;
    }

    .healpath-home .hp-eyebrow,
    .healpath-home .hp-service-panel__badge {
        min-height: 34px;
        height: 34px;
        padding-inline: 15px;
        gap: 7px;
    }

    .healpath-home .hp-eyebrow,
    .healpath-home .hp-service-panel__title {
        font-size: 11px !important;
    }

    .healpath-home .hp-title {
        font-size: clamp(26px, 7.4vw, 30px) !important;
        line-height: 1.14 !important;
    }

    .healpath-home .hp-lead,
    .healpath-home .hp-service-panel__description {
        font-size: 14px !important;
        line-height: 1.55 !important;
    }

    /* Horizontal-scroll behavior shared by card-heavy sections */
    .healpath-home .serve-grid-hp.hp-grid--4,
    .healpath-home .hp-service-grid--4 .posts-wrap,
    .healpath-home .hp-service-grid--3 .posts-wrap,
    .healpath-home .hp-process .hp-process__grid,
    .healpath-home .hp-foundation .primary-grid-hp.hp-foundation__grid,
    .healpath-home .hp-foundation-mv-row .hp-foundation-highlights,
    .healpath-home .hp-advantage__list,
    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid {
        display: grid !important;
        grid-template-columns: none !important;
        grid-auto-flow: column;
        grid-auto-columns: min(84vw, 330px);
        align-items: stretch;
        gap: 14px !important;

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

        margin: 0 !important;
        padding: 0 0 10px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;

        scroll-snap-type: inline mandatory;
        scroll-padding-inline: 2px;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .healpath-home .serve-grid-hp.hp-grid--4::-webkit-scrollbar,
    .healpath-home .hp-service-grid--4 .posts-wrap::-webkit-scrollbar,
    .healpath-home .hp-service-grid--3 .posts-wrap::-webkit-scrollbar,
    .healpath-home .hp-process .hp-process__grid::-webkit-scrollbar,
    .healpath-home .hp-foundation .primary-grid-hp.hp-foundation__grid::-webkit-scrollbar,
    .healpath-home .hp-foundation-mv-row .hp-foundation-highlights::-webkit-scrollbar,
    .healpath-home .hp-advantage__list::-webkit-scrollbar,
    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid::-webkit-scrollbar {
        display: none;
    }

    .healpath-home .serve-grid-hp.hp-grid--4 > *,
    .healpath-home .hp-service-grid--4 .posts-wrap > *,
    .healpath-home .hp-service-grid--3 .posts-wrap > *,
    .healpath-home .hp-process .hp-process__grid > *,
    .healpath-home .hp-foundation .primary-grid-hp.hp-foundation__grid > *,
    .healpath-home .hp-foundation-mv-row .hp-foundation-highlights > *,
    .healpath-home .hp-advantage__list > *,
    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid > * {
        scroll-snap-align: start;
        scroll-snap-stop: normal;
    }

    /* =====================================================
       Hero — shorter without removing content
       ===================================================== */

    .healpath-home .hp-hero .hero-grid-hp {
        gap: 26px !important;
    }

    .healpath-home .hp-hero .hero-badge-hp {
        margin-bottom: 16px !important;
    }

    .healpath-home .hp-hero .hero-title-hp {
        margin-bottom: 14px !important;
        font-size: clamp(34px, 10vw, 42px) !important;
    }

    .healpath-home .hp-hero .hero-tagline-hp {
        margin-bottom: 14px !important;
        font-size: 15px !important;
        line-height: 1.45 !important;
    }

    .healpath-home .hp-hero .hero-desc-hp {
        margin-bottom: 20px !important;
        font-size: 13.5px !important;
        line-height: 1.6 !important;
    }

    .healpath-home .hp-hero .hero-cta-hp {
        margin-bottom: 18px !important;
    }

    .healpath-home .hp-hero .btn-primary-hp {
        min-height: 48px;
        padding-inline: 22px !important;
    }

    .healpath-home .hp-hero .hero-trust-hp {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;

        padding: 16px 0 4px !important;
        overflow-x: auto;
        scroll-snap-type: inline proximity;
        scrollbar-width: none;
    }

    .healpath-home .hp-hero .hero-trust-hp::-webkit-scrollbar {
        display: none;
    }

    .healpath-home .hp-hero .trust-item-hp {
        flex: 0 0 auto;
        min-height: 34px;
        padding: 0 12px;

        border: 1px solid rgba(7, 24, 71, 0.08);
        border-radius: var(--hp-radius-pill);
        background: rgba(255, 255, 255, 0.62);

        font-size: 11px !important;
        line-height: 32px !important;
        white-space: nowrap !important;
        scroll-snap-align: start;
    }

    .healpath-home .hp-hero .hero-visual-hp {
        max-width: 360px;
        padding-inline: 16px !important;
    }

    .healpath-home .hp-hero .hero-main-image-hp {
        max-width: 300px;
        aspect-ratio: 4 / 4.15;
    }

    .healpath-home .hp-hero .hero-stats-card-hp {
        width: 108px;
        min-height: 58px;
        gap: 7px;
        padding: 8px 9px !important;
    }

    .healpath-home .hp-hero .stats-icon-hp {
        width: 30px !important;
        height: 30px !important;
        flex-basis: 30px;
    }

    .healpath-home .hp-hero .stats-number-hp {
        font-size: 15px !important;
    }

    .healpath-home .hp-hero .stats-label-hp {
        font-size: 8.5px !important;
    }

    /* =====================================================
       Who We Serve — horizontal cards
       ===================================================== */

    .healpath-home .serve-grid-hp .hp-card--audience {
        min-height: 0 !important;
        height: auto !important;
    }

    .healpath-home .serve-grid-hp .hp-card--audience .hp-card__media,
    .healpath-home .serve-payers .hp-card__media {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 16 / 9 !important;
        flex: 0 0 auto !important;
    }

    .healpath-home .serve-grid-hp .hp-card--audience .hp-card__body {
        padding: 32px 16px 16px !important;
    }

    .healpath-home .serve-grid-hp .hp-card--audience .hp-card__text {
        margin-bottom: 14px !important;
        font-size: 12.5px !important;
        line-height: 1.52 !important;
    }

    /* =====================================================
       Service grids — horizontal cards
       ===================================================== */

    .healpath-home .hp-service-panel {
        --hp-service-gap: 14px;
    }

    .healpath-home .hp-service-panel .wpb_text_column.hp-service-panel__header {
        margin-bottom: 20px !important;
    }

    .healpath-home .hp-service-grid {
        overflow: visible !important;
    }

    .healpath-home .hp-service-grid .porto-tb-item {
        width: auto !important;
        min-width: 0 !important;
    }

    .healpath-home .hp-service-grid .custom-service {
        min-height: 0 !important;
    }

    .healpath-home .hp-service-grid .porto-tb-featured-image {
        aspect-ratio: 16 / 9 !important;
    }

    .healpath-home .hp-service-grid .project-details {
        min-height: 0 !important;
        padding: 36px 16px 18px !important;
        row-gap: 9px;
    }

    .healpath-home .hp-service-grid .post-title {
        font-size: 16px !important;
    }

    .healpath-home .hp-service-grid .post-excerpt {
        font-size: 12.5px !important;
        line-height: 1.52 !important;
    }

    /* Integration has one card; keep it compact instead of scrolling. */
    .healpath-home .hp-service-grid--integration .posts-wrap {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        overflow: visible !important;
        padding-bottom: 0 !important;
    }

    .healpath-home .hp-service-panel--integration .porto-tb-featured-image {
        aspect-ratio: 16 / 8.5 !important;
    }

    .healpath-home .hp-service-panel--integration .project-details {
        padding: 20px 18px 22px !important;
    }

    /* =====================================================
       HealPath Advantage — compact image + swipeable benefits
       ===================================================== */

    .healpath-home .hp-advantage__layout {
        gap: 24px !important;
    }

    .healpath-home .hp-advantage__figure {
        aspect-ratio: 16 / 10 !important;
    }

    .healpath-home .hp-advantage__metric--years {
        top: 10px;
        right: 10px;
        min-width: 108px;
        min-height: 76px;
        padding: 10px;
    }

    .healpath-home .hp-advantage__metric-number {
        font-size: 24px;
    }

    .healpath-home .hp-advantage__metric-label {
        margin-top: 5px;
        font-size: 10.5px;
    }

    .healpath-home .hp-advantage__metric--members {
        left: 10px;
        bottom: 10px;
        min-height: 42px;
        padding-inline: 13px;
        font-size: 11px;
    }

    .healpath-home .hp-advantage__header {
        margin-bottom: 20px !important;
    }

    .healpath-home .hp-advantage__list {
        grid-auto-columns: min(82vw, 315px);
    }

    .healpath-home .hp-advantage__item {
        min-height: 170px;
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
        padding: 15px;
    }

    .healpath-home .hp-advantage__icon {
        width: 40px;
        height: 40px;
    }

    .healpath-home .hp-advantage__item-content h4 {
        margin-bottom: 6px;
        font-size: 15px;
    }

    .healpath-home .hp-advantage__item-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    /* =====================================================
       How It Works — swipeable process cards
       ===================================================== */

    .healpath-home .hp-process .hp-process__grid {
        grid-auto-columns: min(84vw, 330px);
    }

    .healpath-home .hp-process .step-connector-hp.hp-step__connector {
        display: none !important;
    }

    .healpath-home .hp-process .hp-step {
        min-height: 0 !important;
        height: auto !important;
    }

    .healpath-home .hp-process .hp-step__media {
        aspect-ratio: 16 / 9 !important;
    }

    .healpath-home .hp-process .hp-step__body {
        padding: 17px !important;
    }

    .healpath-home .hp-process .hp-step__text {
        margin-bottom: 14px !important;
        font-size: 12.5px !important;
        line-height: 1.52 !important;
    }

    .healpath-home .hp-process .hp-step__features {
        gap: 7px;
    }

    .healpath-home .hp-process .hp-step__features li {
        font-size: 12px !important;
    }

    /* =====================================================
       Primary Care — swipeable top and bottom cards
       ===================================================== */

    .healpath-home .hp-foundation .primary-grid-hp.hp-foundation__grid,
    .healpath-home .hp-foundation-mv-row .hp-foundation-highlights {
        grid-auto-columns: min(84vw, 330px);
    }

    .healpath-home .hp-foundation .primary-card-hp.hp-foundation-card:last-child {
        grid-column: auto !important;
        width: auto !important;
    }

    .healpath-home .hp-foundation .primary-img-hp.hp-foundation-card__media {
        aspect-ratio: 16 / 9 !important;
    }

    .healpath-home .hp-foundation .primary-content-hp.hp-foundation-card__body {
        min-height: 0 !important;
        padding: 36px 17px 18px !important;
    }

    .healpath-home .hp-foundation .hp-foundation-card__text {
        font-size: 12.5px !important;
        line-height: 1.52 !important;
    }

    .healpath-home .hp-foundation {
        padding-bottom: 22px !important;
    }

    .healpath-home .hp-foundation-mv-row {
        padding-top: 18px !important;
        padding-bottom: 32px !important;
    }

    .healpath-home .hp-foundation-mv-row .hp-foundation-highlight {
        min-height: 250px !important;
    }

    .healpath-home .hp-foundation-mv-row .hp-foundation-highlight__content {
        padding: 20px !important;
    }

    .healpath-home .hp-foundation-mv-row .hp-foundation-highlight__icon {
        margin-bottom: 12px !important;
    }

    .healpath-home .hp-foundation-mv-row .hp-foundation-highlight__label {
        margin-bottom: 10px !important;
    }

    .healpath-home .hp-foundation-mv-row .hp-foundation-highlight__title {
        margin-bottom: 10px !important;
        font-size: 18px !important;
    }

    .healpath-home .hp-foundation-mv-row .hp-foundation-highlight__text {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    /* =====================================================
       Our Impact — compact two-column metrics
       ===================================================== */

    .healpath-home .hp-impact .stats-grid-hp.hp-impact__grid,
    .healpath-home .hp-impact .stats-grid-hp.hp-impact__grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        max-width: 430px !important;
    }

    .healpath-home .hp-impact .stat-card-hp.hp-impact-card {
        min-height: 142px !important;
        padding: 16px 10px 14px !important;
    }

    .healpath-home .hp-impact .stat-icon-hp.hp-impact-card__icon {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px;
        margin-bottom: 10px !important;
        border-radius: 11px !important;
    }

    .healpath-home .hp-impact .hp-impact-card__icon i {
        font-size: 16px !important;
    }

    .healpath-home .hp-impact .hp-impact-card__number {
        margin-bottom: 7px !important;
        font-size: 22px !important;
    }

    .healpath-home .hp-impact .hp-impact-card__label {
        font-size: 10.5px !important;
        line-height: 1.35 !important;
    }

    /* =====================================================
       Certifications — one-row swipeable chips
       ===================================================== */

    .healpath-home .hp-certifications {
        padding: 26px 0 24px !important;
    }

    .healpath-home .hp-certifications__title {
        margin-bottom: 16px !important;
        font-size: 14px !important;
    }

    .healpath-home .hp-certifications__inner {
        max-width: none !important;
        padding-inline: 16px !important;
    }

    .healpath-home .hp-certifications__list {
        display: flex !important;
        width: 100% !important;
        max-width: none !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: flex-start !important;
        gap: 9px !important;

        padding: 0 0 8px !important;
        overflow-x: auto;
        scroll-snap-type: inline proximity;
        scrollbar-width: none;
    }

    .healpath-home .hp-certifications__list::-webkit-scrollbar {
        display: none;
    }

    .healpath-home .hp-certifications .cert-item-hp.hp-certifications__item {
        width: max-content !important;
        min-height: 38px;
        flex: 0 0 auto;
        margin: 0 !important;
        padding: 7px 12px !important;
        scroll-snap-align: start;
    }

    .healpath-home .hp-certifications__text {
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    /* =====================================================
       Testimonial — compact landscape media
       ===================================================== */

    .healpath-home .hp-testimonial .testimonial-wrapper-hp.hp-testimonial__layout {
        gap: 22px !important;
    }

    .healpath-home .hp-testimonial__media {
        position: relative;
    }

    .healpath-home .hp-testimonial__figure {
        aspect-ratio: 16 / 9 !important;
    }

    .healpath-home .hp-testimonial__experience {
        position: absolute;
        left: 12px;
        bottom: 12px;
        z-index: 2;

        min-width: 116px;
        margin: 0 !important;
        padding: 9px 12px !important;

        border-radius: 12px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: var(--hp-shadow-sm);
    }

    .healpath-home .hp-testimonial__experience-number {
        font-size: 14px !important;
    }

    .healpath-home .hp-testimonial__experience-label {
        font-size: 10px !important;
    }

    .healpath-home .hp-testimonial__quote-icon {
        margin-bottom: 10px !important;
    }

    .healpath-home .hp-testimonial__quote-icon i {
        font-size: 28px !important;
    }

    .healpath-home .hp-testimonial__quote {
        margin-bottom: 18px !important;
    }

    .healpath-home .hp-testimonial__quote p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    /* =====================================================
       Contact Us — swipeable cards
       ===================================================== */

    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid {
        grid-auto-columns: min(84vw, 325px);
    }

    .healpath-home .hp-contact .contact-card-hp.hp-contact-card {
        min-height: 250px !important;
        padding: 20px 18px !important;
    }

    .healpath-home .hp-contact .contact-icon-hp.hp-contact-card__icon {
        width: 44px !important;
        height: 44px !important;
        flex-basis: 44px;
        margin-bottom: 14px !important;
    }

    .healpath-home .hp-contact-card__title {
        margin-bottom: 11px !important;
        font-size: 15px !important;
    }

    .healpath-home .hp-contact-card__content p,
    .healpath-home .hp-contact-card__list li {
        margin-bottom: 9px !important;
        font-size: 11.5px !important;
        line-height: 1.45 !important;
    }

    /* =====================================================
       FAQ — shorter media and tighter accordion
       ===================================================== */

    .healpath-home .hp-faq .faq-wrapper-hp.hp-faq__layout {
        gap: 22px !important;
    }

    .healpath-home .hp-faq__figure {
        height: auto !important;
        aspect-ratio: 16 / 8.5 !important;
    }

    .healpath-home .hp-faq__help-badge {
        min-height: 40px;
        padding-inline: 13px !important;
        font-size: 11px !important;
    }

    .healpath-home .hp-faq__list {
        gap: 10px;
    }

    .healpath-home .hp-faq__question {
        grid-template-columns: 32px minmax(0, 1fr) 30px !important;
        min-height: 60px !important;
        gap: 9px !important;
        padding: 11px 12px !important;
    }

    .healpath-home .hp-faq__number {
        width: 32px !important;
        height: 32px !important;
        font-size: 11px !important;
    }

    .healpath-home .hp-faq__toggle {
        width: 30px !important;
        height: 30px !important;
    }

    .healpath-home .hp-faq__question-title {
        font-size: 13px !important;
    }

    .healpath-home .hp-faq__answer {
        padding: 0 12px 14px 53px !important;
    }

    .healpath-home .hp-faq__answer p {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    /* =====================================================
       Final CTA — two buttons in one row
       ===================================================== */

    .healpath-home .hp-final-cta {
        padding: 34px 0 !important;
    }

    .healpath-home .hp-final-cta__title {
        font-size: 24px !important;
    }

    .healpath-home .hp-final-cta__description {
        margin-bottom: 20px !important;
        font-size: 13px !important;
    }

    .healpath-home .hp-final-cta .cta-buttons-hp.hp-final-cta__actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        max-width: 360px;
    }

    .healpath-home .hp-final-cta__button {
        width: 100%;
        min-height: 46px;
        padding-inline: 12px !important;
        gap: 7px;
        font-size: 12px !important;
        white-space: nowrap;
    }

}

/* =========================================================
   Very small phones
   ========================================================= */

@media (max-width: 360px) {
    .healpath-home {
        --hp-container-gutter: 14px;
    }

    .healpath-home .hp-container,
    .healpath-home .hp-audience .container-hp.hp-container,
    .healpath-home .hp-hero .container-hp {
        width: calc(100% - 28px) !important;
    }

    .healpath-home .serve-grid-hp.hp-grid--4,
    .healpath-home .hp-service-grid--4 .posts-wrap,
    .healpath-home .hp-service-grid--3 .posts-wrap,
    .healpath-home .hp-process .hp-process__grid,
    .healpath-home .hp-foundation .primary-grid-hp.hp-foundation__grid,
    .healpath-home .hp-foundation-mv-row .hp-foundation-highlights,
    .healpath-home .hp-advantage__list,
    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid {
        grid-auto-columns: 88vw;
    }

    .healpath-home .hp-final-cta .cta-buttons-hp.hp-final-cta__actions {
        grid-template-columns: minmax(0, 1fr);
        max-width: 280px;
    }
}

/* =========================================================
   Horizontal swipe affordance
   Keeps part of the next card visible so visitors understand
   that the row can be swiped horizontally.
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .serve-grid-hp.hp-grid--4,
    .healpath-home .hp-service-grid--4 .posts-wrap,
    .healpath-home .hp-service-grid--3 .posts-wrap,
    .healpath-home .hp-process .hp-process__grid,
    .healpath-home .hp-foundation .primary-grid-hp.hp-foundation__grid,
    .healpath-home .hp-foundation-mv-row .hp-foundation-highlights,
    .healpath-home .hp-advantage__list,
    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid {
        /* Roughly 1.3 cards remain visible in the viewport. */
        grid-auto-columns: 74% !important;
        gap: 10px !important;

        padding-inline-end: 16px !important;
        padding-bottom: 12px !important;

        scroll-snap-type: inline proximity;
        scroll-padding-inline: 0;

        /* A subtle scrollbar provides a second visual cue. */
        scrollbar-width: thin;
        scrollbar-color:
            rgba(17, 175, 203, 0.62)
            rgba(17, 175, 203, 0.10);
    }

    .healpath-home .serve-grid-hp.hp-grid--4::-webkit-scrollbar,
    .healpath-home .hp-service-grid--4 .posts-wrap::-webkit-scrollbar,
    .healpath-home .hp-service-grid--3 .posts-wrap::-webkit-scrollbar,
    .healpath-home .hp-process .hp-process__grid::-webkit-scrollbar,
    .healpath-home .hp-foundation .primary-grid-hp.hp-foundation__grid::-webkit-scrollbar,
    .healpath-home .hp-foundation-mv-row .hp-foundation-highlights::-webkit-scrollbar,
    .healpath-home .hp-advantage__list::-webkit-scrollbar,
    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid::-webkit-scrollbar {
        display: block !important;
        height: 4px;
    }

    .healpath-home .serve-grid-hp.hp-grid--4::-webkit-scrollbar-track,
    .healpath-home .hp-service-grid--4 .posts-wrap::-webkit-scrollbar-track,
    .healpath-home .hp-service-grid--3 .posts-wrap::-webkit-scrollbar-track,
    .healpath-home .hp-process .hp-process__grid::-webkit-scrollbar-track,
    .healpath-home .hp-foundation .primary-grid-hp.hp-foundation__grid::-webkit-scrollbar-track,
    .healpath-home .hp-foundation-mv-row .hp-foundation-highlights::-webkit-scrollbar-track,
    .healpath-home .hp-advantage__list::-webkit-scrollbar-track,
    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid::-webkit-scrollbar-track {
        border-radius: var(--hp-radius-pill);
        background: rgba(17, 175, 203, 0.10);
    }

    .healpath-home .serve-grid-hp.hp-grid--4::-webkit-scrollbar-thumb,
    .healpath-home .hp-service-grid--4 .posts-wrap::-webkit-scrollbar-thumb,
    .healpath-home .hp-service-grid--3 .posts-wrap::-webkit-scrollbar-thumb,
    .healpath-home .hp-process .hp-process__grid::-webkit-scrollbar-thumb,
    .healpath-home .hp-foundation .primary-grid-hp.hp-foundation__grid::-webkit-scrollbar-thumb,
    .healpath-home .hp-foundation-mv-row .hp-foundation-highlights::-webkit-scrollbar-thumb,
    .healpath-home .hp-advantage__list::-webkit-scrollbar-thumb,
    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid::-webkit-scrollbar-thumb {
        border-radius: var(--hp-radius-pill);
        background: rgba(17, 175, 203, 0.62);
    }
}

/* =========================================================
   Horizontal swipe cards — final behavior
   - Disable reveal animations inside How It Works.
   - Show a clearly visible portion of the next card.
   - Neutralize Porto column sizing on service cards.
   ========================================================= */

@media (max-width: 767px) {

    /* =====================================================
       How It Works — cards must be visible immediately
       ===================================================== */

    .healpath-home .hp-process .hp-process__grid {
        grid-auto-columns: 82% !important;
        gap: 10px !important;
    }

    /*
     * Porto/WPBakery can keep later cards hidden until their
     * reveal animation starts. On a horizontal row this makes
     * the swipe direction unclear, so all process cards are
     * rendered immediately on mobile.
     */
    .healpath-home .hp-process .appear-animation,
    .healpath-home .hp-process .appear-animation-visible,
    .healpath-home .hp-process [data-appear-animation],
    .healpath-home .hp-process .wpb_animate_when_almost_visible,
    .healpath-home .hp-process .wpb_start_animation,
    .healpath-home .hp-process .porto-animate,
    .healpath-home .hp-process .hp-process__grid > *,
    .healpath-home .hp-process .hp-step {
        opacity: 1 !important;
        visibility: visible !important;

        animation: none !important;
        animation-name: none !important;
        animation-delay: 0s !important;
        animation-duration: 0s !important;

        transition-delay: 0s !important;
    }

    .healpath-home .hp-process .appear-animation,
    .healpath-home .hp-process [data-appear-animation],
    .healpath-home .hp-process .wpb_animate_when_almost_visible,
    .healpath-home .hp-process .porto-animate,
    .healpath-home .hp-process .hp-step {
        transform: none !important;
    }

    /* =====================================================
       Core / Ongoing / Bundled Services — clearer next card
       ===================================================== */

    .healpath-home
    .hp-service-panel--core
    .hp-service-grid
    .posts-wrap,
    .healpath-home
    .hp-service-panel--ongoing
    .hp-service-grid
    .posts-wrap,
    .healpath-home
    .hp-service-panel--bundled
    .hp-service-grid
    .posts-wrap {
        display: grid !important;
        grid-template-columns: none !important;
        grid-auto-flow: column !important;
        grid-auto-columns: 82% !important;
        gap: 10px !important;

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

        overflow-x: auto !important;
        overflow-y: hidden !important;

        scroll-snap-type: inline proximity !important;
        scroll-padding-inline: 0 !important;
        overscroll-behavior-inline: contain;
        -webkit-overflow-scrolling: touch;
    }

    /* Neutralize Porto's generated Bootstrap-like column widths. */
    .healpath-home
    .hp-service-panel--core
    .hp-service-grid
    .posts-wrap
    > .porto-tb-item,
    .healpath-home
    .hp-service-panel--ongoing
    .hp-service-grid
    .posts-wrap
    > .porto-tb-item,
    .healpath-home
    .hp-service-panel--bundled
    .hp-service-grid
    .posts-wrap
    > .porto-tb-item {
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        flex: none !important;

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

        opacity: 1 !important;
        visibility: visible !important;
        scroll-snap-align: start;
    }

    /* Keep every card constrained to its grid track. */
    .healpath-home
    .hp-service-panel--core
    .hp-service-grid
    .custom-service,
    .healpath-home
    .hp-service-panel--ongoing
    .hp-service-grid
    .custom-service,
    .healpath-home
    .hp-service-panel--bundled
    .hp-service-grid
    .custom-service {
        width: 100% !important;
        max-width: 100% !important;
    }
}


/* Slightly wider cards on very narrow phones, while keeping
   a meaningful part of the following card visible. */
@media (max-width: 360px) {
    .healpath-home .hp-process .hp-process__grid,
    .healpath-home
    .hp-service-panel--core
    .hp-service-grid
    .posts-wrap,
    .healpath-home
    .hp-service-panel--ongoing
    .hp-service-grid
    .posts-wrap,
    .healpath-home
    .hp-service-panel--bundled
    .hp-service-grid
    .posts-wrap {
        grid-auto-columns: 72% !important;
    }
}

/* =========================================================
   Primary Care — final mobile layout
   Restores the original stacked mobile presentation:
   - Three full-width vertical cards
   - Mission and Vision stacked full width
   - No horizontal scrolling in either row
   ========================================================= */

@media (max-width: 767px) {

    /* Primary Care section rhythm */
    .healpath-home .hp-foundation {
        padding-bottom: 0 !important;
    }

    .healpath-home .hp-foundation-mv-row {
        padding-top: 30px !important;
        padding-bottom: 72px !important;
    }

    /* -----------------------------------------------------
       Top three cards — original stacked mobile layout
       ----------------------------------------------------- */

    .healpath-home
    .hp-foundation
    .primary-grid-hp.hp-foundation__grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        grid-auto-flow: row !important;
        grid-auto-columns: auto !important;
        align-items: stretch !important;
        gap: 14px !important;

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

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

        scroll-snap-type: none !important;
        scroll-padding-inline: 0 !important;
        overscroll-behavior-inline: auto !important;
        scrollbar-width: none !important;
    }

    .healpath-home
    .hp-foundation
    .primary-grid-hp.hp-foundation__grid::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .healpath-home
    .hp-foundation
    .primary-grid-hp.hp-foundation__grid
    > .primary-card-hp.hp-foundation-card,
    .healpath-home
    .hp-foundation
    .primary-card-hp.hp-foundation-card:last-child {
        display: flex !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        flex-direction: column !important;

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

        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;

        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
    }

    .healpath-home
    .hp-foundation
    .primary-img-hp.hp-foundation-card__media {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 2 / 1 !important;
        flex: 0 0 auto !important;

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

    .healpath-home
    .hp-foundation
    .primary-img-hp.hp-foundation-card__media img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .healpath-home
    .hp-foundation
    .primary-content-hp.hp-foundation-card__body {
        position: relative !important;

        display: flex !important;
        min-width: 0 !important;
        min-height: 0 !important;
        height: auto !important;
        flex: 1 1 auto !important;
        flex-direction: column !important;
        justify-content: flex-start !important;

        margin: 0 !important;
        padding: 42px 20px 22px !important;
    }

    /* Restore the icon at the image/content boundary */
    .healpath-home
    .hp-foundation
    .primary-content-hp.hp-foundation-card__body
    > .primary-icon-hp.hp-foundation-card__icon {
        position: absolute !important;
        top: calc(var(--hp-card-icon-size) / -2) !important;
        right: auto !important;
        bottom: auto !important;
        left: 20px !important;

        width: var(--hp-card-icon-size) !important;
        height: var(--hp-card-icon-size) !important;
        min-width: var(--hp-card-icon-size) !important;
        min-height: var(--hp-card-icon-size) !important;
        flex: 0 0 var(--hp-card-icon-size) !important;

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

        border-radius: 13px !important;
        font-size: var(--hp-card-icon-font-size) !important;
    }

    .healpath-home
    .hp-foundation
    .primary-content-hp.hp-foundation-card__body
    > .primary-icon-hp.hp-foundation-card__icon
    > i {
        font-size: var(--hp-card-icon-font-size) !important;
    }

    .healpath-home
    .hp-foundation
    .primary-content-hp.hp-foundation-card__body
    > .hp-foundation-card__title {
        min-height: 0 !important;

        margin: 0 0 10px !important;

        font-size: 16px !important;
        line-height: 1.35 !important;
    }

    .healpath-home
    .hp-foundation
    .primary-content-hp.hp-foundation-card__body
    > .hp-foundation-card__text {
        margin: 0 !important;

        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    /* -----------------------------------------------------
       Mission and Vision — original stacked mobile layout
       ----------------------------------------------------- */

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlights {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        grid-auto-flow: row !important;
        grid-auto-columns: auto !important;
        align-items: stretch !important;
        gap: 16px !important;

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

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

        scroll-snap-type: none !important;
        scroll-padding-inline: 0 !important;
        overscroll-behavior-inline: auto !important;
        scrollbar-width: none !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlights::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 300px !important;
        height: auto !important;

        margin: 0 !important;

        border-radius: var(--hp-radius-md) !important;
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__content {
        min-height: 300px !important;
        justify-content: flex-end !important;

        padding: 24px !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__icon {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;

        margin-bottom: 16px !important;

        border-width: 2px !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__icon i {
        font-size: 15px !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__label {
        min-height: 28px !important;

        margin-bottom: 14px !important;
        padding-inline: 14px !important;

        font-size: 11px !important;
        letter-spacing: 0.065em !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__title {
        margin-bottom: 14px !important;

        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .healpath-home
    .hp-foundation-mv-row
    .hp-foundation-highlight__text {
        font-size: 13px !important;
        line-height: 1.65 !important;
    }
}

/* =========================================================
   Compliance & Certifications — final mobile layout
   Restore the approved original mobile layout:
   centered auto-width pills stacked vertically.
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-certifications {
        padding: 30px 0 32px !important;
    }

    .healpath-home .hp-certifications__inner {
        width: 100% !important;
        max-width: 430px !important;

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

    .healpath-home .hp-certifications__title {
        max-width: 320px;

        margin: 0 auto 20px !important;

        font-size: 15px !important;
        line-height: 1.4 !important;
        text-align: center;
    }

    .healpath-home .hp-certifications__list {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;

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

        overflow: visible !important;
        scroll-snap-type: none !important;
        scrollbar-width: auto;
    }

    .healpath-home .hp-certifications__list::-webkit-scrollbar {
        display: none;
    }

    .healpath-home
    .hp-certifications
    .cert-item-hp.hp-certifications__item {
        display: inline-flex !important;
        width: fit-content !important;
        min-width: 0 !important;
        max-width: 100% !important;
        min-height: 40px;
        flex: 0 0 auto !important;

        align-items: center;
        justify-content: center;
        gap: 8px;

        margin: 0 auto !important;
        padding: 8px 14px !important;

        border-color: rgba(255, 255, 255, 0.16) !important;

        text-align: center;
        scroll-snap-align: none !important;
    }

    .healpath-home .hp-certifications__icon {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;

        font-size: 8px;
    }

    .healpath-home .hp-certifications__text {
        width: auto;
        min-width: 0;

        font-size: 10.5px !important;
        line-height: 1.4 !important;
        white-space: normal !important;

        overflow-wrap: break-word;
    }
}

/* =========================================================
   Why HealPath / HealPath Advantage — final mobile layout
   - Remove horizontal swipe from the benefit cards.
   - Keep the section centered with safe side spacing.
   - Use compact full-width stacked cards on mobile.
   ========================================================= */

@media (max-width: 767px) {

    .healpath-home .hp-advantage {
        overflow: hidden !important;
    }

    .healpath-home .hp-advantage__layout {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 26px !important;

        width: 100% !important;
        min-width: 0 !important;
    }

    .healpath-home .hp-advantage__media,
    .healpath-home .hp-advantage__content {
        width: 100% !important;
        max-width: 430px !important;
        min-width: 0 !important;

        margin-inline: auto !important;
    }

    .healpath-home .hp-advantage__figure {
        width: 100% !important;
        aspect-ratio: 16 / 10 !important;

        border-radius: 16px !important;
    }

    .healpath-home .hp-advantage__header {
        width: 100% !important;
        max-width: 430px !important;

        margin: 0 auto 20px !important;

        text-align: center !important;
    }

    .healpath-home
    .hp-advantage__header
    .hp-eyebrow-wrap {
        justify-content: center !important;
    }

    .healpath-home
    .hp-advantage__header
    .hp-title {
        max-width: 100% !important;
        white-space: normal !important;
    }

    /* Restore a normal vertical list */
    .healpath-home .hp-advantage__list {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        grid-auto-flow: row !important;
        grid-auto-columns: auto !important;
        align-items: stretch !important;
        gap: 12px !important;

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

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

        overflow: visible !important;

        scroll-snap-type: none !important;
        scroll-padding-inline: 0 !important;
        overscroll-behavior-inline: auto !important;
        scrollbar-width: none !important;
    }

    .healpath-home .hp-advantage__list::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    /* Compact benefit cards */
    .healpath-home .hp-advantage__item {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        height: auto !important;

        grid-template-columns: 42px minmax(0, 1fr) !important;
        align-items: start !important;
        gap: 12px !important;

        margin: 0 !important;
        padding: 14px 15px !important;

        border-radius: 14px !important;

        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
        transform: none !important;
    }

    .healpath-home .hp-advantage__icon {
        width: 42px !important;
        height: 42px !important;

        border-radius: 11px !important;

        font-size: 16px !important;
    }

    .healpath-home .hp-advantage__item-content {
        min-width: 0 !important;
    }

    .healpath-home .hp-advantage__item-content h4 {
        margin: 0 0 5px !important;

        font-size: 15px !important;
        line-height: 1.35 !important;
    }

    .healpath-home .hp-advantage__item-content p {
        margin: 0 !important;

        font-size: 12.5px !important;
        line-height: 1.5 !important;
    }
}

/* Mobile horizontal cards — stability fix */
@media (max-width: 767px) {

    .healpath-home .serve-grid-hp.hp-grid--4,
    .healpath-home .hp-service-panel--core .hp-service-grid .posts-wrap,
    .healpath-home .hp-service-panel--ongoing .hp-service-grid .posts-wrap,
    .healpath-home .hp-service-panel--bundled .hp-service-grid .posts-wrap,
    .healpath-home .hp-process .hp-process__grid,
    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid {
        scroll-snap-type: none !important;
        scroll-padding: 0 !important;
        scroll-behavior: auto !important;
        overflow-anchor: none !important;
    }

    .healpath-home .serve-grid-hp.hp-grid--4 > *,
    .healpath-home .hp-service-panel--core .hp-service-grid .posts-wrap > *,
    .healpath-home .hp-service-panel--ongoing .hp-service-grid .posts-wrap > *,
    .healpath-home .hp-service-panel--bundled .hp-service-grid .posts-wrap > *,
    .healpath-home .hp-process .hp-process__grid > *,
    .healpath-home .hp-contact .contact-grid-hp.hp-contact__grid > * {
        scroll-snap-align: none !important;
        scroll-snap-stop: normal !important;
        overflow-anchor: none !important;
    }
}