/*
 * RUSH — Reach Your Safe Hospital
 * Stylesheet — dark + light themes
 */

:root {
    --teal: #00b4a6;
    --teal-l: #00d4c4;
    --teal-d: #007a70;
    --red: #e63946;
    --amber: #f59e0b;
    --site-max-width: 1320px;
}

[data-theme="dark"] {
    --bg: #050e12;
    --bg2: #08181f;
    --bg3: #0d2228;
    --surf: #0f2a34;
    --bdr: rgba(0, 180, 166, .14);
    --bdrh: rgba(0, 180, 166, .3);
    --t1: #f0f4f4;
    --t2: #c0d4d2;
    --t3: #7aada8;
    --t4: #4a7a74;
    --logo-ru: #f0f4f4;
    --road: #112028;
    --cbg: #0d2228;
    --chov: #102e38;
    --altbg: #08181f;
    --hsub: rgba(200, 220, 218, .82);
    --sl: #7aada8;
    --muted-btn: rgba(0, 180, 166, .1);
}

[data-theme="light"] {
    --bg: #f2faf8;
    --bg2: #e6f4f1;
    --bg3: #d8ece8;
    --surf: #ffffff;
    --bdr: rgba(0, 130, 120, .18);
    --bdrh: rgba(0, 130, 120, .38);
    --t1: #071a1f;
    --t2: #143430;
    --t3: #2a6660;
    --t4: #3a8070;
    --logo-ru: #071a1f;
    --road: #c4dedc;
    --cbg: #ffffff;
    --chov: #eaf6f4;
    --altbg: #e6f4f1;
    --teal: #007a70;
    --teal-l: #009990;
    --teal-d: #005a52;
    --red: #c0282e;
    --t1: #071a1f;
    --hsub: rgba(7, 26, 31, .75);
    --sl: #3a6a64;
    --muted-btn: rgba(0, 120, 110, .08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--t1);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    transition: background .3s, color .3s;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: 'DM Sans', sans-serif;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, var(--site-max-width));
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 52px;
    height: 66px;
    transition: background .3s, border-color .3s;
}

nav.sc {
    background: var(--bg);
    border-bottom: 1px solid var(--bdr);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.hero,
.stats-bar,
.rd,
.sec,
.hosp-section,
.fcta,
footer {
    width: min(100%, var(--site-max-width));
    margin-left: auto;
    margin-right: auto;
}

.nl {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--t3);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--teal);
}

.nr {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tt {
    width: 42px;
    height: 22px;
    background: var(--bg3);
    border: 1px solid var(--bdrh);
    border-radius: 11px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background .3s;
}

.tt::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--teal);
    transition: transform .3s;
}

[data-theme="light"] .tt::after {
    transform: translateX(20px);
}

.tt-ic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
    height: 100%;
    pointer-events: none;
}

.tt-ic span {
    font-size: 9px;
}

.ncta {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: opacity .2s, transform .2s;
}

.ncta:hover {
    opacity: .85;
    transform: translateY(-1px);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 520px);
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 100px 52px 72px;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-right {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fu .9s .8s forwards;
}

.hgrid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(var(--bdr) 1px, transparent 1px), linear-gradient(90deg, var(--bdr) 1px, transparent 1px);
    background-size: 54px 54px;
    animation: gm 34s linear infinite;
    opacity: .55;
}

@keyframes gm {
    to {
        background-position: 0 54px;
    }
}

.hglow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 180, 166, .07) 0%, transparent 68%);
    top: -180px;
    left: -120px;
    animation: gp 7s ease-in-out infinite;
}

.hglow2 {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(230, 57, 70, .05) 0%, transparent 68%);
    bottom: 0;
    right: -80px;
    animation: gp 9s ease-in-out infinite reverse;
}

@keyframes gp {

    0%,
    100% {
        opacity: .5
    }

    50% {
        opacity: 1
    }
}

.htag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono';
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 26px;
    opacity: 0;
    animation: fu .7s .15s forwards;
}

.htag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: bl 1.4s infinite;
    flex-shrink: 0;
}

