﻿:root {
    --hlth-green-dark: #043c24;
    --hlth-green-deep: #07542e;
    --hlth-green: #07883f;
    --hlth-green-bright: #16a857;
    --hlth-green-pale: #e9f8ef;
    --hlth-white: #ffffff;
    --hlth-background: #f7fbf8;
    --hlth-text: #17231c;
    --hlth-muted: #66736b;
    --hlth-border: #dce9e0;
    --hlth-gold: #d4a948;
    --hlth-shadow: 0 18px 50px rgba(5, 70, 38, .12);
    --hlth-small-shadow: 0 10px 30px rgba(5, 70, 38, .08);
    --hlth-radius-large: 30px;
    --hlth-radius: 18px;
    --hlth-transition: 250ms ease;
}

html {
    scroll-behavior: smooth;
}

.hlth-body {
    margin: 0;
    min-width: 320px;
    color: var(--hlth-text);
    background: var(--hlth-white);
}

    .hlth-body.hlth-menu-open {
        overflow: hidden;
    }

.hlth-page,
.hlth-page * {
    box-sizing: border-box;
}

.hlth-page {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--hlth-text);
    background: var(--hlth-white);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

    .hlth-page img {
        display: block;
        max-width: 100%;
    }

    .hlth-page a {
        color: inherit;
        text-decoration: none;
    }

    .hlth-page button,
    .hlth-page input,
    .hlth-page select,
    .hlth-page textarea {
        font: inherit;
    }

.hlth-container {
    width: min(1180px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.hlth-heading {
    margin-top: 0;
    color: var(--hlth-green-dark);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    line-height: 1.08;
}

    .hlth-heading span {
        display: block;
        color: var(--hlth-green);
    }

.hlth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hlth-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

    .hlth-kicker::before {
        width: 28px;
        height: 2px;
        content: "";
        background: var(--hlth-green);
    }

.hlth-button {
    min-height: 48px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: color var(--hlth-transition), background var(--hlth-transition), border-color var(--hlth-transition), transform var(--hlth-transition), box-shadow var(--hlth-transition);
}

    .hlth-button:hover {
        transform: translateY(-2px);
    }

.hlth-button-primary {
    color: var(--hlth-white) !important;
    background: linear-gradient(135deg, var(--hlth-green-deep), var(--hlth-green-bright));
    box-shadow: 0 12px 28px rgba(7, 136, 63, .25);
}

    .hlth-button-primary:hover {
        box-shadow: 0 16px 34px rgba(7, 136, 63, .34);
    }

.hlth-button-outline {
    color: var(--hlth-green-deep) !important;
    background: rgba(255, 255, 255, .78);
    border-color: var(--hlth-green);
}

.hlth-topbar {
    color: var(--hlth-white);
    background: linear-gradient(90deg, var(--hlth-green-dark), var(--hlth-green));
    font-size: 13px;
}

.hlth-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.hlth-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(7, 84, 46, .10);
    transition: box-shadow var(--hlth-transition);
}

    .hlth-header.hlth-header-scrolled {
        box-shadow: 0 10px 30px rgba(5, 70, 38, .10);
    }

.hlth-navbar {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.hlth-logo {
    width: 190px;
    flex: 0 0 auto;
}

    .hlth-logo img {
        width: 100%;
        height: 74px;
        object-fit: contain;
    }

.hlth-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 27px;
}

    .hlth-navigation a {
        position: relative;
        padding: 35px 0 32px;
        color: #26342c;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
    }

        .hlth-navigation a::after {
            width: 0;
            height: 2px;
            position: absolute;
            right: 0;
            bottom: 25px;
            left: 0;
            margin: auto;
            content: "";
            background: var(--hlth-green);
            transition: width var(--hlth-transition);
        }

        .hlth-navigation a:hover {
            color: var(--hlth-green);
        }

            .hlth-navigation a:hover::after {
                width: 100%;
            }

.hlth-navbar-button {
    white-space: nowrap;
}

.hlth-menu-button {
    width: 46px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
    display: none;
    border: 1px solid var(--hlth-border);
    border-radius: 10px;
    background: var(--hlth-white);
    cursor: pointer;
}

    .hlth-menu-button span {
        width: 100%;
        height: 2px;
        display: block;
        margin: 5px 0;
        background: var(--hlth-green-dark);
    }

.hlth-main {
    display: block;
}

.hlth-hero {
    min-height: 590px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #eff9f3;
    background-image: linear-gradient( 90deg, rgba(244, 253, 248, 1) 0%, rgba(244, 253, 248, .98) 39%, rgba(244, 253, 248, .20) 66%, rgba(244, 253, 248, .04) 100% ), url("../images/hlthhero-background.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .hlth-hero::after {
        position: absolute;
        inset: 0;
        content: "";
        pointer-events: none;
        background: radial-gradient(circle at 8% 18%, rgba(7, 136, 63, .11), transparent 17%), linear-gradient(transparent 49%, rgba(7, 136, 63, .05) 50%, transparent 51%);
        background-size: auto, 100% 130px;
    }

.hlth-hero-inner {
    position: relative;
    z-index: 2;
}

.hlth-hero-content {
    width: min(650px, 55%);
    padding: 90px 0 120px;
    opacity: 1;
    visibility: visible;
}

.hlth-hero-heading {
    margin: 16px 0 24px;
    font-size: clamp(50px, 5.4vw, 78px);
}

.hlth-hero-text {
    max-width: 540px;
    margin: 0 0 32px;
    color: #34433a;
    font-size: clamp(18px, 2vw, 22px);
}

.hlth-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hlth-trust-section {
    position: relative;
    z-index: 5;
    margin-top: -45px;
}

.hlth-trust-grid {
    min-height: 92px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--hlth-white);
    border: 1px solid rgba(7, 84, 46, .09);
    border-radius: var(--hlth-radius);
    box-shadow: var(--hlth-shadow);
}

.hlth-trust-item {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-right: 1px solid var(--hlth-border);
    color: #26332b;
    font-size: 13px;
    text-transform: uppercase;
}

    .hlth-trust-item:last-child {
        border-right: 0;
    }

    .hlth-trust-item span {
        width: 42px;
        height: 42px;
        display: grid;
        flex: 0 0 auto;
        place-items: center;
        color: var(--hlth-white);
        background: var(--hlth-green);
        border-radius: 50%;
        font-weight: 800;
    }

.hlth-category-section {
    padding: 45px 0 90px;
    background: linear-gradient(180deg, #ffffff, #f4fbf7);
}

.hlth-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.hlth-category-card {
    overflow: hidden;
    background: var(--hlth-white);
    border: 1px solid var(--hlth-border);
    border-radius: var(--hlth-radius);
    box-shadow: var(--hlth-small-shadow);
    transition: transform var(--hlth-transition), box-shadow var(--hlth-transition);
}

    .hlth-category-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--hlth-shadow);
    }

    .hlth-category-card img {
        width: 100%;
        height: 145px;
        object-fit: cover;
    }

