/* ============================================
   REVITA – MAIN STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* Local: Martian Mono */
@font-face {
    font-family: 'MartianMono';
    src: url('00-Brand/Fonts/MartianMono-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'MartianMono';
    src: url('00-Brand/Fonts/MartianMono-Medium.ttf') format('truetype');
    font-weight: 500;
}
@font-face {
    font-family: 'MartianMono';
    src: url('00-Brand/Fonts/MartianMono-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: 'MartianMono';
    src: url('00-Brand/Fonts/MartianMono-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* ── Design tokens ────────────────────────── */
:root {
    --dark-green:  #203D3B;
    --mid-green:   #597E7B;
    --olive:       #B4BD62;
    --yellow:      #FAD465;
    --light-blue:  #B0D1F0;
    --off-white:   #FBF9F8;
    --radius:      6px;
    --nav-h:       106px;
    --max-w:       1200px;
    --pad-x:       48px;
    --section-v:   96px;
}

/* ── Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--off-white);
    color: var(--dark-green);
    overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ── Layout helpers ───────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

/* ── Typography scale ─────────────────────── */
.eyebrow {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
}
.eyebrow-on-dark  { color: var(--yellow); }
.eyebrow-on-light { color: var(--mid-green); }

/* ── H3 colour variants ───────────────────── */
.h3-dark-teal  { color: var(--dark-green); }
.h3-mid-green  { color: var(--mid-green); }
.h3-olive      { color: var(--olive); }
.h3-off-white  { color: var(--off-white); }
.h3-light-blue { color: var(--light-blue); }

/* ── Buttons ──────────────────────────────── */
.btn {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-green);
    background-color: var(--yellow);
    border: none;
    border-radius: var(--radius);
    padding: 13px 26px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    line-height: 1;
    white-space: nowrap;
}
.btn:hover  { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Text-link button (callout style) */
.btn-text {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-green);
    background-color: rgba(32,61,59,.10);
    border-radius: var(--radius);
    padding: 8px 14px;
    transition: background-color 0.2s;
    cursor: pointer;
}
.btn-text:hover { background-color: rgba(32,61,59,.16); }

/* ── Hero overlay (dark teal, for background-image heroes) ── */
.hero::before {
    content: none; /* off by default; enabled per-page modifier */
}
.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(32, 61, 59, 0.65);
    z-index: 0;
}

/* Callout pill */
.callout {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--dark-green);
    background-color: rgba(32,61,59,.10);
    border-radius: var(--radius);
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ── Scroll-fade animation ────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: var(--nav-h);
    background-color: var(--off-white);
    border-bottom: 1px solid rgba(89,126,123,.20);
    z-index: 1000;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.nav.nav-hidden   { transform: translateY(-100%); }
.nav.nav-scrolled { box-shadow: 0 2px 14px rgba(32,61,59,.09); }

.nav-inner {
    display: flex;
    align-items: center;
    height: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    gap: 0;
}

.nav-logo { flex-shrink: 0; margin-right: auto; }
.nav-logo img { height: 30px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin-right: 28px;
}
.nav-links > li > a {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    position: relative;
    padding-bottom: 3px;
    transition: color 0.2s;
}
.nav-links > li > a:hover { color: var(--mid-green); }
.nav-links > li > a.active {
    color: var(--mid-green);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
    cursor: pointer;
}
.nav-dropdown > a .chevron {
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--dark-green);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.nav-dropdown:hover > a .chevron,
.nav-dropdown.open   > a .chevron { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background-color: var(--off-white);
    border: 1px solid rgba(32,61,59,.10);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(32,61,59,.12);
    min-width: 230px;
    padding: 6px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-green);
    transition: background-color 0.15s;
}
.dropdown-menu li a:hover { background-color: rgba(32,61,59,.06); }
.dropdown-menu li a.active { color: var(--mid-green); }
.dropdown-menu li a::after { display: none !important; }

/* CTA button in nav */
.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background-color: var(--dark-green);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0;
    width: 100%;
    background-color: var(--off-white);
    border-top: 1px solid rgba(89,126,123,.20);
    box-shadow: 0 8px 24px rgba(32,61,59,.12);
    z-index: 999;
    padding: 8px 24px 24px;
    flex-direction: column;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    padding: 13px 0;
    border-bottom: 1px solid rgba(89,126,123,.18);
    display: block;
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--mid-green); }
.mobile-nav a.active { color: var(--mid-green); }
.mobile-nav a.mobile-sub {
    padding-left: 16px;
    font-size: 18px;
    color: var(--dark-green);
}
.mobile-nav .mobile-section-label {
    padding: 13px 0 6px;
    font-weight: 600;
    font-size: 18px;
    color: var(--mid-green);
    border-bottom: 1px solid rgba(89,126,123,.18);
}

/* Spacer under fixed nav */
.nav-spacer { height: var(--nav-h); }