@keyframes bl {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.htitle {
    font-family: 'Bebas Neue';
    font-size: clamp(56px, 7.5vw, 120px);
    line-height: .88;
    letter-spacing: 1px;
    color: var(--t1);
    opacity: 0;
    animation: fu .8s .3s forwards;
}

.htitle .ac {
    color: var(--teal);
}

.hsub {
    max-width: 480px;
    margin-top: 22px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--hsub);
    opacity: 0;
    animation: fu .8s .5s forwards;
}

.hacts {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fu .8s .7s forwards;
}

.bp {
    background: var(--red);
    color: #fff;
    border: none;
    padding: 14px 34px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: opacity .2s, transform .2s;
}

.bp:hover {
    opacity: .86;
    transform: translateY(-2px);
}

.bo {
    background: transparent;
    color: var(--teal);
    border: 1.5px solid var(--teal);
    padding: 13px 34px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background .2s, color .2s, transform .2s;
}

.bo:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
}

.sv {
    font-family: 'Bebas Neue';
    font-size: 46px;
    color: var(--teal);
    line-height: 1;
}

.sl {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sl);
    margin-top: 5px;
}

@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* STATS BAR */
.stats-bar {
    display: flex;
    align-items: stretch;
    background: var(--bg3);
    border-top: 1px solid var(--bdrh);
    border-bottom: 1px solid var(--bdrh);
    overflow: hidden;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    text-align: center;
    transition: background .2s;
}

.stat-item:hover {
    background: var(--cbg);
}

.stat-div {
    width: 1px;
    background: var(--bdr);
    flex-shrink: 0;
    align-self: stretch;
}

.stats-bar .sv {
    font-family: 'Bebas Neue';
    font-size: 44px;
    color: var(--teal);
    line-height: 1;
}

.stats-bar .sl {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sl);
    margin-top: 5px;
}

@media(max-width:960px) {
    .stats-bar {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: calc(50% - 1px);
        min-width: calc(50% - 1px);
    }

    .stat-div {
        display: none;
    }

    .stat-item {
        border-bottom: 1px solid var(--bdr);
    }
}

/* ANIMATION PANEL */
.anim-panel {
    background: #050e12;
    border: 1px solid rgba(0, 180, 166, .2);
    border-radius: 12px;
    overflow: hidden;
    font-family: 'DM Sans', system-ui, sans-serif;
}

[data-theme="light"] .anim-panel {
    border-color: rgba(0, 120, 110, .25);
}

.rush-scene {
    position: relative;
    width: 100%;
    background: #050e12;
    line-height: 0;
}

.rush-scene canvas {
    display: block;
    width: 100%;
    height: auto;
}

.a-ctrl {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 12px;
    background: #030d10;
    border-top: 1px solid rgba(0, 180, 166, .1);
}

.a-pbtn {
    background: #00b4a6;
    border: none;
    color: #050e12;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}

.a-pbtn:hover {
    background: #00d4c4;
}

.a-pwrap {
    flex: 1;
    height: 3px;
    background: #0d2228;
    border-radius: 2px;
    overflow: hidden;
}

.a-pbar {
    height: 100%;
    background: #00b4a6;
    border-radius: 2px;
    width: 0%;
}

.a-stxt {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #4a7a74;
    text-transform: uppercase;
    min-width: 100px;
    text-align: right;
}

@media(max-width:960px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 110px 24px 60px;
    }
}

/* ROAD DIV */
.rd {
    height: 16px;
    background: var(--bg3);
    border-top: 1.5px solid var(--bdrh);
    border-bottom: 1.5px solid var(--bdrh);
    position: relative;
    overflow: hidden;
}

.rd::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1.5px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(90deg, var(--t1) 0, var(--t1) 20px, transparent 20px, transparent 44px);
    opacity: .14;
    animation: rs 2.5s linear infinite;
}

@keyframes rs {
    to {
        background-position: 88px;
    }
}

/* SECTION */
.sec {
    padding: 104px 52px;
}

.sec.alt {
    background: var(--altbg);
}

