/* =========================================================
   ARPIVA TECHNOLOGIES
   HEALTHCARE INDUSTRY PAGE
========================================================= */

.arpiva-healthcare-page {
    --hc-navy: #06183f;
    --hc-navy-dark: #03122f;
    --hc-blue: #1268d3;
    --hc-blue-light: #62adff;
    --hc-cyan: #18b9e8;
    --hc-orange: #ff9f1c;
    --hc-orange-dark: #ff8200;

    --hc-text: #12213f;
    --hc-muted: #64748b;
    --hc-light: #f5f8fc;
    --hc-border: #e3ebf5;
    --hc-white: #ffffff;

    overflow: hidden;
}

.arpiva-healthcare-page .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
   healthcare-hero.png = BACKGROUND ONLY
========================================================= */

.healthcare-hero {
    position: relative;

    height: 620px;
    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: var(--hc-navy);

    background-image:
        linear-gradient(
            90deg,
            rgba(3,18,47,.98) 0%,
            rgba(4,25,59,.94) 34%,
            rgba(4,29,67,.68) 65%,
            rgba(4,29,67,.24) 100%
        ),
        url("../images/healthcare-hero.png");

    background-position:
        center,
        center center;

    background-size:
        cover,
        cover;

    background-repeat:
        no-repeat,
        no-repeat;
}


/* subtle background movement */

.healthcare-hero {
    animation:
        healthcareHeroBackground 18s ease-in-out infinite alternate;
}

@keyframes healthcareHeroBackground {

    from {
        background-position:
            center,
            center center;
    }

    to {
        background-position:
            center,
            52% center;
    }

}


/* =========================================================
   HERO OVERLAY
========================================================= */

.healthcare-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 75% 36%,
            rgba(18,155,255,.17),
            transparent 35%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(255,159,28,.07),
            transparent 30%
        );
}


.healthcare-hero-glow {
    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    filter: blur(95px);

    pointer-events: none;

    z-index: 1;

    opacity: .14;
}


.healthcare-glow-one {
    right: 8%;
    top: 14%;

    background: #168bff;

    animation:
        healthcareGlowMove 8s ease-in-out infinite alternate;
}


.healthcare-glow-two {
    left: 5%;
    bottom: -30px;

    background: var(--hc-orange);

    opacity: .06;

    animation:
        healthcareGlowMove 11s ease-in-out infinite alternate-reverse;
}


@keyframes healthcareGlowMove {

    from {
        transform:
            translate3d(0,0,0);
    }

    to {
        transform:
            translate3d(25px,-18px,0);
    }

}


/* =========================================================
   HERO CONTENT
========================================================= */

.healthcare-hero .container {
    position: relative;

    z-index: 5;
}


.healthcare-hero-content {
    max-width: 710px;

    padding-top: 12px;
}


.healthcare-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px;

    border:
        1px solid rgba(255,255,255,.17);

    border-radius: 999px;

    background:
        rgba(255,255,255,.06);

    color: #d7e7ff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.7px;

    backdrop-filter: blur(8px);
}


.healthcare-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #45db84;

    box-shadow:
        0 0 0 5px rgba(69,219,132,.10),
        0 0 14px rgba(69,219,132,.45);

    animation:
        healthcarePulse 2s ease-in-out infinite;
}


@keyframes healthcarePulse {

    0%,
    100% {
        opacity: .65;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

}


.healthcare-kicker {
    display: block;

    margin-top: 22px;
    margin-bottom: 12px;

    color: var(--hc-orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}


.healthcare-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(45px, 4.5vw, 68px);

    line-height: .99;

    font-weight: 800;

    letter-spacing: -2.7px;
}


.healthcare-hero h1 span {
    display: block;

    margin-top: 7px;

    color: #68adff;
}


.healthcare-hero-content > p {
    max-width: 650px;

    margin: 21px 0 0;

    color: #c6d7ed;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.healthcare-hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 27px;
}


.healthcare-primary-button,
.healthcare-secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    min-height: 51px;

    padding: 0 23px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.healthcare-primary-button {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ffa51f,
            #ff8000
        );

    box-shadow:
        0 14px 30px rgba(255,128,0,.20);
}