/* ── Responsive nav ───────────────────────── */
@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
}
@media (max-width: 768px) {
    :root { --pad-x: 24px; }
    .desktop-br { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
}
.hero-home {
    background-image: none;
    height: auto;
    display: block;
}
.hero-home-img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-home-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 90%; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 {
    font-weight: 700;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.1;
    color: var(--off-white);
    margin-bottom: 24px;
}
.hero p {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.65;
    color: var(--off-white);
    max-width: 800px;
}
@media (max-width: 768px) {
    /* All image-based heroes: enforce a readable minimum height */
    .hero-home-img,
    .hero-sites-img,
    .hero-hospitals-img,
    .hero-pa-img,
    .hero-physicians-img,
    .hero-about-img,
    .hero-partners-img {
        min-height: 520px;
        object-fit: cover;
        object-position: center top;
    }
    /* Release per-page h1 width constraints so text is never cramped */
    .hero-public-authorities .hero h1 { max-width: 100%; }
    .hero-sites h1  { max-width: 100%; }
    .hero-sites p   { max-width: 100%; }
    /* About hero: release the inner-p max-width constraint */
    .hero-about .hero-content p { max-width: 100%; }
}
@media (max-width: 600px) {
    :root { --section-v: 64px; }
    .hero-home-img,
    .hero-sites-img,
    .hero-hospitals-img,
    .hero-pa-img,
    .hero-physicians-img,
    .hero-about-img,
    .hero-partners-img {
        min-height: 480px;
        object-fit: cover;
        object-position: center top;
    }
    .hero-content { max-width: 100%; }
    .hero-about .hero-content { max-width: 100%; }
    .hero h1 { font-size: 30px; }
    .hero p  { font-size: 18px; max-width: 100%; }
    /* Contact page header: release narrow paragraph constraint */
    .page-header p { max-width: 100%; }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats {
    background-color: var(--off-white);
    padding: var(--section-v) 0 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.stat-card {
    background-color: rgba(180, 189, 98, 0.10);
    border: 1px solid var(--olive);
    border-radius: var(--radius);
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.25s;
}
.stat-card:hover { box-shadow: 0 4px 18px rgba(180, 189, 98, 0.15); }

.stat-icon {
    width: 48px; height: 48px;
    margin-bottom: 18px;
    object-fit: contain;
}
.stat-number {
    font-weight: 700;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1;
    margin-bottom: 10px;
    color: var(--olive);
}

.stat-desc {
    font-weight: 800;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.45;
    margin-bottom: 10px;
    max-width: 80%;
    min-height: 2.9em;
}

/* Expand/collapse */
.stat-expanded {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease;
    width: 100%;
}
.stat-expanded.open {
    max-height: 400px;
    opacity: 1;
}
.stat-expanded-inner {
    padding-top: 8px;
    margin-top: 2px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-green);
    text-align: center;
}

.read-toggle {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 18px;
    color: var(--olive);
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
    margin-top: auto;
    flex-shrink: 0;
}
.read-toggle:hover { color: var(--dark-green); }

.stats-source {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--mid-green);
    opacity: 0.6;
    margin-top: 18px;
    padding-top: 24px;
}
@media (max-width: 760px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHO REVITA WORKS WITH
   ============================================ */
.who-revita {
    background-color: var(--off-white);
    padding: var(--section-v) 0;
}
.who-revita-intro { margin-bottom: 48px; }
.who-revita-intro .eyebrow { margin-bottom: 18px; }
.who-revita-intro h2 {
    font-weight: 700;
    font-size: clamp(30px, 4vw, 52px);
    color: var(--dark-green);
    line-height: 1.12;
    margin-bottom: 20px;
}
.who-revita-intro p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
}

.audience-rows { display: flex; flex-direction: column; }
.audience-row {
    display: grid;
    grid-template-columns: 38% 54%;
    column-gap: 8%;
    align-items: stretch;
    padding: 40px 0;
    border-top: 1px solid rgba(89,126,123,.28);
}
.audience-row:last-child { border-bottom: 1px solid rgba(89,126,123,.28); }

.audience-row-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.audience-row-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.audience-row-content { flex: 1; min-width: 0; }
.audience-row-content .callout { margin-bottom: 14px; }
.audience-row-content h3 {
    font-weight: 700;
    font-size: clamp(20px, 2.4vw, 30px);
    color: var(--dark-green);
    line-height: 1.25;
    margin-bottom: 16px;
}
.audience-row-content p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    margin-bottom: 20px;
    opacity: .85;
}
.audience-row-content .btn {
    align-self: flex-start;
}
@media (max-width: 760px) {
    .audience-row { grid-template-columns: 1fr; gap: 20px; }
    .audience-row-img-wrap { min-height: 240px; }
}

/* ============================================
   WHY NOW
   ============================================ */
.why-now {
    background-color: var(--mid-green);
    position: relative;
    overflow: hidden;
    padding: var(--section-v) 0;
    text-align: center;
}
.why-now-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.why-now .container { position: relative; z-index: 1; }
.why-now-content { max-width: 936px; margin: 0 auto; }
.why-now .eyebrow { margin-bottom: 22px; }
.why-now h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 52px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.why-now p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 40px;
    opacity: .88;
}

/* ============================================
   IN DEVELOPMENT
   ============================================ */