.ey {
    font-family: 'DM Mono';
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ey::before {
    content: '';
    width: 26px;
    height: 1.5px;
    background: var(--teal);
    flex-shrink: 0;
}

.st {
    font-family: 'Bebas Neue';
    font-size: clamp(42px, 5.8vw, 84px);
    line-height: .92;
    color: var(--t1);
    margin-bottom: 18px;
}

.st .ac {
    color: var(--teal);
}

.sb {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--t2);
    max-width: 560px;
}

/* reveal */
.rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}

.rv.in {
    opacity: 1;
    transform: translateY(0);
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 56px;
}

.step {
    background: var(--cbg);
    padding: 34px 26px 30px;
    border: 1px solid var(--bdr);
    position: relative;
    overflow: hidden;
    transition: transform .3s, border-color .3s, background .3s;
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    background: var(--chov);
}

.sn {
    font-family: 'Bebas Neue';
    font-size: 68px;
    color: var(--bdrh);
    line-height: 1;
    margin-bottom: 14px;
}

.step h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--t1);
    margin-bottom: 9px;
}

.step p {
    font-size: 13px;
    font-weight: 300;
    color: var(--t2);
    line-height: 1.68;
}

.sbar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.step:hover .sbar {
    transform: scaleX(1);
}

/* FEATURES */
.flayout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 72px;
    margin-top: 56px;
    align-items: start;
}

.fi {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 0;
    border-bottom: 1px solid var(--bdr);
    transition: padding-left .3s;
}

.fi:first-child {
    border-top: 1px solid var(--bdr);
}

.fi:hover {
    padding-left: 10px;
}

.fn {
    font-family: 'DM Mono';
    font-size: 11px;
    color: var(--teal);
    letter-spacing: 2px;
    flex-shrink: 0;
    padding-top: 2px;
    width: 26px;
}

.ft {
    font-size: 14px;
    font-weight: 500;
    color: var(--t1);
    margin-bottom: 6px;
}

.fd {
    font-size: 13px;
    font-weight: 300;
    color: var(--t2);
    line-height: 1.65;
}

/* Phone */
.pw {
    position: sticky;
    top: 96px;
}

.ph {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    background: var(--cbg);
    border: 1px solid var(--bdrh);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 28px 56px rgba(0, 0, 0, .16);
}

.phi {
    padding: 42px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    position: relative;
}

.phn {
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 5px;
    background: var(--bg3);
    border-radius: 3px;
}

.phs {
    display: flex;
    justify-content: space-between;
    font-family: 'DM Mono';
    font-size: 9px;
    color: var(--t3);
    margin-bottom: 4px;
}

.lp {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    display: inline-block;
    animation: bl 1.2s infinite;
    margin-right: 4px;
}

.pc {
    background: var(--muted-btn);
    border: 1px solid var(--bdr);
    border-radius: 9px;
    padding: 12px 13px;
}

.pcl {
    font-family: 'DM Mono';
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pcv {
    font-size: 14px;
    font-weight: 500;
    color: var(--t1);
}

.pcs {
    font-size: 10px;
    font-weight: 300;
    color: var(--t3);
    margin-top: 2px;
}

.pm {
    height: 120px;
    background: var(--bg3);
    border-radius: 9px;
    position: relative;
    overflow: hidden;
}

.pmr {
    position: absolute;
    height: 2px;
    background: var(--bdrh);
    left: 0;
    right: 0;
}

.pmrt {
    position: absolute;
    bottom: 20px;
    left: 10px;
    right: 10px;
    height: 2.5px;
    background: var(--teal);
    border-radius: 2px;
    animation: rp 2s ease-in-out infinite;
}

@keyframes rp {

    0%,
    100% {
        opacity: .55
    }

    50% {
        opacity: 1
    }
}

.pmd {
    position: absolute;
    bottom: 13px;
    left: 10px;
    width: 9px;
    height: 9px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(0, 180, 166, .2);
}

.pmh {
    position: absolute;
    bottom: 13px;
    right: 10px;
    background: var(--red);
    width: 17px;
    height: 13px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmh span {
    font-size: 7px;
    font-weight: 700;
    color: #fff;
}

.pme {
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cbg);
    border: 1px solid var(--bdr);
    padding: 3px 10px;
    border-radius: 18px;
    font-family: 'DM Mono';
    font-size: 8px;
    color: var(--teal);
    white-space: nowrap;
}

/* WHO */
.wg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
}