.healthcare-primary-button:hover {
    color: #ffffff;

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 38px rgba(255,128,0,.32);
}


.healthcare-secondary-button {
    color: #ffffff;

    border:
        1px solid rgba(255,255,255,.22);

    background:
        rgba(255,255,255,.055);

    backdrop-filter: blur(12px);
}


.healthcare-secondary-button:hover {
    color: #ffffff;

    transform:
        translateY(-3px);

    background:
        rgba(255,255,255,.11);

    border-color:
        rgba(255,255,255,.40);
}


.healthcare-primary-button span,
.healthcare-secondary-button span {
    font-size: 17px;

    transition:
        transform .25s ease;
}


.healthcare-primary-button:hover span,
.healthcare-secondary-button:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   HERO TRUST
========================================================= */

.healthcare-hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 19px;

    margin-top: 18px;
}


.healthcare-hero-trust span {
    position: relative;

    padding-left: 15px;

    color: #9db4d3;

    font-size: 9px;

    font-weight: 600;
}


.healthcare-hero-trust span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 5px;
    height: 5px;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        var(--hc-orange);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.healthcare-scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 22px;

    transform:
        translateX(-50%);

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,.42);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 1.7px;
}


.healthcare-scroll-indicator i {
    display: block;

    width: 1px;
    height: 26px;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.5),
            transparent
        );

    animation:
        healthcareScroll 1.8s ease-in-out infinite;
}


@keyframes healthcareScroll {

    0%,
    100% {
        opacity: .4;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(7px);
    }

}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.healthcare-intro,
.healthcare-solutions,
.healthcare-operations,
.healthcare-experience,
.healthcare-intelligence,
.healthcare-automation,
.healthcare-security {
    padding: 110px 0;
}


.healthcare-section-heading {
    max-width: 800px;

    margin:
        0 auto 62px;

    text-align: center;
}


.healthcare-section-heading.light {
    color: #ffffff;
}