.in-development {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.in-development-text {
    background-color: var(--off-white);
    /* left edge aligns with the container grid; right is interior padding */
    padding: 80px 64px 80px max(var(--pad-x), calc((100vw - var(--max-w)) / 2 + var(--pad-x)));
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.in-development-text .eyebrow { margin-bottom: 20px; }
.in-development-text .btn { align-self: flex-start; }
.in-development-text h2 {
    font-weight: 700;
    font-size: clamp(26px, 3vw, 44px);
    color: var(--dark-green);
    line-height: 1.18;
    margin-bottom: 20px;
}
.in-development-text p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    margin-bottom: 32px;
    opacity: .85;
}
.in-development-image { overflow: hidden; }
.in-development-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 900px) {
    .in-development { grid-template-columns: 1fr; }
    .in-development-image { height: 340px; order: -1; }
    /* stacked: symmetric padding; --pad-x shrinks to 24px at ≤768px automatically */
    .in-development-text { padding: 56px var(--pad-x); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--dark-green);
    padding: 44px 0 28px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(89,126,123,.35);
    margin-bottom: 20px;
}
.footer-logo img { height: 30px; width: auto; }
.footer-right {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-linkedin {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.footer-linkedin:hover { opacity: .7; }
.footer-linkedin img { height: 42px; width: auto; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copy {
    font-size: 13px;
    font-weight: 500;
    color: rgba(251,249,248,.5);
}
.footer-legal {
    display: flex;
    gap: 20px;
    list-style: none;
}
.footer-legal a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(251,249,248,.5);
    transition: color 0.2s;
}
.footer-legal a:hover { color: var(--off-white); }
@media (max-width: 600px) {
    .footer-top { flex-wrap: wrap; gap: 20px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   CONTACT PAGE – PAGE HEADER
   ============================================ */
.page-header {
    background-color: var(--off-white);
    padding: 96px 0 110px;
    text-align: center;
}
.page-header h2 {
    font-weight: 700;
    font-size: clamp(30px, 4vw, 52px);
    color: var(--dark-green);
    margin-bottom: 20px;
    line-height: 1.12;
}
.page-header p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    max-width: 60%;
    margin: 0 auto;
    opacity: .8;
}

/* ============================================
   CONTACT SECTION (2-col)
   ============================================ */
.contact-section {
    background-color: var(--off-white);
    padding: 0 0 96px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 58fr 37fr;
    gap: 5%;
    align-items: start;
}

/* Left: audience info */
.audience-info { padding-top: 4px; }
.audience-group {
    padding: 28px 0;
    border-top: 1px solid rgba(89,126,123,.28);
}
.audience-group:last-child { border-bottom: 1px solid rgba(89,126,123,.28); }
.audience-group .eyebrow { margin-bottom: 12px; }
.audience-group h3 {
    font-weight: 700;
    font-size: 30px;
    color: var(--dark-green);
    margin-bottom: 12px;
    line-height: 1.25;
}
.audience-group p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .75;
}

/* Right: form card */
.contact-form-card {
    background-color: var(--dark-green);
    border-radius: var(--radius);
    padding: 40px 36px;
}
.contact-form-card .form-group { margin-bottom: 20px; }
.contact-form-card label {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    margin-bottom: 8px;
    opacity: .75;
}
.contact-form-card input,
.contact-form-card textarea {
    display: block;
    width: 100%;
    background-color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    padding: 12px 14px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: rgba(32,61,59,.38); }
.contact-form-card textarea { resize: vertical; min-height: 120px; }

/* Validation error state */
.input-error { border: 1px solid #c0392b !important; }
.field-error {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #c0392b;
    margin-top: 6px;
}

/* Success state */
.form-success {
    text-align: center;
    padding: 48px 16px;
}
.form-success .success-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}
.form-success .success-title {
    font-weight: 700;
    font-size: 30px;
    color: var(--yellow);
    margin-bottom: 14px;
    line-height: 1.25;
}
.form-success p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    opacity: .85;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .contact-form-card { padding: 28px 20px; }
}

/* ============================================
   DIRECT CONTACT
   ============================================ */
.direct-contact {
    background-color: var(--mid-green);
    padding: var(--section-v) 0;
    text-align: center;
}
.direct-contact .eyebrow { margin-bottom: 20px; }
.direct-contact h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 52px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.direct-contact .section-body {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 52px;
    opacity: .85;
}
.direct-contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.direct-contact-cards:has(.dc-card:nth-child(2):last-child) {
    gap: 48px;
}
.dc-card {
    flex: 0 1 280px;
    background-color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
}
.dc-card-icon {
    width: 32px; height: 32px;
    margin: 0 auto 14px;
    object-fit: contain;
}
.dc-card-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--mid-green);
    margin-bottom: 8px;
}
.dc-card-value {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #203D3B;
    line-height: 1.4;
}
@media (max-width: 760px) {
    .direct-contact-cards { gap: 12px; }
    .dc-card { flex: 1 1 100%; }
}

/* ============================================
   FUTURE PATIENTS
   ============================================ */
.future-patients {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}
.future-patients-image { overflow: hidden; }
.future-patients-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.future-patients-content {
    background-color: var(--off-white);
    /* right edge aligns with the container grid; left is interior padding */
    padding: 80px max(var(--pad-x), calc((100vw - var(--max-w)) / 2 + var(--pad-x))) 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.future-patients-content .eyebrow { margin-bottom: 18px; }
.future-patients-content h2 {
    font-weight: 700;
    font-size: clamp(26px, 3vw, 44px);
    color: var(--dark-green);
    line-height: 1.18;
    margin-bottom: 16px;
}
.future-patients-content > p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    margin-bottom: 32px;
    opacity: .85;
}
.notify-form input {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid var(--dark-green);
    border-radius: var(--radius);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    padding: 12px 14px;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}
.notify-form input::placeholder { color: rgba(32,61,59,.38); }
.notify-form input:focus { border-color: var(--mid-green); }
.notify-form .btn { margin-top: 4px; }

.notify-success {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    padding: 20px;
    background-color: rgba(32,61,59,.07);
    border-radius: var(--radius);
    border-left: 3px solid var(--olive);
}
.notify-success strong { display: block; font-size: 18px; margin-bottom: 6px; }

@media (max-width: 900px) {
    .future-patients { grid-template-columns: 1fr; }
    .future-patients-image { height: 320px; }
    /* stacked: symmetric padding; --pad-x shrinks to 24px at ≤768px automatically */
    .future-patients-content { padding: 56px var(--pad-x); }
}

/* ============================================
   SITES PAGE – HERO
   ============================================ */
.hero-sites {
    background-image: none;
    height: auto;
    display: block;
}
.hero-sites-img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-sites-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.hero-sites h1 { max-width: 90%; }
.hero-sites p  { max-width: 720px; }

/* ============================================
   SITES PAGE – THE OFFERING
   ============================================ */
.the-offering {
    background-color: var(--off-white);
    padding: var(--section-v) 0;
}
.offering-intro { margin-bottom: 48px; }
.offering-intro .eyebrow { margin-bottom: 18px; }
.offering-intro h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--dark-green);
    line-height: 1.15;
    margin-bottom: 20px;
}
.offering-intro p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
    margin-bottom: 10px;
}
.offering-intro p:last-child { margin-bottom: 0; }