.wc {
    background: var(--cbg);
    border: 1px solid var(--bdr);
    padding: 38px 30px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s, background .3s;
}

.wc:hover {
    border-color: var(--teal-l);
    transform: translateY(-4px);
    background: var(--chov);
}

.wc::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.wc:hover::after {
    transform: scaleX(1);
}

.wi {
    font-size: 30px;
    margin-bottom: 18px;
    display: block;
}

.wc h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--t1);
    margin-bottom: 10px;
}

.wc p {
    font-size: 13px;
    font-weight: 300;
    color: var(--t2);
    line-height: 1.7;
    margin-bottom: 14px;
}

.wl {
    list-style: none;
}

.wl li {
    font-size: 12px;
    font-weight: 300;
    color: var(--t2);
    padding: 4px 0 4px 16px;
    position: relative;
}

.wl li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 10px;
    top: 5px;
}

/* REALTIME */
.rl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-top: 56px;
    align-items: center;
}

.rn {
    background: var(--cbg);
    border-left: 3px solid var(--teal);
    padding: 13px 16px;
    border-radius: 0 7px 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 9px;
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity .5s, transform .5s;
}

.rn.in {
    opacity: 1;
    transform: translateX(0);
}

.rn.re {
    border-color: var(--red);
}

.rn.am {
    border-color: var(--amber);
}

.ric {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
}

.it {
    background: rgba(0, 180, 166, .12);
}

.ir {
    background: rgba(230, 57, 70, .12);
}

.ia {
    background: rgba(245, 158, 11, .12);
}

.rb {
    flex: 1;
}

.rt {
    font-size: 12px;
    font-weight: 500;
    color: var(--t1);
    margin-bottom: 2px;
}

.rm {
    font-size: 11px;
    font-weight: 300;
    color: var(--t2);
    line-height: 1.5;
}

.rtime {
    font-family: 'DM Mono';
    font-size: 9px;
    color: var(--t4);
    flex-shrink: 0;
    padding-top: 1px;
}



/* TESTIMONIALS */
.tg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
}

.tc {
    background: var(--cbg);
    padding: 38px 30px;
    border: 1px solid var(--bdr);
    transition: transform .3s, background .3s;
}

.tc:hover {
    transform: translateY(-4px);
    background: var(--chov);
}

.tq {
    font-family: 'Bebas Neue';
    font-size: 52px;
    color: var(--teal);
    opacity: .22;
    line-height: 1;
    margin-bottom: 7px;
}

.tt2 {
    font-size: 14px;
    font-weight: 300;
    color: var(--t2);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 22px;
}

.tname {
    font-size: 13px;
    font-weight: 500;
    color: var(--t1);
}

.trole {
    font-size: 11px;
    font-weight: 300;
    color: var(--t3);
    margin-top: 3px;
}

/* FINAL CTA */
.fcta {
    padding: 140px 52px;
    text-align: center;
    background: var(--altbg);
    position: relative;
    overflow: hidden;
}

.fcta::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 180, 166, .07) 0%, transparent 62%);
}

.fcta .ey {
    justify-content: center;
}

.fcta .st {
    font-size: clamp(48px, 8.5vw, 110px);
    text-align: center;
}

.fcta .sb {
    margin: 0 auto 40px;
    text-align: center;
}

.fbtns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    background: var(--bg);
    border-top: 1px solid var(--bdr);
    padding: 40px 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.fl a {
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--t4);
}

.flinks {
    display: flex;
    gap: 24px;
    list-style: none;
}

.flinks a {
    font-size: 11px;
    font-weight: 300;
    color: var(--t3);
    transition: color .2s;
    letter-spacing: .5px;
}

.flinks a:hover {
    color: var(--teal);
}