.healthcare-section-badge {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--hc-blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.healthcare-section-heading.light .healthcare-section-badge {
    color: var(--hc-orange);
}


.healthcare-section-heading h2 {
    margin: 0;

    color: var(--hc-navy);

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.7px;
}


.healthcare-section-heading.light h2 {
    color: #ffffff;
}


.healthcare-section-heading h2 span {
    color: var(--hc-blue);
}


.healthcare-section-heading.light h2 span {
    color: #69b0ff;
}


.healthcare-section-heading p {
    max-width: 710px;

    margin:
        20px auto 0;

    color: var(--hc-muted);

    font-size: 14px;

    line-height: 1.8;
}


.healthcare-section-heading.light p {
    color: #aebfd9;
}


.healthcare-small-label {
    color: var(--hc-orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


/* =========================================================
   INTRO
========================================================= */

.healthcare-intro {
    background: #ffffff;
}


.healthcare-intro-grid {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(0,1fr);

    gap: 70px;

    align-items: center;
}


.healthcare-intro-content {
    max-width: 580px;
}


.healthcare-intro-content h3 {
    margin:
        14px 0 18px;

    color: var(--hc-navy);

    font-size: clamp(30px,3.2vw,44px);

    line-height: 1.12;

    letter-spacing: -1.4px;
}


.healthcare-intro-content h3 strong {
    display: block;

    color: var(--hc-blue);
}


.healthcare-intro-content > p {
    color: var(--hc-muted);

    font-size: 14px;

    line-height: 1.8;
}


.healthcare-intro-points {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 12px;

    margin-top: 28px;
}


.healthcare-intro-points > div {
    padding: 17px;

    border:
        1px solid var(--hc-border);

    border-radius: 13px;

    background: #fbfcfe;

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.healthcare-intro-points > div:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 16px 35px rgba(6,24,63,.08);
}


.healthcare-intro-points span {
    display: block;

    margin-bottom: 8px;

    color: var(--hc-orange);

    font-size: 9px;

    font-weight: 800;
}


.healthcare-intro-points strong {
    color: var(--hc-navy);

    font-size: 12px;
}


.healthcare-intro-points p {
    margin:
        6px 0 0;

    color: var(--hc-muted);

    font-size: 9px;

    line-height: 1.55;
}


/* =========================================================
   HEALTHCARE ORBIT
========================================================= */

.healthcare-intro-visual {
    min-height: 490px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 28px;

    background:
        radial-gradient(
            circle at center,
            #edf8ff 0%,
            #f8fbff 48%,
            #ffffff 76%
        );
}


.healthcare-orbit {
    position: relative;

    width: 390px;
    height: 390px;
}


.healthcare-orbit-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform:
        translate(-50%,-50%);

    animation:
        healthcareOrbitSpin 18s linear infinite;
}


.healthcare-ring-one {
    width: 180px;
    height: 180px;

    border:
        1px solid rgba(18,104,211,.20);
}


.healthcare-ring-two {
    width: 275px;
    height: 275px;

    border:
        1px solid rgba(24,185,232,.20);

    animation-duration: 24s;

    animation-direction: reverse;
}


.healthcare-ring-three {
    width: 370px;
    height: 370px;

    border:
        1px dashed rgba(18,104,211,.14);

    animation-duration: 30s;
}


@keyframes healthcareOrbitSpin {

    from {
        transform:
            translate(-50%,-50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }

}


.healthcare-orbit-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 140px;
    height: 140px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #1268d3,
            #06183f
        );

    box-shadow:
        0 20px 55px rgba(18,104,211,.27);
}


.healthcare-orbit-core span {
    color: #8fc5ff;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;
}


.healthcare-orbit-core strong {
    margin-top: 4px;

    font-size: 22px;

    letter-spacing: 1px;
}


.healthcare-orbit-core small {
    margin-top: 4px;

    color: #a8bfdd;

    font-size: 6px;

    letter-spacing: 1px;
}


.healthcare-orbit-node {
    position: absolute;

    width: 59px;
    height: 59px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 5px;

    border:
        1px solid #dbe8f7;

    border-radius: 50%;

    color: var(--hc-navy);

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(6,24,63,.09);

    font-size: 7px;

    font-weight: 800;

    text-align: center;
}


.healthcare-node-one {
    top: 38px;
    left: 40px;
}


.healthcare-node-two {
    top: 32px;
    right: 28px;
}


.healthcare-node-three {
    right: 10px;
    bottom: 55px;
}


.healthcare-node-four {
    left: 24px;
    bottom: 38px;
}


/* =========================================================
   CHALLENGES
========================================================= */

.healthcare-challenges {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f 55%,
            #09275a
        );
}


.healthcare-challenge-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 16px;
}


.healthcare-challenge-card {
    min-height: 305px;

    padding: 26px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 17px;

    background:
        rgba(255,255,255,.045);

    backdrop-filter: blur(12px);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}


.healthcare-challenge-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(82,164,255,.38);

    background:
        rgba(255,255,255,.075);
}