.offering-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.offering-card {
    background-color: rgba(180, 189, 98, 0.10);
    border: 1px solid var(--olive);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: box-shadow 0.25s;
}
.offering-card:hover { box-shadow: 0 4px 18px rgba(180, 189, 98, 0.15); }
.offering-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(72%) sepia(29%) saturate(617%) hue-rotate(29deg) brightness(98%) contrast(84%);
}
.offering-card-name {
    font-weight: 700;
    font-size: 30px;
    color: var(--olive);
    margin-bottom: 8px;
    line-height: 1.3;
}
.offering-card-desc {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
    margin: 0;
}
@media (max-width: 600px) {
    .offering-card { padding: 22px 20px; gap: 18px; }
}

/* ============================================
   SITES PAGE – WHY TRIER
   ============================================ */
.why-trier {
    display: grid;
    grid-template-columns: 5fr 3fr;
    min-height: 520px;
}
.why-trier-left {
    background-color: var(--dark-green);
    padding: 80px 64px 80px max(var(--pad-x), calc((100vw - var(--max-w)) / 2 + var(--pad-x)));
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-trier-left .eyebrow { margin-bottom: 20px; }
.why-trier-left h2 {
    font-weight: 700;
    font-size: clamp(26px, 3vw, 42px);
    color: var(--off-white);
    line-height: 1.18;
    margin-bottom: 24px;
}
.why-trier-left p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    opacity: .88;
    margin-bottom: 16px;
}
.why-trier-left p:last-child { margin-bottom: 0; }

.why-trier-right {
    background-color: var(--light-blue);
    padding: 80px max(var(--pad-x), calc((100vw - var(--max-w)) / 2 + var(--pad-x))) 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.why-trier-right-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    object-fit: contain;
}
.why-trier-right h3 {
    font-weight: 700;
    font-size: clamp(22px, 2.5vw, 34px);
    color: var(--dark-green);
    line-height: 1.25;
    margin-bottom: 16px;
}
.why-trier-right p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
    margin: 0;
}
@media (max-width: 900px) {
    .why-trier { grid-template-columns: 1fr; }
    .why-trier-left  { padding: 56px var(--pad-x); order: -1; }
    .why-trier-right { padding: 56px var(--pad-x); }
}

/* ============================================
   SITES PAGE – GET INVOLVED
   ============================================ */
.get-involved {
    background-color: var(--mid-green);
    position: relative;
    overflow: hidden;
    padding: var(--section-v) 0;
    text-align: center;
}
.get-involved-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.get-involved .container { position: relative; z-index: 1; }
.get-involved-content { max-width: 820px; margin: 0 auto; }
.get-involved .eyebrow { margin-bottom: 22px; }
.get-involved h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.get-involved p {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FBF9F8;
    line-height: 1.65;
    margin-bottom: 40px;
    opacity: 1;
}
.get-involved-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.get-involved-note {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FBF9F8;
    opacity: 0.6;
    margin: 0;
}
@media (max-width: 480px) {
    .get-involved-btns { flex-direction: column; align-items: center; }
}

/* ============================================
   HOSPITALS PAGE – HERO
   ============================================ */
.hero-hospitals {
    background-image: none;
    height: auto;
    display: block;
}
.hero-hospitals-img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-hospitals-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.hero-hospitals .hero-content p { max-width: none; }
.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}
@media (max-width: 480px) {
    .hero-btns { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   HOSPITALS PAGE – THE STRATEGIC SHIFT
   ============================================ */
.strategic-shift {
    background-color: var(--mid-green);
    padding: var(--section-v) 0;
}
.strategic-shift-grid {
    display: grid;
    grid-template-columns: 3fr 4.5fr;
    gap: 6.25%;
    align-items: start;
}
.strategic-shift-left .eyebrow { margin-bottom: 20px; }
.strategic-shift-left h2 {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--off-white);
    line-height: 1.15;
}
.strategic-shift-right p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 24px;
    opacity: .88;
}
.strategic-shift-right p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
    .strategic-shift-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   HOSPITALS PAGE – THE SITUATION
   ============================================ */
.the-situation {
    background-color: var(--off-white);
    padding: var(--section-v) 0;
    border-top: 1px solid rgba(89,126,123,.18);
}
.situation-intro .eyebrow { margin-bottom: 20px; }
.situation-intro h2 {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--dark-green);
    line-height: 1.15;
    margin-bottom: 32px;
}
.situation-body {
    margin-bottom: 52px;
}
.situation-body p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    margin-bottom: 18px;
}
.situation-body p:last-child { margin-bottom: 0; }

.situation-grid {
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-template-rows: repeat(2, clamp(200px, 17vw, 270px));
    column-gap: 12px;
    row-gap: 12px;
}

/* Row 1: 5 cols text | 3 cols image | 7 cols text */
.situation-grid > .situation-tile:nth-child(1) { grid-column: 1 / 6;  grid-row: 1; }
.situation-grid > .situation-tile:nth-child(2) { grid-column: 6 / 9;  grid-row: 1; }
.situation-grid > .situation-tile:nth-child(3) { grid-column: 9 / 16; grid-row: 1; }

/* Row 2: 9 cols text | 6 cols image */
.situation-grid > .situation-tile:nth-child(4) { grid-column: 1 / 10;  grid-row: 2; }
.situation-grid > .situation-tile:nth-child(5) { grid-column: 10 / 16; grid-row: 2; }

/* Centre and middle-align all three text tiles */
.situation-grid > .situation-tile:nth-child(1),
.situation-grid > .situation-tile:nth-child(3),
.situation-grid > .situation-tile:nth-child(4) {
    text-align: center;
    justify-content: center;
}