.hlth-card-heading {
    margin: 0;
    font-size: 17px;
}

.hlth-category-card .hlth-card-heading {
    min-height: 75px;
    padding: 19px 12px;
    display: grid;
    place-items: center;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 13px;
    text-align: center;
    text-transform: uppercase;
}

.hlth-about-section {
    padding: 110px 0;
    background: var(--hlth-white);
}

.hlth-about-panel {
    min-height: 540px;
    display: grid;
    grid-template-columns: 48% 52%;
    overflow: hidden;
    background: #f5fbf7;
    border: 1px solid var(--hlth-border);
    border-radius: var(--hlth-radius-large);
    box-shadow: var(--hlth-shadow);
}

.hlth-about-image {
    min-height: 540px;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(245, 251, 247, .10)), url("../images/helthabout-background.png");
    background-position: center;
    background-size: cover;
}

.hlth-about-content {
    padding: 75px 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.hlth-section-heading {
    margin: 14px 0 20px;
    font-size: clamp(38px, 4vw, 58px);
}

.hlth-about-content p {
    margin: 0 0 16px;
    color: var(--hlth-muted);
}

.hlth-about-features {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .hlth-about-features span {
        padding: 10px 14px;
        color: var(--hlth-green-deep);
        background: var(--hlth-white);
        border: 1px solid var(--hlth-border);
        border-radius: 10px;
        box-shadow: var(--hlth-small-shadow);
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
    }

.hlth-purpose-section {
    position: relative;
    padding: 110px 0 120px;
    overflow: hidden;
    color: var(--hlth-white);
    background: radial-gradient(circle at 10% 15%, rgba(41, 196, 101, .22), transparent 25%), radial-gradient(circle at 88% 80%, rgba(212, 169, 72, .15), transparent 23%), linear-gradient(135deg, #032f1d, #075b33 55%, #043c24);
}

    .hlth-purpose-section::before {
        position: absolute;
        inset: 0;
        content: "";
        opacity: .16;
        background-image: radial-gradient(rgba(255, 255, 255, .8) 1px, transparent 1px);
        background-size: 20px 20px;
    }

    .hlth-purpose-section .hlth-container {
        position: relative;
        z-index: 2;
    }

.hlth-section-intro {
    max-width: 770px;
    margin: 0 auto 50px;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

    .hlth-section-intro p {
        margin: 0 auto;
        color: var(--hlth-muted);
        font-size: 17px;
    }

    .hlth-section-intro .hlth-kicker::before {
        display: none;
    }

.hlth-section-intro-light .hlth-kicker {
    color: #9ce3b7;
}

.hlth-section-intro-light .hlth-section-heading {
    color: var(--hlth-white);
}

.hlth-section-intro-light p {
    color: rgba(255, 255, 255, .72);
}

.hlth-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hlth-purpose-card {
    min-height: 370px;
    position: relative;
    padding: 42px 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
    backdrop-filter: blur(14px);
    opacity: 1;
    visibility: visible;
    transition: transform var(--hlth-transition), background var(--hlth-transition);
}

    .hlth-purpose-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, .14);
    }

.hlth-purpose-card-featured {
    background: linear-gradient(145deg, rgba(255, 255, 255, .19), rgba(255, 255, 255, .10));
    border-color: rgba(212, 169, 72, .55);
}

.hlth-purpose-number {
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(255, 255, 255, .13);
    font-family: Georgia, serif;
    font-size: 78px;
    line-height: 1;
}

.hlth-purpose-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 25px;
    display: grid;
    place-items: center;
    color: var(--hlth-green-dark);
    background: linear-gradient(145deg, #ffffff, #bcf0cf);
    border-radius: 18px;
    font-size: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
}

.hlth-purpose-card > span {
    color: #a8e7be;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hlth-purpose-heading {
    margin: 12px 0 17px;
    color: var(--hlth-white);
    font-size: 32px;
}

.hlth-purpose-card p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
}

.hlth-services-section,
.hlth-products-section {
    padding: 110px 0;
}

.hlth-services-section {
    background: var(--hlth-white);
}

.hlth-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hlth-service-card {
    overflow: hidden;
    background: var(--hlth-white);
    border: 1px solid var(--hlth-border);
    border-radius: var(--hlth-radius);
    box-shadow: var(--hlth-small-shadow);
    opacity: 1;
    visibility: visible;
    transition: transform var(--hlth-transition), box-shadow var(--hlth-transition);
}

    .hlth-service-card:hover {
        transform: translateY(-7px);
        box-shadow: var(--hlth-shadow);
    }

    .hlth-service-card > img {
        width: 100%;
        height: 235px;
        object-fit: cover;
    }

.hlth-service-content {
    padding: 23px 24px 26px;
}

    .hlth-service-content .hlth-card-heading {
        margin-bottom: 9px;
        font-size: 21px;
    }

    .hlth-service-content p {
        margin: 0;
        color: var(--hlth-muted);
        font-size: 14px;
    }

.hlth-service-list {
    margin-top: 30px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    background: var(--hlth-green-pale);
    border: 1px solid var(--hlth-border);
    border-radius: var(--hlth-radius);
}

    .hlth-service-list span {
        padding: 8px 13px;
        color: var(--hlth-green-deep);
        background: var(--hlth-white);
        border-radius: 999px;
        font-size: 12px;
        font-weight: 700;
    }

.hlth-products-section {
    background: radial-gradient(circle at 95% 4%, rgba(7, 136, 63, .09), transparent 20%), var(--hlth-background);
}

.hlth-product-tools {
    margin-bottom: 30px;
    padding: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--hlth-white);
    border: 1px solid var(--hlth-border);
    border-radius: var(--hlth-radius);
    box-shadow: var(--hlth-small-shadow);
}