.healthcare-card-number {
    color: rgba(255,255,255,.23);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.healthcare-card-icon {
    margin-top: 35px;

    color: var(--hc-orange);

    font-size: 25px;

    font-weight: 800;
}


.healthcare-challenge-card h3 {
    margin:
        24px 0 12px;

    color: #ffffff;

    font-size: 19px;
}


.healthcare-challenge-card p {
    margin: 0;

    color: #9db1d0;

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   SOLUTIONS
========================================================= */

.healthcare-solutions {
    background: #f7f9fc;
}


.healthcare-solutions-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 16px;
}


.healthcare-solution-card {
    min-height: 255px;

    padding: 25px;

    border:
        1px solid var(--hc-border);

    border-radius: 17px;

    background: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.healthcare-solution-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(18,104,211,.22);

    box-shadow:
        0 20px 50px rgba(6,24,63,.09);
}


.healthcare-solution-top {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.healthcare-solution-top > span {
    color: #a4b5cb;

    font-size: 9px;

    font-weight: 800;
}


.healthcare-solution-top i {
    min-width: 44px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 8px;

    border-radius: 10px;

    color: var(--hc-blue);

    background: #edf5ff;

    font-size: 7px;

    font-style: normal;

    font-weight: 800;
}


.healthcare-solution-card h3 {
    margin:
        27px 0 12px;

    color: var(--hc-navy);

    font-size: 17px;

    line-height: 1.3;
}


.healthcare-solution-card p {
    margin: 0;

    color: var(--hc-muted);

    font-size: 10px;

    line-height: 1.75;
}


/* =========================================================
   CONNECTED OPERATIONS
========================================================= */

.healthcare-operations {
    background: #ffffff;
}


.healthcare-operations-grid {
    display: grid;

    grid-template-columns:
        minmax(0,1.08fr)
        minmax(0,.92fr);

    gap: 75px;

    align-items: center;
}


.healthcare-operations-image {
    position: relative;

    overflow: hidden;

    border-radius: 21px;

    background: #ffffff;

    box-shadow:
        0 25px 65px rgba(6,24,63,.12);
}


.healthcare-operations-image::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid rgba(18,104,211,.14);

    border-radius: inherit;

    pointer-events: none;
}


.healthcare-operations-image img {
    display: block;

    width: 100%;
    height: auto;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}


.healthcare-operations-image:hover img {
    transform:
        scale(1.035);
}


.healthcare-operations-content h2 {
    margin:
        15px 0 18px;

    color: var(--hc-navy);

    font-size: clamp(34px,4vw,52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.healthcare-operations-content h2 span {
    display: block;

    color: var(--hc-blue);
}


.healthcare-operations-content > p {
    color: var(--hc-muted);

    font-size: 14px;

    line-height: 1.8;
}


.healthcare-operations-list {
    margin-top: 27px;
}


.healthcare-operations-list div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 11px 0;

    border-bottom:
        1px solid #edf1f6;
}


.healthcare-operations-list span {
    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: var(--hc-blue);

    font-size: 9px;
}


.healthcare-operations-list strong {
    color: var(--hc-navy);

    font-size: 11px;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.healthcare-experience {
    background:
        linear-gradient(
            135deg,
            #f3f7fd,
            #ffffff
        );
}


.healthcare-experience-grid {
    display: grid;

    grid-template-columns:
        minmax(0,1.05fr)
        minmax(0,.95fr);

    gap: 80px;

    align-items: center;
}


.healthcare-experience-content h2 {
    margin:
        15px 0 20px;

    color: var(--hc-navy);

    font-size: clamp(34px,4vw,52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.healthcare-experience-content h2 span {
    display: block;

    color: var(--hc-blue);
}


.healthcare-experience-content > p {
    max-width: 620px;

    color: var(--hc-muted);

    font-size: 14px;

    line-height: 1.8;
}


.healthcare-experience-points {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 11px;

    margin-top: 28px;
}


.healthcare-experience-points div {
    padding: 16px;

    border:
        1px solid var(--hc-border);

    border-radius: 12px;

    background: #ffffff;
}


.healthcare-experience-points strong {
    display: block;

    color: var(--hc-navy);

    font-size: 11px;
}


.healthcare-experience-points span {
    display: block;

    margin-top: 6px;

    color: var(--hc-muted);

    font-size: 9px;

    line-height: 1.5;
}


.healthcare-experience-stat {
    display: flex;

    align-items: center;

    justify-content: center;
}


.healthcare-stat-card {
    position: relative;

    width: 370px;
    height: 370px;

    max-width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 50%;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 40% 30%,
            #1684e5,
            #06183f 68%
        );

    box-shadow:
        0 25px 70px rgba(6,24,63,.20);
}


.healthcare-stat-card::before,
.healthcare-stat-card::after {
    content: "";

    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(18,104,211,.25);
}


.healthcare-stat-card::before {
    width: 420px;
    height: 420px;
}


.healthcare-stat-card::after {
    width: 470px;
    height: 470px;

    border-color:
        rgba(255,159,28,.13);

    border-style: dashed;
}


.healthcare-stat-card span {
    position: relative;

    z-index: 2;

    color: #82c0ff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.healthcare-stat-card strong {
    position: relative;

    z-index: 2;

    margin-top: 17px;

    font-size: 28px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.healthcare-stat-card small {
    position: relative;

    z-index: 2;

    margin-top: 17px;

    color: #a8c1df;

    font-size: 9px;
}


/* =========================================================
   HEALTHCARE INTELLIGENCE
========================================================= */

.healthcare-intelligence {
    background: #f7f9fc;
}


.healthcare-intelligence-grid {
    display: grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(0,1.1fr);

    gap: 70px;

    align-items: center;
}


.healthcare-intelligence-content h2 {
    margin:
        15px 0 18px;

    color: var(--hc-navy);

    font-size: clamp(34px,4vw,52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.healthcare-intelligence-content h2 span {
    display: block;

    color: var(--hc-blue);
}


.healthcare-intelligence-content > p {
    color: var(--hc-muted);

    font-size: 14px;

    line-height: 1.8;
}


.healthcare-intelligence-points {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 10px;

    margin-top: 27px;
}


.healthcare-intelligence-points div {
    padding: 15px;

    border:
        1px solid var(--hc-border);

    border-radius: 11px;

    background: #ffffff;
}


.healthcare-intelligence-points strong {
    display: block;

    color: var(--hc-navy);

    font-size: 11px;
}


.healthcare-intelligence-points span {
    display: block;

    margin-top: 6px;

    color: var(--hc-muted);

    font-size: 9px;

    line-height: 1.5;
}


.healthcare-dashboard-frame {
    position: relative;

    overflow: hidden;

    border-radius: 20px;

    background: #03122f;

    box-shadow:
        0 25px 65px rgba(6,24,63,.16);
}


.healthcare-dashboard-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid rgba(24,185,232,.18);

    border-radius: inherit;

    pointer-events: none;
}


.healthcare-dashboard-frame img {
    display: block;

    width: 100%;

    height: auto;

    transition:
        transform .7s cubic-bezier(.2,.7,.2,1);
}


.healthcare-dashboard-frame:hover img {
    transform:
        scale(1.025);
}


/* =========================================================
   AUTOMATION
========================================================= */

.healthcare-automation {
    background: #ffffff;
}


.healthcare-automation-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 16px;
}


.healthcare-automation-card {
    min-height: 250px;

    padding: 25px;

    border:
        1px solid var(--hc-border);

    border-radius: 16px;

    background: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.healthcare-automation-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(18,104,211,.22);

    box-shadow:
        0 18px 45px rgba(6,24,63,.08);
}


.healthcare-automation-card > span {
    color: var(--hc-orange);

    font-size: 9px;

    font-weight: 800;
}


.healthcare-automation-card h3 {
    margin:
        27px 0 12px;

    color: var(--hc-navy);

    font-size: 18px;

    line-height: 1.35;
}


.healthcare-automation-card p {
    margin: 0;

    color: var(--hc-muted);

    font-size: 11px;

    line-height: 1.75;
}


/* =========================================================
   SECURITY
========================================================= */

.healthcare-security {
    background:
        linear-gradient(
            135deg,
            #f1f6fd,
            #ffffff
        );
}


.healthcare-security-grid {
    display: grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(0,1.1fr);

    gap: 70px;

    align-items: center;
}


.healthcare-security-grid h2 {
    margin:
        15px 0 18px;

    color: var(--hc-navy);

    font-size: clamp(34px,4vw,52px);

    line-height: 1.08;

    letter-spacing: -1.7px;
}


.healthcare-security-grid h2 span {
    color: var(--hc-blue);
}


.healthcare-security-grid > div > p {
    max-width: 550px;

    color: var(--hc-muted);

    font-size: 14px;

    line-height: 1.8;
}


.healthcare-security-points {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 10px;
}


.healthcare-security-points div {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 15px;

    border:
        1px solid var(--hc-border);

    border-radius: 11px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.healthcare-security-points div:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 12px 25px rgba(6,24,63,.07);
}


.healthcare-security-points span {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    color: #ffffff;

    background:
        var(--hc-blue);

    font-size: 7px;

    font-weight: 800;
}


.healthcare-security-points strong {
    color: var(--hc-navy);

    font-size: 10px;
}


/* =========================================================
   WHY ARPIVA
========================================================= */

.healthcare-why {
    padding: 110px 0;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f 60%,
            #09285d
        );
}


.healthcare-why-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 16px;
}


.healthcare-why-card {
    min-height: 205px;

    padding: 25px;

    border:
        1px solid rgba(255,255,255,.08);

    border-radius: 15px;

    background:
        rgba(255,255,255,.045);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease;
}


.healthcare-why-card:hover {
    transform:
        translateY(-7px);

    background:
        rgba(255,255,255,.075);

    border-color:
        rgba(62,155,255,.35);
}


.healthcare-why-card > span {
    color:
        var(--hc-orange);

    font-size: 9px;

    font-weight: 800;
}


.healthcare-why-card h3 {
    margin:
        24px 0 10px;

    color: #ffffff;

    font-size: 18px;
}


.healthcare-why-card p {
    margin: 0;

    color: #9db1d0;

    font-size: 10px;

    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.healthcare-final-cta {
    position: relative;

    padding: 115px 0;

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #03122f,
            #06183f
        );
}


.healthcare-final-glow {
    position: absolute;

    width: 520px;
    height: 520px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(18,104,211,.23),
            transparent 65%
        );

    pointer-events: none;
}


.healthcare-final-content {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: auto;
}


.healthcare-final-content h2 {
    margin:
        15px 0 18px;

    color: #ffffff;

    font-size: clamp(38px,5vw,58px);

    line-height: 1.05;

    letter-spacing: -2px;
}


.healthcare-final-content h2 span {
    display: block;

    color: #6db0ff;
}


.healthcare-final-content > p {
    max-width: 650px;

    margin:
        0 auto 30px;

    color: #a9bdd9;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   REVEAL SUPPORT
========================================================= */

.healthcare-reveal {
    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .75s ease,
        transform .75s cubic-bezier(.2,.7,.2,1);
}


.healthcare-reveal.healthcare-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .healthcare-solutions-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .healthcare-challenge-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .healthcare-automation-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .arpiva-healthcare-page .container {
        width:
            min(92%,600px);
    }


    .healthcare-hero {

        height: 680px;
        min-height: 680px;

        align-items: flex-start;

        padding:
            80px 0 55px;

        background-position:
            center,
            63% center;
    }


    .healthcare-hero-content {
        padding-top: 5px;
    }


    .healthcare-hero h1 {
        font-size: 44px;

        letter-spacing: -2px;
    }


    .healthcare-hero-content > p {
        font-size: 13px;

        line-height: 1.65;
    }


    .healthcare-hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .healthcare-primary-button,
    .healthcare-secondary-button {
        width: 100%;
    }


    .healthcare-hero-trust {
        gap: 12px;
    }


    .healthcare-scroll-indicator {
        display: none;
    }


    .healthcare-intro,
    .healthcare-solutions,
    .healthcare-operations,
    .healthcare-experience,
    .healthcare-intelligence,
    .healthcare-automation,
    .healthcare-security,
    .healthcare-why {
        padding:
            80px 0;
    }


    .healthcare-section-heading {
        margin-bottom: 45px;
    }


    .healthcare-section-heading h2 {
        font-size: 34px;

        letter-spacing: -1px;
    }


    .healthcare-intro-grid,
    .healthcare-operations-grid,
    .healthcare-experience-grid,
    .healthcare-intelligence-grid,
    .healthcare-security-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .healthcare-intro-visual {
        min-height: 390px;
    }


    .healthcare-orbit {
        transform:
            scale(.78);
    }


    .healthcare-intro-points {
        grid-template-columns: 1fr;
    }


    .healthcare-challenge-grid,
    .healthcare-solutions-grid,
    .healthcare-automation-grid,
    .healthcare-why-grid {
        grid-template-columns: 1fr;
    }


    .healthcare-challenge-card {
        min-height: 250px;
    }


    .healthcare-experience-points,
    .healthcare-intelligence-points,
    .healthcare-security-points {
        grid-template-columns: 1fr;
    }


    .healthcare-stat-card {
        width: 300px;
        height: 300px;
    }


    .healthcare-stat-card::before {
        width: 340px;
        height: 340px;
    }


    .healthcare-stat-card::after {
        width: 385px;
        height: 385px;
    }


    .healthcare-final-cta {
        padding:
            90px 0;
    }


    .healthcare-final-content h2 {
        font-size: 38px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .healthcare-hero,
    .healthcare-hero-glow,
    .healthcare-orbit-ring,
    .healthcare-eyebrow::before,
    .healthcare-scroll-indicator i {
        animation: none !important;
    }

    .healthcare-reveal {
        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }

}