.situation-tile {
    background-color: var(--light-blue);
    border-radius: var(--radius);
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.situation-tile.is-image {
    padding: 0;
    overflow: hidden;
    position: relative;
}
.situation-tile.is-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}
.situation-tile-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    object-fit: contain;
    flex-shrink: 0;
}
.situation-stat {
    font-weight: 700;
    font-size: clamp(30px, 4vw, 46px);
    color: var(--dark-green);
    line-height: 1;
    margin-bottom: 14px;
}
.situation-tile p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.6;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    /* Collapse 15-column grid to single stack */
    .situation-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }
    .situation-grid > .situation-tile {
        grid-column: 1 !important;
        grid-row: auto !important;
        text-align: left !important;
        justify-content: flex-start !important;
        padding: 24px 20px;
    }
    /* Icon left-aligns with text in single-column mode */
    .situation-tile-icon {
        margin-left: 0;
        margin-right: 0;
    }
    /* Image tiles need an explicit height since the grid no longer provides one */
    .situation-tile.is-image {
        height: 260px;
        padding: 0;
    }
    .situation-stat {
        margin-bottom: 10px;
    }
}
@media (max-width: 600px) {
    .situation-grid > .situation-tile { padding: 20px 16px; }
    .situation-tile-icon { width: 40px; height: 40px; margin-bottom: 12px; }
    .situation-tile.is-image { height: 220px; }
    .situation-tile p { font-size: 18px; }
}

/* ============================================
   HOSPITALS PAGE – WHERE REVITA FITS
   ============================================ */
.where-revita-fits {
    background-color: var(--dark-green);
    position: relative;
    overflow: hidden;
    padding: var(--section-v) 0;
    text-align: center;
}
.where-revita-fits-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.where-revita-fits .container { position: relative; z-index: 1; }
.where-revita-fits-content { max-width: 90%; margin: 0 auto; }
.where-revita-fits .eyebrow { margin-bottom: 22px; }
.where-revita-fits h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 32px;
}
.where-revita-fits p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 20px;
    opacity: .88;
}
.where-revita-fits p:last-child { margin-bottom: 0; }

/* ============================================
   HOSPITALS PAGE – WHAT A PARTNERSHIP MEANS
   ============================================ */
.what-partnership {
    background-color: var(--off-white);
    padding: var(--section-v) 0;
}
.what-partnership-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    align-items: start;
    margin-bottom: 64px;
}
.what-partnership-top-left .eyebrow { margin-bottom: 20px; }
.what-partnership-top h2 {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--dark-green);
    line-height: 1.15;
}
.what-partnership-top-right {
    position: relative;
    align-self: stretch;
}
.what-partnership-top-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    display: block;
    object-fit: cover;
}

.what-partnership-cards {
    display: flex;
    align-items: stretch;
    gap: 40px;
}
.partnership-card {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.partnership-divider {
    width: 1px;
    flex-shrink: 0;
    background-color: var(--olive);
}
.partnership-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    object-fit: contain;
    flex-shrink: 0;
}
.partnership-card h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 2.2vw, 30px);
    color: var(--olive);
    line-height: 1.25;
    margin-bottom: 14px;
    text-wrap: balance;
}
.partnership-card p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
    margin: 0;
}
@media (max-width: 900px) {
    .what-partnership-top { grid-template-columns: 1fr; gap: 36px; margin-bottom: 44px; }
    .what-partnership-top-right { position: static; align-self: auto; min-height: 240px; }
    .what-partnership-top-img { position: static; width: 100%; height: 240px; }
    .what-partnership-cards { flex-direction: column; gap: 0; }
    .partnership-card { padding: 32px 0; }
    .partnership-card:first-child { padding-top: 0; }
    .partnership-card:last-child  { padding-bottom: 0; }
    .partnership-divider { width: 100%; height: 1px; }
}

/* ============================================
   HOSPITALS PAGE – MAKE THE STRATEGIC SHIFT
   ============================================ */
.make-strategic-shift {
    background-color: var(--mid-green);
    position: relative;
    overflow: hidden;
    padding: var(--section-v) 0;
    text-align: center;
}
.make-strategic-shift-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.make-strategic-shift .container { position: relative; z-index: 1; }
.make-strategic-shift-content { max-width: 100%; }
.make-strategic-shift .eyebrow { margin-bottom: 22px; }
.make-strategic-shift h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.make-strategic-shift p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 40px;
    opacity: .88;
    max-width: 87.5%;
    margin-left: auto;
    margin-right: auto;
}
.make-strategic-shift .btn { display: inline-block; margin-bottom: 20px; }
.make-strategic-shift-note {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    opacity: 0.6;
    margin: 0;
}

/* ============================================
   PUBLIC AUTHORITIES PAGE – HERO
   ============================================ */
.hero-public-authorities {
    background-image: none;
    height: auto;
    display: block;
}
.hero-pa-img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-pa-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.hero-public-authorities .hero-content  { max-width: 100%; }
.hero-public-authorities .hero h1       { max-width: 55%; }
.hero-public-authorities .hero p        { max-width: 100%; }

/* ============================================
   PUBLIC AUTHORITIES PAGE – POLICY CONTEXT
   ============================================ */
.policy-context {
    background-color: var(--off-white);
    padding: var(--section-v) 0 48px;
}
.policy-context-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    align-items: start;
}
.policy-context-left .eyebrow { margin-bottom: 20px; }
.policy-context-left h2 {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--dark-green);
    line-height: 1.15;
    margin-bottom: 24px;
}
.policy-context-left p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    margin-bottom: 18px;
    opacity: .85;
}
.policy-context-left p:last-child { margin-bottom: 0; }
.policy-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.policy-card {
    background-color: rgba(89, 126, 123, .10);
    border: 1px solid var(--mid-green);
    border-radius: var(--radius);
    padding: 28px;
}
.policy-card-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 14px;
}
.policy-card-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}
.policy-card h3 {
    font-weight: 700;
    font-size: 30px;
    color: var(--mid-green);
    line-height: 1.3;
    margin: 0;
}
.policy-card p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
    margin: 0;
}
@media (max-width: 760px) {
    .policy-context-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================
   PUBLIC AUTHORITIES PAGE – CHALLENGES
   ============================================ */
.challenges {
    background-color: var(--off-white);
    padding: 48px 0 var(--section-v);
}
.challenges-header { margin-bottom: 48px; }
.challenges-header .eyebrow { margin-bottom: 20px; }
.challenges-header h2 {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--dark-green);
    line-height: 1.15;
}
.challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    align-items: stretch;
}
.challenges-list { display: flex; flex-direction: column; }
.challenge-item {
    padding: 28px 0;
    border-top: 1px solid var(--light-blue);
}
.challenge-item:last-child { border-bottom: 1px solid var(--light-blue); }
.challenge-item .callout { margin-bottom: 14px; }
.challenge-item h3 {
    font-weight: 700;
    font-size: 30px;
    color: var(--light-blue);
    line-height: 1.25;
    margin-bottom: 12px;
}
.challenge-item p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
    margin: 0;
}
.challenges-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 320px;
}
.challenges-image-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 760px) {
    .challenges-grid { grid-template-columns: 1fr; gap: 32px; }
    .challenges-image-wrap { order: -1; min-height: 260px; }
}