.hlth-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hlth-filter-button {
    padding: 10px 15px;
    color: #425047;
    background: var(--hlth-background);
    border: 1px solid var(--hlth-border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

    .hlth-filter-button:hover,
    .hlth-filter-button.hlth-filter-active {
        color: var(--hlth-white);
        background: var(--hlth-green);
        border-color: var(--hlth-green);
    }

.hlth-product-search {
    width: min(290px, 100%);
    min-height: 44px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--hlth-background);
    border: 1px solid var(--hlth-border);
    border-radius: 999px;
}

    .hlth-product-search input {
        width: 100%;
        border: 0;
        outline: 0;
        background: transparent;
    }

.hlth-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hlth-product-card {
    overflow: hidden;
    background: var(--hlth-white);
    border: 1px solid var(--hlth-border);
    border-radius: var(--hlth-radius);
    box-shadow: var(--hlth-small-shadow);
    opacity: 1;
    visibility: visible;
    transition: transform var(--hlth-transition), box-shadow var(--hlth-transition);
}

    .hlth-product-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--hlth-shadow);
    }

    .hlth-product-card[hidden] {
        display: none !important;
    }

.hlth-product-image {
    height: 220px;
    padding: 15px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #ffffff, #f1f8f4);
}

    .hlth-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.hlth-product-content {
    min-height: 120px;
    padding: 20px;
    border-top: 1px solid var(--hlth-border);
}

    .hlth-product-content .hlth-card-heading {
        min-height: 46px;
        margin-bottom: 10px;
        font-family: "DM Sans", Arial, sans-serif;
        font-size: 16px;
    }

    .hlth-product-content a {
        color: var(--hlth-green);
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
    }

