/*
Theme Name: Zevor Healthcare
Theme URI: https://zevorhealthcare.com/
Author: Zevor Healthcare
Description: Custom corporate website theme for Zevor Healthcare.
Version: 1.0
*/

/* =========================================================
   ZEvor Healthcare — Design Foundation
   ========================================================= */

:root {
    --zevor-dark: #0B1418;
    --zevor-teal: #0FBF9F;
    --zevor-blue: #1596D6;
    --zevor-slate: #F4F7F9;
    --zevor-white: #FFFFFF;

    --text-main: #17242A;
    --text-muted: #60717A;
    --border: #DCE5E9;

    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;

    --shadow-soft: 0 10px 35px rgba(11, 20, 24, 0.07);
}

/* =========================================================
   Reset
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--zevor-white);
    color: var(--text-main);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

/* =========================================================
   Layout
   ========================================================= */

.zevor-container {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}

.zevor-section {
    padding: 110px 0;
}

.zevor-section--slate {
    background: var(--zevor-slate);
}

.zevor-section--dark {
    background: var(--zevor-dark);
    color: var(--zevor-white);
}

/* =========================================================
   Typography
   ========================================================= */

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--zevor-dark);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

h1 {
    font-size: clamp(48px, 6vw, 82px);
}

h2 {
    font-size: clamp(36px, 4vw, 56px);
}

h3 {
    font-size: clamp(24px, 2.5vw, 34px);
}

p {
    color: var(--text-muted);
}

.zevor-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--zevor-teal);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.zevor-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.zevor-lead {
    max-width: 680px;
    font-size: 19px;
    line-height: 1.75;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--zevor-dark);
}

.site-brand img {
    max-height: 32px;
    width: auto;
    display: block;
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-navigation a {
    position: relative;
    color: #35454D;
    font-size: 14px;
    font-weight: 600;
    transition:
        color 180ms ease,
        opacity 180ms ease;
}

.site-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: var(--zevor-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-navigation a:hover {
    color: var(--zevor-dark);
}

.site-navigation a:hover::after {
    transform: scaleX(1);
}

/* =========================================================
   Buttons
   ========================================================= */

.zevor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease,
        color 180ms ease,
        box-shadow 180ms ease;
}

.zevor-button:hover {
    transform: translateY(-2px);
}

.zevor-button:active {
    transform: scale(0.98);
}

.zevor-button--primary {
    background: var(--zevor-dark);
    color: var(--zevor-white);
}

.zevor-button--primary:hover {
    background: #16252B;
    box-shadow: 0 10px 25px rgba(11, 20, 24, 0.16);
}

.zevor-button--teal {
    background: var(--zevor-teal);
    color: var(--zevor-dark);
}

.zevor-button--outline {
    background: transparent;
    border-color: var(--border);
    color: var(--zevor-dark);
}

.zevor-button--outline:hover {
    border-color: var(--zevor-dark);
}

/* =========================================================
   Hero
   ========================================================= */

.zevor-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
    background: var(--zevor-dark);
}

.zevor-hero__inner {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.zevor-hero h1 {
    max-width: 850px;
    margin-bottom: 30px;
    color: var(--zevor-white);
}

.zevor-hero h1 span {
    background: linear-gradient(
        110deg,
        var(--zevor-teal),
        var(--zevor-blue)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.zevor-hero__description {
    max-width: 680px;
    margin-bottom: 38px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.72);
}

.zevor-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Architectural hero detail */

.zevor-hero::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -250px;
    top: 40px;
    border: 1px solid rgba(21, 150, 214, 0.16);
    border-radius: 50%;
}

.zevor-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: 140px;
    border: 1px solid rgba(15, 191, 159, 0.18);
    border-radius: 50%;
}

/* =========================================================
   Value Strip
   ========================================================= */

.zevor-value-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--zevor-slate);
}

.zevor-value-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.zevor-value-item {
    padding: 30px 32px;
    border-right: 1px solid var(--border);
}

.zevor-value-item:first-child {
    padding-left: 0;
}

.zevor-value-item:last-child {
    border-right: 0;
}

.zevor-value-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--zevor-dark);
    font-size: 15px;
}

.zevor-value-item span {
    color: var(--text-muted);
    font-size: 14px;
}

/* =========================================================
   Cards
   ========================================================= */

.zevor-card {
    background: var(--zevor-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 34px;
    box-shadow: var(--shadow-soft);
}

.zevor-card h3 {
    margin-bottom: 14px;
}

.zevor-card p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   Two Column Sections
   ========================================================= */

.zevor-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.zevor-section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.zevor-section-heading h2 {
    margin-bottom: 20px;
}

/* =========================================================
   Dark Partnership CTA
   ========================================================= */

.zevor-partnership {
    position: relative;
    overflow: hidden;
    background: var(--zevor-dark);
    color: var(--zevor-white);
}

.zevor-partnership__inner {
    position: relative;
    z-index: 2;
    padding: 115px 0;
}

.zevor-partnership h2 {
    max-width: 760px;
    color: var(--zevor-white);
    margin-bottom: 24px;
}

.zevor-partnership p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
}

.zevor-partnership::before,
.zevor-partnership::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(15, 191, 159, 0.22);
    border-radius: 50%;
}

.zevor-partnership::before {
    width: 700px;
    height: 700px;
    right: -280px;
    top: -230px;
}