/* ============================================
   PUBLIC AUTHORITIES PAGE – WHAT REVITA PROVIDES
   ============================================ */
.what-revita-provides {
    background-color: var(--dark-green);
    padding: var(--section-v) 0;
}
.what-revita-provides .eyebrow { margin-bottom: 22px; }
.what-revita-provides h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 52px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.provides-body {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 18px;
    opacity: .88;
}
.provides-body:last-of-type { margin-bottom: 0; }
.provides-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}
.provides-card {
    background-color: rgba(251, 249, 248, .05);
    border: 1px solid var(--off-white);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.provides-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}
.provides-card-body h3 {
    font-weight: 700;
    font-size: 30px;
    color: var(--off-white);
    line-height: 1.3;
    margin-bottom: 8px;
}
.provides-card-body p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    opacity: .85;
    margin: 0;
}
@media (max-width: 600px) {
    .provides-card { padding: 22px 20px; gap: 18px; }
}

/* ============================================
   PUBLIC AUTHORITIES PAGE – CTA SECTION
   ============================================ */
.pa-cta {
    background-color: var(--mid-green);
    position: relative;
    overflow: hidden;
    padding: var(--section-v) 0;
    text-align: center;
}
.pa-cta-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.pa-cta .container { position: relative; z-index: 1; }
.pa-cta-content { max-width: 100%; }
.pa-cta .eyebrow { margin-bottom: 22px; }
.pa-cta h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.pa-cta p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 40px;
    opacity: .88;
}
.pa-cta-note {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    opacity: 0.6;
    margin-top: 16px;
}

/* ============================================
   PHYSICIANS PAGE – HERO
   ============================================ */
.hero-physicians {
    background-image: none;
    height: auto;
    display: block;
}
.hero-physicians-img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-physicians-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}
.hero-physicians .hero-content { max-width: 100%; }
.hero-physicians .hero-content p { max-width: 720px; }

/* ============================================
   PHYSICIANS PAGE – THE REALITY OF PRACTICE
   ============================================ */
.reality-practice {
    background-color: var(--off-white);
    padding: var(--section-v) 0;
}
.reality-practice .eyebrow { margin-bottom: 20px; }
.reality-practice h2 {
    font-weight: 700;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--dark-green);
    line-height: 1.15;
    margin-bottom: 24px;
}
.reality-intro-body {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    margin-bottom: 48px;
    opacity: .85;
}
.reality-rows { display: flex; flex-direction: column; }
.reality-rule {
    border: none;
    border-top: 1px solid var(--olive);
    margin: 0;
}
.reality-row {
    display: grid;
    grid-template-columns: 28% 10% 62%;
    align-items: center;
    padding: 36px 0;
}
.reality-row-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.reality-row-left .callout { align-self: flex-start; }
.reality-stat {
    font-weight: 700;
    font-size: clamp(26px, 3vw, 46px);
    color: var(--olive);
    line-height: 1.1;
    margin: 0;
}
.reality-row-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.reality-row-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}
.reality-row-right p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
    margin: 0;
}
@media (max-width: 760px) {
    .reality-row {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 16px 20px;
    }
    .reality-row-left { grid-column: 1 / 2; grid-row: 1; }
    .reality-row-icon { grid-column: 2 / 3; grid-row: 1; justify-content: flex-start; }
    .reality-row-right { grid-column: 1 / 3; grid-row: 2; }
}
@media (max-width: 480px) {
    .reality-row { grid-template-columns: 1fr; grid-template-rows: none; }
    .reality-row-left  { grid-column: 1; grid-row: auto; }
    .reality-row-icon  { grid-column: 1; grid-row: auto; }
    .reality-row-right { grid-column: 1; grid-row: auto; }
}

/* ============================================
   PHYSICIANS PAGE – WHAT REVITA PROVIDES
   ============================================ */
.what-revita-physicians {
    background-color: var(--dark-green);
    padding: var(--section-v) 0;
}
.what-revita-physicians .eyebrow { margin-bottom: 20px; }
.what-revita-physicians h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.what-revita-physicians-body {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    opacity: .88;
    margin-bottom: 48px;
}
.revita-provides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.revita-provides-card {
    background-color: rgba(251, 249, 248, 0.05);
    border: 1px solid var(--off-white);
    border-radius: var(--radius);
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.revita-provides-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.revita-provides-card h3 {
    font-weight: 700;
    font-size: 30px;
    color: var(--off-white);
    line-height: 1.25;
    margin-bottom: 12px;
}
.revita-provides-card p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    opacity: .85;
    margin: 0;
}
@media (max-width: 900px) {
    .revita-provides-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .revita-provides-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PHYSICIANS PAGE – ENGAGEMENT MODELS
   ============================================ */
.engagement-models {
    background-color: var(--off-white);
    padding: var(--section-v) 0;
}
.engagement-intro { margin-bottom: 48px; }
.engagement-intro .eyebrow { margin-bottom: 18px; }
.engagement-intro h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--dark-green);
    line-height: 1.12;
    margin-bottom: 20px;
}
.engagement-intro p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
}
.engagement-rows { display: flex; flex-direction: column; }
.engagement-row {
    display: grid;
    grid-template-columns: 38% 54%;
    column-gap: 8%;
    align-items: stretch;
    padding: 40px 0;
    border-top: 1px solid var(--mid-green);
}
.engagement-row:last-child { border-bottom: 1px solid var(--mid-green); }