.hlth-empty-products {
    margin-top: 30px;
    padding: 30px;
    color: var(--hlth-muted);
    background: var(--hlth-white);
    border: 1px dashed var(--hlth-border);
    border-radius: var(--hlth-radius);
    text-align: center;
}

.hlth-contact-section {
    padding: 110px 0;
    color: var(--hlth-white);
    background: radial-gradient(circle at 90% 10%, rgba(27, 173, 88, .23), transparent 25%), linear-gradient(135deg, #032f1d, #07542e);
}

.hlth-contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.hlth-contact-content {
    opacity: 1;
    visibility: visible;
}

    .hlth-contact-content .hlth-kicker {
        color: #a9e8bf;
    }

        .hlth-contact-content .hlth-kicker::before {
            background: #a9e8bf;
        }

    .hlth-contact-content .hlth-section-heading {
        color: var(--hlth-white);
    }

        .hlth-contact-content .hlth-section-heading span {
            color: #a9e8bf;
        }

    .hlth-contact-content > p {
        color: rgba(255, 255, 255, .72);
    }

.hlth-contact-details {
    margin-top: 35px;
    display: grid;
    gap: 11px;
}

    .hlth-contact-details a,
    .hlth-contact-details div {
        padding: 14px 17px;
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .13);
        border-radius: 13px;
    }

    .hlth-contact-details strong {
        color: #a9e8bf;
        font-size: 11px;
        letter-spacing: .10em;
        text-transform: uppercase;
    }

.hlth-contact-form {
    padding: 38px;
    color: var(--hlth-text);
    background: var(--hlth-white);
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .24);
    opacity: 1;
    visibility: visible;
}

.hlth-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
}

.hlth-form-field {
    display: grid;
    gap: 7px;
}

    .hlth-form-field > span {
        color: #3e4c43;
        font-size: 12px;
        font-weight: 800;
    }

    .hlth-form-field input,
    .hlth-form-field select,
    .hlth-form-field textarea {
        width: 100%;
        padding: 13px 14px;
        color: var(--hlth-text);
        background: #f7faf8;
        border: 1px solid var(--hlth-border);
        border-radius: 10px;
        outline: 0;
    }

        .hlth-form-field input:focus,
        .hlth-form-field select:focus,
        .hlth-form-field textarea:focus {
            border-color: var(--hlth-green);
            box-shadow: 0 0 0 3px rgba(7, 136, 63, .10);
        }

.hlth-form-field-full {
    grid-column: 1 / -1;
}

.hlth-form-field textarea {
    min-height: 125px;
    resize: vertical;
}

.hlth-submit-button {
    width: 100%;
    margin-top: 20px;
    border: 0;
}

.hlth-form-message {
    margin: 14px 0 0;
    padding: 11px;
    color: var(--hlth-green-deep);
    background: var(--hlth-green-pale);
    border-radius: 9px;
    text-align: center;
}

.hlth-footer {
    position: relative;
    color: rgba(255, 255, 255, .70);
    background: #021e13;
}

.hlth-footer-grid {
    padding: 75px 0 55px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
}

.hlth-footer-brand img {
    width: 210px;
    height: 85px;
    padding: 8px;
    object-fit: contain;
    background: var(--hlth-white);
    border-radius: 12px;
}

.hlth-footer-brand p {
    max-width: 360px;
}

.hlth-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.hlth-footer-heading {
    margin-bottom: 9px;
    color: var(--hlth-white);
    font-size: 19px;
}

.hlth-footer-column a:hover {
    color: #a9e8bf;
}

.hlth-footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: 12px;
}

    .hlth-footer-bottom div {
        display: flex;
        gap: 20px;
    }