/* RESPONSIVE */
@media(max-width:960px) {
    nav {
        left: 0;
        transform: none;
        width: 100%;
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .sec {
        padding: 68px 20px;
    }

    .hero {
        padding: 108px 20px 60px;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .flayout,
    .rl {
        grid-template-columns: 1fr;
    }

    .pw {
        display: none;
    }

    .wg,
    .hgrid,
    .hstats,
    .tg {
        grid-template-columns: 1fr;
    }

    .fcta {
        padding: 72px 20px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    .flinks {
        justify-content: center;
    }

    .hwm {
        opacity: .03;
        width: 82%;
    }
}

/* HOSPITAL SECTION */
.hosp-section {
    padding: 100px 52px;
    background: var(--bg);
    border-top: 1px solid var(--bdr);
}

.hosp-badge {
    display: inline-block;
    background: rgba(230, 57, 70, .1);
    border: 1px solid rgba(230, 57, 70, .28);
    color: var(--red);
    padding: 5px 16px;
    border-radius: 20px;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hosp-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(30px, 3.5vw, 52px);
    line-height: 1.05;
    color: var(--t1);
    margin-bottom: 16px;
}

.hosp-heading span {
    color: var(--teal);
}

.hosp-subtext {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--t2);
    max-width: 560px;
    margin-bottom: 52px;
}

.hosp-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 52px;
}

.hosp-stat {
    background: var(--cbg);
    border: 1px solid var(--bdr);
    padding: 30px 24px;
    text-align: center;
}

.hosp-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: var(--red);
    line-height: 1;
    display: block;
}

.hosp-stat-lbl {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--t3);
    margin-top: 6px;
    display: block;
}

.hosp-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 72px;
}

.hosp-card {
    background: var(--cbg);
    border: 1px solid var(--bdr);
    padding: 30px 24px;
    transition: border-color .3s, transform .3s;
    position: relative;
}

.hosp-card:hover {
    transform: translateY(-4px);
    border-color: var(--red);
}

.hosp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s;
}

.hosp-card:hover::before {
    transform: scaleX(1);
}

.hosp-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(230, 57, 70, .1);
    border: 1px solid rgba(230, 57, 70, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hosp-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hosp-card h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--t1);
    margin-bottom: 10px;
    line-height: 1.35;
}

.hosp-card p {
    font-size: 13px;
    font-weight: 300;
    color: var(--t2);
    line-height: 1.72;
}

.hosp-ey {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--teal);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hosp-ey::before {
    content: '';
    width: 26px;
    height: 1.5px;
    background: var(--teal);
    flex-shrink: 0;
}

.hosp-steps-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(26px, 2.8vw, 44px);
    line-height: 1.05;
    color: var(--t1);
    margin-bottom: 10px;
}

.hosp-steps-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--t2);
    margin-bottom: 32px;
}

.hosp-steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 52px;
}

.hosp-step {
    background: var(--cbg);
    border: 1px solid var(--bdr);
    padding: 26px 20px;
    transition: border-color .3s, transform .3s;
}

.hosp-step:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
}

.hosp-step-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.hosp-step-num {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--teal);
    letter-spacing: 2px;
    background: rgba(0, 180, 166, .1);
    border: 1px solid rgba(0, 180, 166, .2);
    border-radius: 3px;
    padding: 3px 8px;
    flex-shrink: 0;
}

.hosp-step-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(0, 180, 166, .08);
    border: 1px solid rgba(0, 180, 166, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hosp-step-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hosp-step h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--t1);
    margin-bottom: 8px;
    line-height: 1.35;
}

.hosp-step p {
    font-size: 12px;
    font-weight: 300;
    color: var(--t2);
    line-height: 1.65;
}

.hosp-cta-bar {
    background: var(--red);
    padding: 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hosp-cta-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .03) 1px, transparent 1px, transparent 12px);
}

.hosp-cta-bar h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.5vw, 56px);
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
}

.hosp-cta-bar p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 28px;
    position: relative;
}

.hosp-btn {
    background: #fff;
    color: var(--red);
    border: none;
    padding: 13px 38px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
    transition: opacity .2s, transform .2s;
}

.hosp-btn:hover {
    opacity: .9;
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .hosp-section {
        padding: 68px 20px;
    }

    .hosp-stats-row,
    .hosp-cards-row {
        grid-template-columns: 1fr;
    }

    .hosp-steps-row {
        grid-template-columns: 1fr 1fr;
    }
}