/* Reversed row: text left (54%), image right (38%) */
.engagement-row-reversed {
    grid-template-columns: 54% 38%;
}
.engagement-row-reversed .engagement-row-img-wrap { order: 2; }
.engagement-row-reversed .engagement-row-content  { order: 1; }

.engagement-row-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.engagement-row-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.engagement-row-content { min-width: 0; }
.engagement-row-content .callout { margin-bottom: 14px; display: inline-block; }
.engagement-row-content h3 {
    font-weight: 700;
    font-size: clamp(20px, 2.4vw, 30px);
    color: var(--dark-green);
    line-height: 1.25;
    margin-bottom: 16px;
}
.engagement-row-content p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
    margin: 0;
}
@media (max-width: 760px) {
    .engagement-row,
    .engagement-row-reversed {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .engagement-row-img-wrap { min-height: 240px; order: -1 !important; }
    .engagement-row-content  { order: 0 !important; }
}

/* ============================================
   PHYSICIANS PAGE – REGISTER YOUR INTEREST
   ============================================ */
.register-interest {
    background-color: var(--mid-green);
    position: relative;
    overflow: hidden;
    padding: var(--section-v) 0;
    text-align: center;
}
.register-interest-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.register-interest .container { position: relative; z-index: 1; }
.register-interest-content { max-width: 100%; }
.register-interest .eyebrow { margin-bottom: 22px; }
.register-interest h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.register-interest p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 40px;
    opacity: .88;
}
.register-interest .btn { display: inline-block; margin-bottom: 20px; }
.register-interest-note {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: #FBF9F8;
    opacity: 0.6;
    margin: 0;
}

/* ============================================
   ABOUT PAGE – HERO
   ============================================ */
.hero-about {
    background-image: none;
    height: auto;
    display: block;
    overflow: hidden;
}
.hero-about-img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-about-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-about .hero-content {
    max-width: 80%;
    text-align: left;
}
.hero-about .hero-content p {
    max-width: 75%;
}
.hero-about .hero-content .eyebrow {
    margin-bottom: 20px;
}
.hero-about .hero-content h1 {
    margin-bottom: 28px;
}
.hero-about .hero-content p {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 14px;
}
.hero-about .hero-content p:last-child {
    margin-bottom: 0;
}
@media (max-width: 760px) {
    .hero-about-content-wrap { padding-bottom: 40px; }
    .hero-about .hero-content { max-width: 90%; }
}

/* ============================================
   ABOUT PAGE – ADVISORY BOARD
   ============================================ */
.advisory-board {
    background-color: var(--off-white);
    padding: var(--section-v) 0;
}
.advisory-intro {
    margin-bottom: 52px;
}
.advisory-intro .eyebrow { margin-bottom: 18px; }
.advisory-intro h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--dark-green);
    line-height: 1.12;
    margin-bottom: 20px;
}
.advisory-intro p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
}

.advisor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
}
.advisor-card {
    display: flex;
    flex-direction: column;
}
.advisor-card-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    margin-bottom: 14px;
}
.advisor-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.25;
    margin: 0 0 4px;
}
.advisor-role {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 8px;
    line-height: 1.4;
}
.advisor-linkedin {
    font-weight: 400;
    font-size: 14px;
    color: var(--mid-green);
    display: inline-block;
    transition: opacity 0.2s;
}
.advisor-linkedin:hover { opacity: 0.65; }

@media (max-width: 760px) {
    .advisor-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}
@media (max-width: 480px) {
    .advisor-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================
   ABOUT PAGE – DIGITAL INFRASTRUCTURE
   ============================================ */
.digital-infra {
    background-color: #fff;
    padding: var(--section-v) 0;
}
.digital-infra-intro {
    margin-bottom: 56px;
}
.digital-infra-intro .eyebrow { margin-bottom: 18px; }
.digital-infra-intro h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--dark-green);
    line-height: 1.12;
    margin-bottom: 20px;
}
.digital-infra-intro p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
    margin-bottom: 14px;
}
.digital-infra-intro p:last-child { margin-bottom: 0; }

.platform-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.platform-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}
.platform-logo-img {
    width: 140px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}
.platform-label {
    font-weight: 600;
    font-size: 15px;
    color: var(--mid-green);
    text-align: center;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom: 28px;
}
.platform-card {
    background-color: rgba(180, 189, 98, 0.10);
    border: 1px solid var(--olive);
    border-radius: var(--radius);
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.platform-card-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.platform-card-title {
    font-weight: 700;
    font-size: 30px;
    color: var(--olive);
    margin: 0 0 8px;
    line-height: 1.2;
}
.platform-card-desc {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    margin: 0;
    max-width: 95%;
}

.platform-caption {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--mid-green);
    opacity: 0.6;
    text-align: center;
    margin: 0;
}