.hlth-back-top {
    width: 46px;
    height: 46px;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: none;
    place-items: center;
    color: var(--hlth-white);
    background: var(--hlth-green);
    border: 0;
    border-radius: 50%;
    box-shadow: var(--hlth-shadow);
    cursor: pointer;
}

    .hlth-back-top.hlth-back-top-visible {
        display: grid;
    }

@media (max-width: 1080px) {
    .hlth-navigation {
        gap: 16px;
    }

    .hlth-navbar-button {
        display: none;
    }

    .hlth-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hlth-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hlth-about-content {
        padding: 55px 40px;
    }
}

@media (max-width: 850px) {
    .hlth-topbar-inner {
        justify-content: center;
    }

        .hlth-topbar-inner span {
            display: none;
        }

    .hlth-navbar {
        min-height: 82px;
    }

    .hlth-logo {
        width: 165px;
    }

        .hlth-logo img {
            height: 62px;
        }

    .hlth-menu-button {
        display: block;
    }

    .hlth-navigation {
        position: fixed;
        top: 120px;
        right: 20px;
        left: 20px;
        padding: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--hlth-white);
        border: 1px solid var(--hlth-border);
        border-radius: var(--hlth-radius);
        box-shadow: var(--hlth-shadow);
    }

        .hlth-navigation.hlth-navigation-open {
            display: flex;
        }

        .hlth-navigation a {
            padding: 13px 10px;
            border-bottom: 1px solid var(--hlth-border);
        }

            .hlth-navigation a:last-child {
                border-bottom: 0;
            }

            .hlth-navigation a::after {
                display: none;
            }

    .hlth-hero {
        min-height: 720px;
        align-items: flex-end;
        background-image: linear-gradient( 180deg, rgba(244, 253, 248, .05) 0%, rgba(244, 253, 248, .36) 38%, rgba(244, 253, 248, .98) 66%, rgba(244, 253, 248, 1) 100% ), url("../images/oxiaura-health/hero-background.png");
        background-position: 65% center;
    }

    .hlth-hero-content {
        width: 100%;
        padding: 360px 0 85px;
    }

    .hlth-hero-heading {
        font-size: clamp(43px, 10vw, 66px);
    }

    .hlth-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hlth-trust-item:nth-child(2) {
        border-right: 0;
    }

    .hlth-trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--hlth-border);
    }

    .hlth-about-panel {
        grid-template-columns: 1fr;
    }

    .hlth-about-image {
        min-height: 440px;
        background-position: left center;
    }

    .hlth-purpose-grid,
    .hlth-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hlth-purpose-card-featured {
        transform: none;
    }

    .hlth-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hlth-product-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .hlth-product-search {
        width: 100%;
    }

    .hlth-contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hlth-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 580px) {
    .hlth-container {
        width: min(100% - 26px, 1180px);
    }

    .hlth-hero {
        min-height: 670px;
    }

    .hlth-hero-content {
        padding-top: 315px;
    }

    .hlth-hero-heading {
        font-size: 44px;
    }

    .hlth-button-row .hlth-button {
        width: 100%;
    }

    .hlth-trust-section {
        margin-top: -30px;
    }

    .hlth-trust-grid {
        grid-template-columns: 1fr;
    }

    .hlth-trust-item {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--hlth-border);
    }

        .hlth-trust-item:nth-child(2) {
            border-bottom: 1px solid var(--hlth-border);
        }

        .hlth-trust-item:last-child {
            border-bottom: 0;
        }

    .hlth-category-grid,
    .hlth-purpose-grid,
    .hlth-services-grid,
    .hlth-products-grid,
    .hlth-footer-grid {
        grid-template-columns: 1fr;
    }

    .hlth-category-card img {
        height: 210px;
    }

    .hlth-about-section,
    .hlth-purpose-section,
    .hlth-services-section,
    .hlth-products-section,
    .hlth-contact-section {
        padding: 80px 0;
    }

    .hlth-about-image {
        min-height: 350px;
    }

    .hlth-about-content {
        padding: 40px 25px;
    }

    .hlth-section-heading {
        font-size: 38px;
    }

    .hlth-purpose-card {
        min-height: 0;
    }

    .hlth-service-card > img {
        height: 220px;
    }

    .hlth-product-image {
        height: 280px;
    }

    .hlth-form-grid {
        grid-template-columns: 1fr;
    }

    .hlth-form-field-full {
        grid-column: auto;
    }

    .hlth-contact-form {
        padding: 26px 20px;
    }

    .hlth-footer-bottom {
        padding: 22px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}