.zevor-partnership::after {
    width: 480px;
    height: 480px;
    right: -150px;
    top: -120px;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    background: var(--zevor-slate);
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    padding: 65px 0 28px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

.site-footer h3 {
    margin-bottom: 18px;
    font-size: 18px;
}

.site-footer p {
    max-width: 420px;
    font-size: 14px;
}

.site-footer a {
    display: block;
    width: fit-content;
    margin-bottom: 9px;
    color: var(--text-muted);
    font-size: 14px;
    transition: color 180ms ease;
}

.site-footer a:hover {
    color: var(--zevor-dark);
}

.site-footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.site-footer__bottom p {
    margin: 0;
    font-size: 13px;
}

/* =========================================================
   WordPress Defaults
   ========================================================= */

.wp-block-image {
    margin-bottom: 30px;
}

.wp-block-button__link {
    border-radius: 999px;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100%;
}

/* =========================================================
   Accessibility
   ========================================================= */

:focus-visible {
    outline: 3px solid rgba(15, 191, 159, 0.45);
    outline-offset: 3px;
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 900px) {

    .zevor-section {
        padding: 80px 0;
    }

    .zevor-container {
        width: min(100% - 36px, var(--container));
    }

    .site-header__inner {
        min-height: 72px;
    }

    .site-navigation {
        gap: 18px;
    }

    .zevor-two-column {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .zevor-value-strip__grid {
        grid-template-columns: 1fr;
    }

    .zevor-value-item,
    .zevor-value-item:first-child {
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .zevor-value-item:last-child {
        border-bottom: 0;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 650px) {

    .zevor-container {
        width: min(100% - 28px, var(--container));
    }

    .zevor-section {
        padding: 65px 0;
    }

    .zevor-hero {
        min-height: auto;
    }

    .zevor-hero__inner {
        padding: 75px 0;
    }

    .zevor-hero h1 {
        font-size: clamp(42px, 13vw, 62px);
    }

    .zevor-hero__description {
        font-size: 17px;
    }

    .zevor-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .zevor-button {
        width: 100%;
    }

    .site-navigation {
        display: none;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .zevor-partnership__inner {
        padding: 75px 0;
    }
}
/* =========================================
   Zevor Healthcare — Header & Navigation
   ========================================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5ecef;
}

.zevor-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}

.site-header__inner {
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-brand {
    color: #0b1418;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.site-navigation {
    display: flex;
    align-items: center;
}

.site-navigation ul {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-navigation li {
    margin: 0;
    padding: 0;
}

.site-navigation a {
    color: #0b1418;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.site-navigation a:hover {
    color: #0fbf9f;
}

/* Mobile navigation */
@media (max-width: 900px) {
    .zevor-container {
        width: min(100% - 40px, 680px);
    }

    .site-header__inner {
        min-height: 88px;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        padding: 20px 0;
    }

    .site-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
}
/* =========================================
   ZEVOR INTERNAL PAGES
   ========================================= */

.inner-hero {
    padding: 150px 0 120px;
    background: #ffffff;
    border-bottom: 1px solid #e2e9ed;
}

.inner-hero h1 {
    max-width: 950px;
    margin: 28px 0 28px;
    font-size: clamp(52px, 7vw, 92px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.inner-hero p {
    max-width: 720px;
    font-size: 21px;
    line-height: 1.7;
    color: #587187;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #0fbf9f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: #0fbf9f;
}

.content-section {
    padding: 120px 0;
    background: #ffffff;
}

.light-section {
    padding: 120px 0;
    background: #f4f7f9;
}

.zevor-container {
    width: min(1380px, calc(100% - 80px));
    margin: 0 auto;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.two-column h2 {
    max-width: 650px;
    margin-top: 28px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.two-column p {
    margin: 0 0 28px;
    font-size: 19px;
    line-height: 1.75;
    color: #587187;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.info-card,
.large-card,
.contact-card {
    background: #ffffff;
    border: 1px solid #dce5ea;
    border-radius: 22px;
    padding: 42px;
}

.info-card {
    min-height: 230px;
}

.info-card span,
.card-number {
    color: #0fbf9f;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.info-card h3,
.large-card h2 {
    margin: 28px 0 15px;
    font-size: 30px;
    letter-spacing: -0.025em;
}

.info-card p,
.large-card p {
    color: #587187;
    font-size: 17px;
    line-height: 1.65;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.large-card {
    min-height: 300px;
    padding: 48px;
}

.large-card h2 {
    font-size: 42px;
}

.dark-page {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background: #0b1418;
    color: #ffffff;
}

.dark-page::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(15, 191, 159, 0.2);
    border-radius: 50%;
    right: -180px;
    top: -100px;
}

.dark-page h1 {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 30px 0;
    font-size: clamp(52px, 7vw, 92px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.dark-page p {
    position: relative;
    z-index: 1;
    max-width: 720px;
    color: #b8c7ce;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.zevor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border: 0;
    border-radius: 999px;
    background: #0b1418;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.teal-button {
    position: relative;
    z-index: 2;
    background: #0fbf9f;
    color: #071114;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.contact-layout h2 {
    margin: 28px 0;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.contact-layout p {
    max-width: 560px;
    color: #587187;
    font-size: 18px;
    line-height: 1.7;
}

.contact-layout > div:first-child a {
    display: inline-block;
    margin-top: 20px;
    color: #1596d6;
    font-weight: 600;
    text-decoration: none;
}

.contact-card form {
    display: grid;
    gap: 22px;
}

.contact-card label {
    display: grid;
    gap: 9px;
    font-weight: 600;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 17px;
    border: 1px solid #d5e0e5;
    border-radius: 10px;
    background: #ffffff;
    font: inherit;
}

.contact-card textarea {
    resize: vertical;
}

@media (max-width: 800px) {

    .zevor-container {
        width: min(100% - 40px, 1380px);
    }

    .inner-hero,
    .content-section,
    .light-section,
    .dark-page {
        padding: 90px 0;
    }

    .two-column,
    .card-grid,
    .approach-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .inner-hero h1,
    .dark-page h1 {
        font-size: 52px;
    }

}
.form-message {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 10px;
    font-size: 15px;
}

.form-message.success {
    background: #e8f8f4;
    border: 1px solid #b8e9df;
}

.form-message.error {
    background: #fff1f1;
    border: 1px solid #f0cccc;
}
/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0B1418;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-navigation {
    display: none;
}


/* =========================================================
   MOBILE BREAKPOINT
   ========================================================= */

@media (max-width: 767px) {

    .site-header__inner {
        min-height: 72px;
    }

    .site-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-navigation {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: #FFFFFF;
        border-top: 1px solid transparent;
        transition:
            max-height 0.3s ease,
            border-color 0.3s ease;
    }

    .mobile-navigation.is-open {
        max-height: 420px;
        border-top-color: #E3EAEE;
    }

    .mobile-navigation__inner {
        padding: 10px 20px 22px;
    }

    .mobile-menu {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .mobile-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #E8EEF1;
    }

    .mobile-menu li:last-child {
        border-bottom: 0;
    }

    .mobile-menu a {
        display: block;
        padding: 16px 2px;
        color: #0B1418;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
    }

    .mobile-menu a:hover,
    .mobile-menu a:focus {
        color: #0FBF9F;
    }

}
/* =========================================================
   ZEVOR HEALTHCARE — HOMEPAGE EDITORIAL SYSTEM
   ========================================================= */

.zevor-home {
    overflow: hidden;
}

/* ---------------------------------------------------------
   Editorial image layouts
   --------------------------------------------------------- */

.zevor-editorial-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 90px;
    align-items: center;
}

.zevor-editorial-copy h2 {
    max-width: 680px;
    margin-bottom: 28px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.zevor-editorial-copy p {
    max-width: 620px;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.75;
}

.zevor-editorial-copy .zevor-lead {
    margin-bottom: 28px;
}

.zevor-editorial-image {
    margin: 0;
}

.zevor-editorial-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 2px;
}

.zevor-editorial-image figcaption {
    margin-top: 12px;
    color: #84939a;
    font-size: 12px;
    line-height: 1.5;
}

/* ---------------------------------------------------------
   Text links
   --------------------------------------------------------- */

.zevor-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--zevor-dark);
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid var(--zevor-dark);
    padding-bottom: 5px;
    transition:
        gap 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.zevor-text-link span {
    font-size: 17px;
}

.zevor-text-link:hover {
    gap: 15px;
    color: var(--zevor-teal);
    border-color: var(--zevor-teal);
}


/* ---------------------------------------------------------
   Homepage section heading
   --------------------------------------------------------- */

.zevor-home-section-heading {
    max-width: 780px;
    margin-bottom: 70px;
}

.zevor-home-section-heading h2 {
    margin-bottom: 24px;
}


/* ---------------------------------------------------------
   Our Approach editorial layout
   --------------------------------------------------------- */

.zevor-approach-editorial {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 90px;
    align-items: start;
}

.zevor-approach-image {
    margin: 0;
}

.zevor-approach-image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.zevor-approach-image figcaption {
    margin-top: 12px;
    color: #84939a;
    font-size: 12px;
}

.zevor-principles {
    border-top: 1px solid var(--border);
}

.zevor-principle {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
}

.zevor-principle > span {
    color: var(--zevor-teal);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.zevor-principle h3 {
    margin: 0 0 8px;
    color: var(--zevor-dark);
    font-size: 22px;
    letter-spacing: -0.025em;
}

.zevor-principle p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}

.zevor-approach-link {
    margin-top: 42px;
}


/* ---------------------------------------------------------
   Quality
   --------------------------------------------------------- */

.zevor-quality-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.zevor-quality-image-wrap {
    order: 1;
}

.zevor-quality-grid .zevor-editorial-copy {
    order: 2;
}

.zevor-quality-list {
    margin: 38px 0 20px;
    border-top: 1px solid var(--border);
}

.zevor-quality-list > div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
}

.zevor-quality-list span {
    min-width: 25px;
    color: var(--zevor-teal);
    font-size: 12px;
    font-weight: 700;
}

.zevor-quality-list strong {
    color: var(--zevor-dark);
    font-size: 15px;
}


/* ---------------------------------------------------------
   Hero refinement
   --------------------------------------------------------- */

.zevor-home-hero {
    min-height: 690px;
}

.zevor-home-hero .zevor-eyebrow {
    margin-bottom: 24px;
}

.zevor-home-hero h1 {
    max-width: 900px;
}

.zevor-home-hero .zevor-button--outline {
    background: rgba(255, 255, 255, 0.72);
}


/* ---------------------------------------------------------
   Image treatment
   --------------------------------------------------------- */

.zevor-home-about .zevor-editorial-image img,
.zevor-home-quality .zevor-editorial-image img {
    box-shadow: 0 25px 60px rgba(11, 20, 24, 0.09);
}


/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .zevor-editorial-grid,
    .zevor-approach-editorial {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .zevor-editorial-copy {
        order: 1;
    }

    .zevor-editorial-image {
        order: 2;
    }

    .zevor-editorial-image img,
    .zevor-approach-image img {
        height: 500px;
    }

    .zevor-quality-image-wrap {
        order: 2;
    }

    .zevor-quality-grid .zevor-editorial-copy {
        order: 1;
    }

    .zevor-home-section-heading {
        margin-bottom: 50px;
    }
}


@media (max-width: 650px) {

    .zevor-home-hero {
        min-height: auto;
    }

    .zevor-editorial-copy h2 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .zevor-editorial-copy p {
        font-size: 17px;
    }

    .zevor-editorial-image img,
    .zevor-approach-image img {
        height: 390px;
    }

    .zevor-principle {
        grid-template-columns: 32px 1fr;
        gap: 14px;
    }

    .zevor-principle h3 {
        font-size: 20px;
    }

    .zevor-quality-list {
        margin-top: 30px;
    }

}
/* =========================================================
   HOMEPAGE CTA BUTTON FIX
   ========================================================= */

.zevor-partnership .zevor-button--teal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 26px;
    background: var(--zevor-teal);
    color: var(--zevor-dark);
    border: 1px solid var(--zevor-teal);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.zevor-partnership .zevor-button--teal:hover {
    background: #18cbaa;
    border-color: #18cbaa;
    color: var(--zevor-dark);
    transform: translateY(-2px);
}
/* =========================================================
   ZEVOR HOMEPAGE — CONTENT EXPANSION
   ========================================================= */

.image-caption {
    margin: 10px 0 0;
    color: #7A8A92;
    font-size: 12px;
    line-height: 1.5;
}

/* Healthcare perspective */

.zevor-perspective-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
}

.zevor-perspective-item {
    padding: 34px 36px 20px 0;
    margin-right: 36px;
    border-right: 1px solid var(--border);
}

.zevor-perspective-item:last-child {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
}

.zevor-perspective-item > span {
    display: block;
    margin-bottom: 24px;
    color: var(--zevor-teal);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.zevor-perspective-item h3 {
    margin-bottom: 14px;
    font-size: 25px;
}

.zevor-perspective-item p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* Approach list */

.zevor-approach-list {
    border-top: 1px solid var(--border);
}

.zevor-approach-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 25px 0;
    border-bottom: 1px solid var(--border);
}

.zevor-approach-item > span {
    color: var(--zevor-teal);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.zevor-approach-item h3 {
    margin-bottom: 8px;
    font-size: 21px;
}

.zevor-approach-item p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.65;
}

/* Quality list */

.zevor-quality-list {
    margin-top: 34px;
    border-top: 1px solid var(--border);
}

.zevor-quality-list > div {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 58px;
    border-bottom: 1px solid var(--border);
}

.zevor-quality-list span {
    color: var(--zevor-teal);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.zevor-quality-list strong {
    color: var(--zevor-dark);
    font-size: 14px;
}

/* Section links */

.zevor-section-link {
    margin-top: 34px;
}

.zevor-section-link a {
    display: inline-block;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--zevor-dark);
    color: var(--zevor-dark);
    font-size: 14px;
    font-weight: 700;
}

.zevor-section-link a:hover {
    color: var(--zevor-teal);
    border-color: var(--zevor-teal);
}

/* Mobile */

@media (max-width: 800px) {

    .zevor-perspective-grid {
        grid-template-columns: 1fr;
    }

    .zevor-perspective-item,
    .zevor-perspective-item:last-child {
        margin-right: 0;
        padding: 28px 0;
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .zevor-perspective-item:last-child {
        border-bottom: 0;
    }

    .zevor-approach-item {
        grid-template-columns: 34px 1fr;
    }

}
/* About section editorial image */
.zevor-about-image {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .zevor-about-image {
        height: 360px;
    }
}

@media (max-width: 600px) {
    .zevor-about-image {
        height: 300px;
    }
}
/* ============================================================
   APPROACH FEATURE
   ============================================================ */

.zevor-approach-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 72px;
    align-items: center;
    margin-top: 64px;
}

.zevor-approach-feature__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.zevor-approach-feature__content {
    max-width: 520px;
}

.zevor-approach-feature__content h3 {
    margin: 18px 0 20px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.zevor-approach-feature__content p {
    margin: 0 0 18px;
}

.zevor-approach-feature__content p:last-child {
    margin-bottom: 0;
}

.zevor-approach-list {
    margin-top: 76px;
}

.zevor-approach-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    padding: 28px 0;
    border-top: 1px solid #dce4e8;
}

.zevor-approach-item:last-child {
    border-bottom: 1px solid #dce4e8;
}

.zevor-approach-item > span {
    color: #0fbf9f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.zevor-approach-item h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
}

.zevor-approach-item p {
    margin: 0;
    max-width: 760px;
}

@media (max-width: 800px) {

    .zevor-approach-feature {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 48px;
    }

    .zevor-approach-feature__content {
        max-width: none;
    }

    .zevor-approach-list {
        margin-top: 52px;
    }

    .zevor-approach-item {
        grid-template-columns: 42px 1fr;
        gap: 14px;
    }

}
/* =========================================================
   QUALITY — HOMEPAGE EDITORIAL SECTION
   ========================================================= */

.zevor-quality-home {
    padding: 120px 0 130px;
    background: #f4f7f9;
}

.zevor-quality-intro {
    max-width: 820px;
    margin-bottom: 56px;
}

.zevor-quality-intro h2 {
    max-width: 760px;
    margin: 22px 0 28px;
}

.zevor-quality-intro .zevor-lead {
    max-width: 720px;
}

.zevor-quality-image {
    width: 100%;
    margin-bottom: 72px;
}

.zevor-quality-image img {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center;
}

.zevor-quality-image .image-caption {
    margin: 10px 0 0;
}

.zevor-quality-content {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
    padding-top: 70px;
    border-top: 1px solid rgba(11, 20, 24, 0.12);
}

.zevor-quality-statement h3 {
    max-width: 430px;
    margin: 0 0 22px;
    font-size: 30px;
    line-height: 1.15;
}

.zevor-quality-statement p {
    max-width: 430px;
    margin: 0;
}

.zevor-quality-list {
    border-top: 1px solid rgba(11, 20, 24, 0.12);
}

.zevor-quality-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(11, 20, 24, 0.12);
}

.zevor-quality-item > span {
    color: #0fbf9f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.zevor-quality-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.3;
}

.zevor-quality-item p {
    max-width: 650px;
    margin: 0;
}

.zevor-quality-home .zevor-section-link {
    margin-top: 48px;
}


/* =========================================================
   QUALITY — RESPONSIVE
   ========================================================= */

@media (max-width: 800px) {

    .zevor-quality-home {
        padding: 80px 0 90px;
    }

    .zevor-quality-image {
        margin-bottom: 55px;
    }

    .zevor-quality-image img {
        height: 360px;
    }

    .zevor-quality-content {
        grid-template-columns: 1fr;
        gap: 55px;
        padding-top: 50px;
    }

    .zevor-quality-statement h3 {
        font-size: 27px;
    }
}

@media (max-width: 520px) {

    .zevor-quality-image img {
        height: 270px;
    }

    .zevor-quality-item {
        grid-template-columns: 38px 1fr;
        gap: 12px;
    }
}
/* =========================================================
   PARTNERSHIP CTA
========================================================= */

.zevor-partnership {
    position: relative;
    overflow: hidden;
    background: #0B1418;
    color: #FFFFFF;
    padding: 110px 0;
}

.zevor-partnership__inner {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
}

.zevor-partnership__content {
    position: relative;
    z-index: 2;
    width: min(680px, 62%);
}

.zevor-eyebrow--light {
    color: #0FBF9F;
}

.zevor-partnership h2 {
    max-width: 700px;
    margin: 22px 0 28px;
    color: #FFFFFF;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.zevor-partnership p {
    max-width: 650px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.75;
}

.zevor-partnership .zevor-button--light {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    background: #FFFFFF;
    color: #0B1418;
    border: 1px solid #FFFFFF;
}

.zevor-partnership .zevor-button--light:hover {
    background: #0FBF9F;
    border-color: #0FBF9F;
    color: #FFFFFF;
}

.zevor-partnership__visual {
    position: absolute;
    top: 50%;
    right: -40px;
    width: 500px;
    height: 500px;
    transform: translateY(-50%);
    pointer-events: none;
}

.zevor-contour {
    position: absolute;
    border: 1px solid rgba(15, 191, 159, 0.28);
    border-radius: 50%;
}

.zevor-contour--one {
    width: 300px;
    height: 300px;
    top: 100px;
    left: 100px;
}

.zevor-contour--two {
    width: 420px;
    height: 420px;
    top: 40px;
    left: 40px;
    border-color: rgba(21, 150, 214, 0.24);
}

.zevor-contour--three {
    width: 540px;
    height: 540px;
    top: -20px;
    left: -20px;
    border-color: rgba(15, 191, 159, 0.15);
}

@media (max-width: 900px) {

    .zevor-partnership {
        padding: 80px 0;
    }

    .zevor-partnership__inner {
        min-height: 0;
    }

    .zevor-partnership__content {
        width: 100%;
    }

    .zevor-partnership__visual {
        opacity: 0.45;
        right: -180px;
    }

    .zevor-partnership h2 {
        max-width: 620px;
    }
}

@media (max-width: 640px) {

    .zevor-partnership {
        padding: 70px 0;
    }

    .zevor-partnership h2 {
        font-size: 42px;
    }

    .zevor-partnership p {
        font-size: 16px;
    }

    .zevor-partnership__visual {
        right: -250px;
    }
}
/* =========================================================
   ZEVOR HERO — FINAL RESTORE
   ========================================================= */

.zevor-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: center;
    background: #0b1418;
    color: #ffffff;
}

.zevor-hero__inner {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.zevor-hero h1 {
    max-width: 850px;
    margin: 0 0 30px;
    font-size: clamp(64px, 7vw, 104px);
    line-height: 0.96;
    letter-spacing: -0.055em;
    font-weight: 600;
}

.zevor-hero h1 span {
    background: linear-gradient(
        110deg,
        #0fbf9f,
        #1596d6
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.zevor-hero__description {
    max-width: 680px;
    margin: 0 0 38px;
    font-size: 20px;
    line-height: 1.65;
    color: #b9cbd4;
}

.zevor-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.zevor-hero .zevor-button--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    background: #ffffff;
    color: #0b1418;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.zevor-hero .zevor-button--primary:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

/* Scientific circular graphic */

.zevor-hero::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -250px;
    top: 40px;
    border: 1px solid rgba(21, 150, 214, 0.16);
    border-radius: 50%;
    z-index: 1;
}

.zevor-hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: 40px;
    top: 150px;
    border: 1px solid rgba(15, 191, 159, 0.20);
    border-radius: 50%;
    z-index: 1;
}

/* Hero eyebrow */

.zevor-hero .zevor-eyebrow {
    color: #0fbf9f;
}

/* Mobile */

@media (max-width: 650px) {

    .zevor-hero {
        min-height: auto;
    }

    .zevor-hero__inner {
        padding: 75px 0;
    }

    .zevor-hero h1 {
        font-size: clamp(48px, 13vw, 68px);
    }

    .zevor-hero__description {
        font-size: 17px;
    }

    .zevor-hero::before {
        width: 420px;
        height: 420px;
        right: -250px;
        top: 100px;
    }

    .zevor-hero::after {
        width: 280px;
        height: 280px;
        right: -100px;
        top: 180px;
    }
}
/* FINAL HERO BUTTON RESTORE */

.zevor-hero .zevor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.zevor-hero .zevor-button--primary {
    background: #ffffff;
    color: #0b1418;
    border: 1px solid #ffffff;
}

.zevor-hero .zevor-button--primary:hover {
    background: #ffffff;
    color: #0b1418;
    transform: translateY(-2px);
}
/* HERO BUTTON — FORCE FINAL STYLE */

.zevor-hero a.zevor-button.zevor-button--primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 54px !important;
    padding: 0 26px !important;
    background: #ffffff !important;
    color: #0b1418 !important;
    border: 1px solid #ffffff !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.zevor-hero a.zevor-button.zevor-button--primary:hover {
    background: #ffffff !important;
    color: #0b1418 !important;
    transform: translateY(-2px);
}



/* =========================================================
   ZEVOR HERO — VISUAL RESTORATION
   ========================================================= */

.zevor-hero__visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.zevor-hero__grid {
    position: absolute;
    inset: 0;
    opacity: 0.9;
}

.zevor-hero__orb {
    position: absolute;
    border: 1px solid rgba(21, 150, 214, 0.22);
    border-radius: 50%;
}

.zevor-hero__orb--outer {
    width: 620px;
    height: 620px;
    right: -250px;
    top: 40px;
}

.zevor-hero__orb--middle {
    width: 420px;
    height: 420px;
    right: -120px;
    top: 155px;
    border-color: rgba(15, 191, 159, 0.24);
}

.zevor-hero__orb--inner {
    width: 220px;
    height: 220px;
    right: 30px;
    top: 255px;
    border-color: rgba(255, 255, 255, 0.12);
}

/* Geometric centre detail */
.zevor-hero__visual::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 2px;
    right: 175px;
    top: 310px;
    background: #0fbf9f;
    box-shadow:
        0 116px 0 rgba(21, 150, 214, 0.9);
}

.zevor-hero__visual::after {
    content: "";
    position: absolute;
    width: 175px;
    height: 2px;
    right: 125px;
    top: 365px;
    background: #1596d6;
    transform: rotate(-42deg);
    transform-origin: left center;
}

/* Small architectural cross marks */
.zevor-hero__visual {
    background:
        radial-gradient(circle at 36% 39%, rgba(255,255,255,.35) 0 1px, transparent 2px),
        radial-gradient(circle at 82% 70%, rgba(255,255,255,.35) 0 1px, transparent 2px);
}

/* Hero CTA */
.zevor-hero .zevor-button--hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border-radius: 999px;
    background: #ffffff;
    color: #0b1418;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #ffffff;
    transition: transform 180ms ease, background 180ms ease;
}

.zevor-hero .zevor-button--hero:hover {
    transform: translateY(-2px);
    background: #f4f7f9;
}

/* Hero index labels */
.zevor-hero .zevor-hero__meta,
.zevor-hero .zevor-hero__labels {
    position: relative;
    z-index: 3;
}

.zevor-hero .zevor-hero__meta span,
.zevor-hero .zevor-hero__labels span {
    color: rgba(255,255,255,0.72);
}

/* Keep hero content above visual */
.zevor-hero__content {
    position: relative;
    z-index: 3;
}

@media (max-width: 900px) {
    .zevor-hero__visual {
        width: 100%;
        opacity: 0.45;
    }

    .zevor-hero__orb--outer {
        right: -360px;
    }

    .zevor-hero__orb--middle {
        right: -250px;
    }

    .zevor-hero__orb--inner {
        right: -100px;
    }
}
/* =========================================================
   HERO LABEL POSITION FIX
   ========================================================= */

.zevor-hero__meta {
    position: absolute;
    right: 155px;
    top: 145px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.zevor-hero__meta span {
    display: block;
    color: rgba(255, 255, 255, 0.48);
}

@media (max-width: 900px) {
    .zevor-hero__meta {
        right: 35px;
        top: 100px;
    }
}

@media (max-width: 650px) {
    .zevor-hero__meta {
        right: 20px;
        top: 70px;
        font-size: 9px;
    }
}
/* =========================================================
   ZEVOR HERO — MARKER POSITION RESTORE
   ========================================================= */

.zevor-hero__marker {
    position: absolute !important;
    z-index: 5 !important;
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    pointer-events: none;
}

.zevor-hero__marker--top {
    top: 22% !important;
    right: 10% !important;
    left: auto !important;
    bottom: auto !important;
}

.zevor-hero__marker--bottom {
    bottom: 18% !important;
    left: 62% !important;
    right: auto !important;
    top: auto !important;
}

@media (max-width: 900px) {
    .zevor-hero__marker--top {
        top: 18% !important;
        right: 7% !important;
    }

    .zevor-hero__marker--bottom {
        bottom: 12% !important;
        left: 58% !important;
    }
}

@media (max-width: 650px) {
    .zevor-hero__marker {
        font-size: 8px;
    }

    .zevor-hero__marker--top {
        top: 12% !important;
        right: 5% !important;
    }

    .zevor-hero__marker--bottom {
        bottom: 8% !important;
        left: 55% !important;
    }
}
/* =========================================================
   ZEVOR HERO — PHARMACEUTICAL TONE
   ========================================================= */

.zevor-hero {
    background: #142329 !important;
}

.zevor-hero__orb {
    border-color: rgba(21, 150, 214, 0.15);
}

.zevor-hero__orb--middle {
    border-color: rgba(15, 191, 159, 0.16);
}

.zevor-hero__orb--inner {
    border-color: rgba(255, 255, 255, 0.08);
}

.zevor-hero__visual::before {
    background: rgba(15, 191, 159, 0.75);
    box-shadow:
        0 116px 0 rgba(21, 150, 214, 0.65);
}

.zevor-hero__visual::after {
    background: rgba(21, 150, 214, 0.75);
}

.zevor-hero__marker {
    color: rgba(255, 255, 255, 0.42);
}
/* =========================================================
   HEADER LOGO — SIZE REFINEMENT
   ========================================================= */

.site-brand img {
    max-height: 58px;
    width: auto;
    height: auto;
}

.site-header__inner {
    min-height: 82px;
}
/* =========================================================
   ZEVOR HEADER — FINAL LOGO SIZE FIX
   ========================================================= */

.site-header {
    height: 82px !important;
}

.site-header__inner {
    min-height: 82px !important;
    height: 82px !important;
}

.site-brand,
.site-brand.custom-logo-link {
    display: flex !important;
    align-items: center !important;
    height: 58px !important;
    max-height: 58px !important;
    width: auto !important;
}

.site-brand img,
.site-brand .custom-logo,
.site-brand img.custom-logo {
    display: block !important;
    width: auto !important;
    height: 58px !important;
    max-height: 58px !important;
    max-width: 220px !important;
    object-fit: contain !important;
}
/* =========================================================
   ZEVOR — HEADER LOGO FINAL OVERRIDE
   ========================================================= */

header img,
header .custom-logo,
header .custom-logo-link img {
    width: 220px !important;
    height: auto !important;
    max-width: 220px !important;
    max-height: 62px !important;
    object-fit: contain !important;
}

header .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    width: 220px !important;
    height: 62px !important;
}

header {
    min-height: 82px !important;
    height: 82px !important;
}

header > div,
header .site-header__inner {
    min-height: 82px !important;
    height: 82px !important;
}
/* ZEVOR HEADER LOGO — FINAL SIZE */

header img,
header .custom-logo,
header .custom-logo-link img {
    width: 270px !important;
    max-width: 270px !important;
    height: auto !important;
    max-height: 70px !important;
    object-fit: contain !important;
}

header .custom-logo-link {
    display: flex !important;
    align-items: center !important;
    width: 270px !important;
    height: 70px !important;
}

header {
    min-height: 90px !important;
    height: 90px !important;
}

header > div,
header .site-header__inner {
    min-height: 90px !important;
    height: 90px !important;
}
/* Align Zevor logo to the left */
.site-header .zevor-container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}

.site-header .site-header__inner {
    justify-content: flex-start;
}

.site-header .site-brand {
    margin-right: auto;
}

.site-header .site-navigation {
    margin-left: auto;
}
/* FINAL HEADER LOGO POSITION */
.site-header__inner {
    position: relative !important;
}

.site-header .site-brand {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
}

.site-header .site-navigation {
    margin-left: auto !important;
}
/* =========================================================
   ZEVOR HERO — PHARMACEUTICAL / INSTITUTIONAL TONE
   ========================================================= */

.zevor-hero {
    background: #12272d !important;
}

/* Soften the architectural graphics */
.zevor-hero::before {
    border-color: rgba(21, 150, 214, 0.10) !important;
}

.zevor-hero::after {
    border-color: rgba(15, 191, 159, 0.08) !important;
}

/* Reduce the intensity of the hero visual */
.zevor-hero__orb {
    opacity: 0.55 !important;
}

.zevor-hero__grid {
    opacity: 0.20 !important;
}

.zevor-hero__cross {
    opacity: 0.35 !important;
}

.zevor-hero__marker {
    opacity: 0.45 !important;
}

/* Keep the headline sophisticated but less "tech" */
.zevor-hero h1 span {
    background: linear-gradient(
        110deg,
        #18bfa3,
        #35a9c9
    ) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}
/* =========================================================
   ZEVOR HERO — LIGHT PHARMACEUTICAL DIRECTION
   ========================================================= */

.zevor-hero {
    background: #f4f7f9 !important;
    color: #0b1418 !important;
}

/* Main headline */
.zevor-hero h1 {
    color: #0b1418 !important;
}

/* Gradient accent */
.zevor-hero h1 span {
    background: linear-gradient(
        110deg,
        #0fbf9f,
        #1596d6
    ) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

/* Supporting copy */
.zevor-hero__description {
    color: #52666d !important;
}

/* Soften all geometric elements */
.zevor-hero::before,
.zevor-hero::after {
    opacity: 0.35 !important;
}

.zevor-hero__orb {
    opacity: 0.25 !important;
}

.zevor-hero__grid {
    opacity: 0.08 !important;
}

.zevor-hero__cross {
    opacity: 0.25 !important;
}

.zevor-hero__marker {
    color: #60757c !important;
    opacity: 0.65 !important;
}

/* Keep CTA strong and professional */
.zevor-hero .zevor-button--hero {
    background: #0b1418 !important;
    color: #ffffff !important;
    border-color: #0b1418 !important;
}
/* Final hero background */
.zevor-hero {
    background: #e2ecef !important;
}
/* Hero rings — visible on light pharmaceutical background */
.zevor-hero__orb {
    opacity: 1 !important;
}

.zevor-hero__orb--outer {
    border-color: rgba(21, 150, 214, 0.38) !important;
}

.zevor-hero__orb--middle {
    border-color: rgba(15, 191, 159, 0.32) !important;
}

.zevor-hero__orb--inner {
    border-color: rgba(21, 150, 214, 0.24) !important;
}
/* =========================================================
   SUBTLE PAGE TRANSITION
   ========================================================= */

body {
    opacity: 1;
    transition: opacity 220ms ease;
}

body.zevor-page-loading {
    opacity: 0;
}

body.zevor-page-ready {
    opacity: 1;
}
/* =========================================================
   SUBTLE SCROLL REVEAL
   ========================================================= */

.zevor-reveal {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 650ms ease,
        transform 650ms ease;
    will-change: opacity, transform;
}

.zevor-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .zevor-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================================
   HOMEPAGE SECTION SPACING
   ========================================================= */

.zevor-home-section {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}
/* =========================================================
   HOMEPAGE SECTION BREATHING ROOM
   ========================================================= */

.zevor-value-strip {
    margin-bottom: 70px !important;
}

.zevor-about {
    margin-bottom: 100px !important;
}

.zevor-perspective {
    margin-bottom: 100px !important;
}

.zevor-approach {
    margin-bottom: 65px !important;
}

.zevor-quality {
    margin-bottom: 110px !important;
}

.zevor-partnership {
    margin-top: 0 !important;
}
/* =========================================================
   SUBTLE BUTTON MICRO-INTERACTIONS
   ========================================================= */

.zevor-button,
.zevor-button--hero {
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease,
        color 180ms ease;
}

.zevor-button:hover,
.zevor-button--hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 20, 24, 0.10);
}

.zevor-button:active,
.zevor-button--hero:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(11, 20, 24, 0.08);
}
/* =========================================================
   ZEVOR HEALTHCARE — MOBILE POLISH
   ========================================================= */

@media (max-width: 800px) {

    /* ---------- GLOBAL MOBILE RHYTHM ---------- */

    .zevor-container {
        width: min(100% - 40px, 1200px);
    }

    /* ---------- HERO ---------- */

    .zevor-hero {
        min-height: auto;
    }

    .zevor-hero__inner {
        padding-top: 64px;
        padding-bottom: 58px;
    }

    .zevor-hero__content {
        max-width: 100%;
    }

    .zevor-hero h1 {
        font-size: clamp(42px, 11vw, 58px);
        line-height: 0.98;
        letter-spacing: -0.045em;
    }

    .zevor-hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .zevor-hero a.zevor-button--hero {
        width: 100%;
        min-height: 52px !important;
    }

    /* ---------- SECTION LABELS ---------- */

    .zevor-eyebrow {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

    /* ---------- GENERAL HEADINGS ---------- */

    main h2 {
        letter-spacing: -0.025em;
    }

    /* ---------- IMAGES ---------- */

    .zevor-about-image img,
    .zevor-approach-image img,
    .zevor-quality-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* ---------- PARTNERSHIP CTA ---------- */

    .zevor-partnership {
        padding-top: 78px !important;
        padding-bottom: 78px !important;
    }

    .zevor-partnership h2 {
        font-size: clamp(36px, 9vw, 48px);
        line-height: 1.02;
    }

    /* ---------- FOOTER ---------- */

    .site-footer {
        padding-top: 58px;
        padding-bottom: 28px;
    }
}
/* =========================================================
   MOBILE HEADER POLISH
   ========================================================= */

@media (max-width: 800px) {

    /* Keep the mobile header compact */
    .site-header {
        min-height: 76px !important;
        height: 76px !important;
    }

    /* Smaller, left-aligned Zevor logo */
    .site-header .custom-logo-link {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: auto !important;
        max-width: 150px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header .custom-logo {
        display: block !important;
        width: 145px !important;
        max-width: 145px !important;
        height: auto !important;
        max-height: 52px !important;
        object-fit: contain !important;
    }

    /* Keep logo/header content toward the left */
    .site-header .zevor-container {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        position: relative !important;
    }

    /* Hamburger stays on the right */
    .site-header .menu-toggle {
        margin-left: auto !important;
    }

    /* Remove the unnecessary mobile Home row */
    .site-header .primary-menu > li:first-child {
        display: none !important;
    }
}
/* =========================================================
   MOBILE HEADER — FINAL POLISH
   ========================================================= */

@media (max-width: 800px) {

    /* Compact mobile header */
    .site-header {
        height: 76px !important;
        min-height: 76px !important;
    }

    /* Header row */
    .site-header .site-header__inner {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        height: 76px !important;
        padding: 0 20px !important;
    }

    /* Zevor logo — left aligned */
    .site-header .site-brand {
        position: absolute !important;
        left: 50px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        align-items: center !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header .site-brand .custom-logo {
        display: block !important;
        width: 130px !important;
        max-width: 130px !important;
        height: auto !important;
        max-height: 48px !important;
        object-fit: contain !important;
    }

    /* Hamburger — right aligned */
    .site-header .mobile-menu-toggle {
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        padding: 6px !important;
        z-index: 30 !important;
    }

    /* Mobile navigation should be hidden until hamburger is opened */
    .site-header .mobile-navigation {
        display: none !important;
    }

    .site-header .mobile-navigation.is-open {
        display: block !important;
    }

    /* Remove Home from the mobile menu */
    .site-header .mobile-navigation .menu-item:first-child {
        display: none !important;
    }
}
/* =========================================================
   MOBILE HEADER — CLEAN FINAL VERSION
   ========================================================= */

@media (max-width: 800px) {

    /* Header */
    .site-header {
        height: 76px !important;
        min-height: 76px !important;
    }

    .site-header__inner {
        position: relative !important;
        height: 76px !important;
        padding: 0 12px !important;
    }

    /* Logo — firmly to the left */
    .site-header .site-brand {
        position: absolute !important;
        left: 12px !important;
        right: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;

        display: flex !important;
        align-items: center !important;

        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header .site-brand .custom-logo {
        display: block !important;
        width: 130px !important;
        max-width: 130px !important;
        height: auto !important;
        max-height: 48px !important;
        margin: 0 !important;
    }

    /* Hide the desktop navigation completely on mobile */
    .site-header .site-navigation {
        display: none !important;
    }

    /* Hamburger — right side */
    .site-header .mobile-menu-toggle {
        position: absolute !important;
        right: 12px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;

        margin: 0 !important;
        padding: 6px !important;
        z-index: 50 !important;
    }

    /* Mobile menu itself stays hidden until opened */
    .site-header .mobile-navigation {
        display: none !important;
    }

    .site-header .mobile-navigation.is-open {
        display: block !important;
    }
}
/* MOBILE HEADER — TRUE EDGE ALIGNMENT */

@media (max-width: 800px) {

    /* Make the header itself the positioning reference */
    .site-header {
        position: relative !important;
    }

    /* Logo aligned from the actual screen edge */
    .site-header .site-brand {
        position: absolute !important;
        left: 20px !important;
        right: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }

    /* Hamburger aligned from the actual screen edge */
    .site-header .mobile-menu-toggle {
        position: absolute !important;
        right: 20px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }

}
/* MOBILE HEADER — TRUE EDGE ALIGNMENT */

@media (max-width: 800px) {

    /* Make the header itself the positioning reference */
    .site-header {
        position: relative !important;
    }

    /* Logo aligned from the actual screen edge */
    .site-header .site-brand {
        position: absolute !important;
        left: 20px !important;
        right: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }

    /* Hamburger aligned from the actual screen edge */
    .site-header .mobile-menu-toggle {
        position: absolute !important;
        right: 20px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }

}
/* =========================================================
   FINAL MOBILE HEADER FIX
   ========================================================= */

@media screen and (max-width: 800px) {

    /* Header */
    header.site-header {
        position: relative !important;
        width: 100% !important;
        height: 76px !important;
        min-height: 76px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Header inner — remove all centering behavior */
    header.site-header .site-header__inner {
        position: static !important;
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        height: 76px !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* LOGO — force it to the left */
    header.site-header .site-brand {
        position: absolute !important;
        left: 20px !important;
        right: auto !important;
        top: 50% !important;
        bottom: auto !important;

        display: block !important;
        width: auto !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: translateY(-50%) !important;
        z-index: 100 !important;
    }

    /* Actual logo image */
    header.site-header .site-brand img.custom-logo {
        display: block !important;
        width: 125px !important;
        max-width: 125px !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    /* HIDE DESKTOP NAVIGATION COMPLETELY */
    header.site-header nav.site-navigation,
    header.site-header .site-navigation,
    header.site-header .site-navigation ul,
    header.site-header .site-navigation li {
        display: none !important;
        visibility: hidden !important;
    }

    /* Hamburger */
    header.site-header .mobile-menu-toggle {
        position: absolute !important;
        right: 20px !important;
        left: auto !important;
        top: 50% !important;
        bottom: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: translateY(-50%) !important;
        z-index: 110 !important;
    }
}
/* FINAL MOBILE HEADER FIX */
@media (max-width: 800px) {

    /* Keep the header clean */
    header.site-header {
        position: relative !important;
    }

    header.site-header .site-header__inner,
    header.site-header .site-header__inner {
        position: relative !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 20px !important;
        margin: 0 !important;
    }

    /* Logo */
    header.site-header .site-brand {
        position: absolute !important;
        left: 20px !important;
        right: auto !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Actual logo image */
    header.site-header .site-brand img.custom-logo {
        width: 125px !important;
        max-width: 125px !important;
        height: auto !important;
        max-height: 48px !important;
        margin: 0 !important;
    }

    /* Hamburger */
    header.site-header .mobile-menu-toggle {
        position: absolute !important;
        right: 20px !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
    }

    /* Hide mobile navigation by default */
    header.site-header .mobile-navigation {
        display: none !important;
    }

    /* Never show desktop navigation on mobile */
    header.site-header .site-navigation {
        display: none !important;
    }
}