@media (max-width: 760px) {
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .platform-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT PAGE – COLLABORATE CTA
   ============================================ */
.collaborate-cta {
    background-color: var(--mid-green);
    position: relative;
    overflow: hidden;
    padding: var(--section-v) 0;
    text-align: center;
}
.collaborate-loop {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.collaborate-cta .container { position: relative; z-index: 1; }
.collaborate-content { max-width: none; }
.collaborate-cta .eyebrow { margin-bottom: 22px; }
.collaborate-cta h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.collaborate-cta p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 40px;
    opacity: .75;
}
.collaborate-cta .btn {
    display: inline-block;
    margin-bottom: 20px;
}
.collaborate-note {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    opacity: 0.6;
    margin: 0;
}

/* ============================================
   GHOST BUTTON – WHITE OUTLINE
   (used on dark/image hero backgrounds)
   ============================================ */
.btn-ghost-white {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    border: 1.5px solid #fff;
    border-radius: var(--radius);
    padding: 13px 26px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    line-height: 1;
    white-space: nowrap;
}
.btn-ghost-white:hover  { opacity: .80; transform: translateY(-1px); }
.btn-ghost-white:active { transform: translateY(0); }

/* ============================================
   PARTNERS PAGE – HERO
   ============================================ */
.hero-partners {
    background-image: none;
    height: auto;
    display: block;
}
.hero-partners-img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-partners-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

/* ============================================
   PARTNERS PAGE – WHO WE PARTNER WITH
   ============================================ */
.who-we-partner {
    background-color: var(--off-white);
    padding: var(--section-v) 0;
}
.who-we-partner-intro {
    margin-bottom: 48px;
}
.who-we-partner-intro .eyebrow { margin-bottom: 18px; }
.who-we-partner-intro h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--dark-green);
    line-height: 1.15;
    margin-bottom: 20px;
}
.who-we-partner-intro p {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    opacity: .85;
    max-width: 820px;
}

.partner-rows { display: flex; flex-direction: column; }
.partner-rule {
    border: none;
    border-top: 1px solid var(--dark-green);
    margin: 0;
}
.partner-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    padding: 32px 0;
}
.partner-row-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}
.partner-row-title {
    font-weight: 700;
    font-size: 30px;
    color: var(--mid-green);
    line-height: 1.25;
    margin-bottom: 10px;
}
.partner-row-desc {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-green);
    line-height: 1.65;
    margin: 0;
    opacity: .85;
}
@media (max-width: 600px) {
    .partner-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .partner-row-icon { margin-top: 0; }
}

/* ============================================
   PARTNERS PAGE – GET IN TOUCH CTA
   ============================================ */
.partners-get-in-touch {
    background-color: var(--mid-green);
    position: relative;
    overflow: hidden;
    padding: var(--section-v) 0;
    text-align: center;
}
.partners-get-in-touch-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}
.partners-get-in-touch .container { position: relative; z-index: 1; }
.partners-get-in-touch-content { max-width: 87.5%; margin: 0 auto; }
.partners-get-in-touch .eyebrow { margin-bottom: 22px; }
.partners-get-in-touch h2 {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.partners-get-in-touch p {
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 4px;
    opacity: .75;
}
.partners-get-in-touch p:last-of-type { margin-bottom: 0; }
.partners-get-in-touch .btn {
    display: inline-block;
    margin-top: 36px;
    margin-bottom: 20px;
}
.partners-get-in-touch-note {
    display: block;
    font-weight: 600;
    font-size: 18px;
    color: var(--off-white);
    opacity: 0.6;
    margin: 0;
}

/* ============================================
   MOBILE HERO – SOLID DARK-TEAL BACKGROUNDS
   Image hidden on mobile; solid colour used instead.
   Block placed last so it overrides per-page rules.
   ============================================ */
@media (max-width: 600px) {
    .hero-hospitals-img,
    .hero-pa-img,
    .hero-physicians-img,
    .hero-about-img,
    .hero-partners-img { display: none; }

    .hero-hospitals-content-wrap,
    .hero-pa-content-wrap,
    .hero-physicians-content-wrap,
    .hero-about-content-wrap,
    .hero-partners-content-wrap {
        position: relative;
        background-color: var(--dark-green);
        padding: var(--section-v) 0;
    }

    /* Release any per-page max-width constraints on mobile */
    .hero-about .hero-content   { max-width: 100%; }
    .hero-about .hero-content p { max-width: 100%; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.page-header-dark {
    background-color: var(--dark-green);
    padding: 80px 0 64px;
}
.page-header-dark .eyebrow { margin-bottom: 18px; }
.page-header-dark h1 {
    font-weight: 700;
    font-size: clamp(34px, 5vw, 56px);
    color: var(--off-white);
    line-height: 1.1;
    margin: 0;
}

.legal-content {
    background-color: var(--off-white);
    padding: var(--section-v) 0;
}
.legal-content h2 {
    font-weight: 700;
    font-size: clamp(18px, 2.4vw, 30px);
    color: var(--dark-green);
    line-height: 1.25;
    margin: 52px 0 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--dark-green);
    line-height: 1.3;
    margin: 32px 0 12px;
}
.legal-content p {
    font-weight: 500;
    font-size: 17px;
    color: var(--dark-green);
    line-height: 1.75;
    margin-bottom: 16px;
}
.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-content li {
    font-weight: 500;
    font-size: 17px;
    color: var(--dark-green);
    line-height: 1.75;
    margin-bottom: 8px;
}
.legal-content strong { font-weight: 700; }
.legal-content address {
    font-style: normal;
    font-weight: 500;
    font-size: 17px;
    color: var(--dark-green);
    line-height: 1.75;
    margin-bottom: 16px;
}
.legal-content a {
    color: var(--mid-green);
    text-decoration: none;
    transition: text-decoration 0.15s;
}
.legal-content a:hover { text-decoration: underline; }
.legal-meta {
    font-size: 14px;
    font-weight: 500;
    color: var(--mid-green);
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(89,126,123,.25);
    opacity: .8;
}
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
.legal-table th {
    font-weight: 700;
    font-size: 15px;
    text-align: left;
    padding: 12px 16px;
    background-color: rgba(89,126,123,.10);
    color: var(--dark-green);
    border-bottom: 2px solid rgba(89,126,123,.25);
}
.legal-table td {
    padding: 12px 16px;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-green);
    line-height: 1.65;
    border-bottom: 1px solid rgba(89,126,123,.15);
}
.legal-table tr:last-child td { border-bottom: none; }
