.navy-text {
    color: #001f3f;
}

.navy-dark-text {
    color: #0a2540;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown > .dropdown-toggle:active {
    pointer-events: none;
}

.hero-logo {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
}

.chirocenter-hero-heading {
    margin-bottom: 1rem;
}

.chirocenter-hero-logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.catchphrase-hero-heading {
    margin-bottom: 1rem;
}

.catchphrase-hero-logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.emr-datacenter-hero-heading {
    margin-bottom: 1rem;
}

.emr-datacenter-hero-logo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.myemr-hero-heading {
    margin-bottom: 1rem;
}

.myemr-hero-logo {
    display: block;
    width: 75%;
    max-width: 75%;
    height: auto;
    filter: drop-shadow(0.35rem 0.35rem 0.25rem rgba(0, 0, 255, 0.22));
}

.myemr-tools-section {
    background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 100%);
    position: relative;
}

.myemr-tools-card {
    background: #fff;
    border: 1px solid rgba(12, 137, 209, 0.16);
    border-radius: 1.25rem;
    box-shadow: 0 1.25rem 3.5rem rgba(10, 37, 64, 0.14);
    margin-top: -6.5rem;
    max-width: 1060px;
    padding: clamp(1.5rem, 4vw, 3.25rem);
    position: relative;
    z-index: 3;
}

.myemr-section-kicker {
    color: #087ac1;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.myemr-reading-width {
    max-width: 980px;
}

.myemr-intro-section .lead {
    color: #0a2540;
    font-size: 1.15rem;
    line-height: 1.75;
}

.myemr-intro-section p:not(.lead) {
    line-height: 1.8;
}

.myemr-benefit-card {
    background: #fff;
    border: 1px solid rgba(10, 37, 64, 0.12);
    border-radius: 1rem;
    box-shadow: 0 0.75rem 2rem rgba(10, 37, 64, 0.08);
    overflow: hidden;
    padding: 1.75rem;
    position: relative;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.myemr-benefit-card::before {
    background: linear-gradient(90deg, #0c89d1, #2f2e8c);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.myemr-benefit-card:hover {
    box-shadow: 0 1rem 2.5rem rgba(10, 37, 64, 0.13);
    transform: translateY(-3px);
}

.myemr-benefit-index {
    color: rgba(12, 137, 209, 0.72);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1.15rem;
}

.myemr-objective-section {
    background: linear-gradient(145deg, #edf6fc 0%, #f8fbfe 52%, #eef1fb 100%);
}

.myemr-exam-grid {
    margin-top: 2.5rem;
}

.myemr-exam-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(12, 137, 209, 0.15);
    border-radius: 1rem;
    box-shadow: 0 0.9rem 2.5rem rgba(10, 37, 64, 0.09);
    padding: 2rem;
    position: relative;
}

.myemr-exam-number {
    align-items: center;
    background: linear-gradient(135deg, #0c89d1, #2f2e8c);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 800;
    height: 2.5rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    width: 2.5rem;
}

.myemr-exam-card h3 {
    color: #0a2540;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.myemr-exam-theme {
    color: #087ac1;
    font-weight: 700;
    margin-bottom: 1rem;
}

.myemr-objective-note {
    background: rgba(255, 255, 255, 0.72);
    border-left: 4px solid #0c89d1;
    border-radius: 0 0.75rem 0.75rem 0;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
}

/* Five core MyEMR documentation tools */
.myemr-feature-list {
    counter-reset: myemr-feature;
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.myemr-feature-list li {
    counter-increment: myemr-feature;
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    column-gap: 1rem;
    align-items: start;
    position: relative;
    padding: 0 0 1.5rem;
}

.myemr-feature-list li::before {
    content: counter(myemr-feature);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #0c89d1, #2f2e8c);
    box-shadow: 0 0.3rem 0.75rem rgba(12, 137, 209, 0.22);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    z-index: 1;
}

.myemr-feature-list li::after {
    content: "";
    position: absolute;
    top: 2.75rem;
    bottom: 0;
    left: 1.35rem;
    width: 2px;
    background: linear-gradient(#9fd5f2, #dcecf7);
}

.myemr-feature-list li:last-child {
    padding-bottom: 0;
}

.myemr-feature-list li:last-child::after {
    display: none;
}

.myemr-feature-copy {
    grid-column: 2;
    min-width: 0;
    padding-top: 0.35rem;
    line-height: 1.65;
}

.myemr-feature-list strong {
    color: #0a2540;
    font-size: 1.05em;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .myemr-tools-card {
        margin-top: -4rem;
    }

    .myemr-feature-list li {
        column-gap: 0.75rem;
        grid-template-columns: 2.5rem minmax(0, 1fr);
    }

    .myemr-feature-list li::before {
        height: 2.5rem;
        width: 2.5rem;
    }

    .myemr-feature-list li::after {
        left: 1.22rem;
        top: 2.5rem;
    }
}

.cloud-software-hero {
    overflow: hidden;
}

.cloud-saas-hero-logo {
    position: absolute;
    top: 6rem;
    right: 4%;
    width: 20%;
    max-width: 260px;
    min-width: 150px;
    height: auto;
    z-index: 2;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@media (max-width: 991.98px) {
    .cloud-saas-hero-logo {
        width: 28%;
        right: 3%;
        top: 5.5rem;
        opacity: 0.95;
    }
}

@media (max-width: 575.98px) {
    .cloud-saas-hero-logo {
        display: none;
    }
}

.cloud-includes-section {
    background: #ffffff;
}

.cloud-includes-card {
    padding: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(145deg, #000066 0%, #0b55b7 62%, #167dcc 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.5rem;
    box-shadow: 0 1.5rem 3.75rem rgba(0, 0, 102, 0.18);
}

.cloud-includes-card h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.85rem);
    font-weight: 750;
    letter-spacing: -0.035em;
}

.cloud-includes-card .styled-list {
    margin-bottom: 0;
}

.cloud-includes-card .styled-list li {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.cloud-includes-card .styled-list li:last-child {
    border-bottom: 0;
}

.cloud-product-logos {
    position: sticky;
    top: 7.5rem;
    padding: 2rem;
    background: #eef4f9;
    border: 1px solid #dbe6f0;
    border-radius: 1.5rem;
}

.cloud-product-logos__eyebrow {
    margin-bottom: 0.75rem;
    color: #0b55b7;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cloud-product-logos h2 {
    margin-bottom: 1.5rem;
    color: #000044;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.cloud-product-logos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.cloud-product-logos__grid a {
    min-height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem 0.75rem;
    color: #5e6b7c;
    background: #ffffff;
    border: 1px solid #dbe6f0;
    border-radius: 1rem;
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 68, 0.06);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cloud-product-logos__grid a:hover {
    border-color: #69b8f1;
    box-shadow: 0 1rem 2rem rgba(0, 0, 102, 0.1);
    transform: translateY(-2px);
}

.cloud-product-logos__grid img {
    max-width: 175px;
    max-height: 104px;
    margin-bottom: 0.85rem;
}

.cloud-product-logos__grid span {
    display: block;
}

@media (max-width: 991.98px) {
    .cloud-product-logos {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .cloud-includes-card,
    .cloud-product-logos {
        padding: 1.5rem;
        border-radius: 1.15rem;
    }

    .cloud-product-logos__grid {
        grid-template-columns: 1fr;
    }

    .cloud-product-logos__grid a {
        min-height: 140px;
    }
}

/* Appointment Cafe product landing page */
.appointment-cafe-hero {
    min-height: 760px;
    overflow: hidden;
    color: #12304a;
    background:
        linear-gradient(100deg, rgba(244, 254, 255, 0.97) 0%, rgba(230, 251, 252, 0.94) 50%, rgba(222, 247, 249, 0.82) 100%),
        url("media/static/appointment-cafe-banner-bg.jpg") center / cover;
}

.appointment-cafe-company-mark {
    position: absolute;
    z-index: 5;
    top: 8rem;
    right: clamp(2rem, 6vw, 7rem);
    width: 175px;
}

.appointment-cafe-company-mark img {
    display: block;
    width: 100%;
    height: auto;
}

.appointment-cafe-hero__grid {
    min-height: 760px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.appointment-cafe-hero__copy {
    position: relative;
    z-index: 3;
    max-width: 680px;
}

.appointment-cafe-eyebrow {
    margin-bottom: 1rem;
    color: #087c89;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.appointment-cafe-eyebrow--light {
    color: #83f1ef;
}

.appointment-cafe-hero__logo {
    width: min(300px, 72%);
    max-height: 135px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 1.3rem;
}

.appointment-cafe-hero h1 {
    max-width: 700px;
    margin-bottom: 1.35rem;
    color: #09223a;
    font-size: clamp(1.75rem, 2.8vw, 3rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.appointment-cafe-hero h1 span {
    display: block;
    color: #1199a4;
}

.appointment-cafe-hero .lead {
    max-width: 640px;
    color: #456277;
    font-size: clamp(1.08rem, 1.6vw, 1.35rem);
    line-height: 1.6;
}

.appointment-cafe-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 0.4rem;
    color: #075f6a;
    font-weight: 750;
    text-decoration: none;
}

.appointment-cafe-text-link:hover {
    color: #09223a;
}

.appointment-cafe-hero__visual {
    position: relative;
    min-height: 560px;
}

.appointment-cafe-phone-halo {
    position: absolute;
    width: 460px;
    height: 460px;
    top: 60px;
    left: 50%;
    background: radial-gradient(circle at 42% 38%, #ffffff 0 28%, #a8eef0 29% 54%, rgba(17, 153, 164, 0.08) 55% 68%, transparent 69%);
    border-radius: 50%;
    transform: translateX(-50%);
}

.appointment-cafe-phone {
    position: absolute;
    z-index: 2;
    width: 285px;
    max-height: 520px;
    top: 20px;
    left: 50%;
    filter: drop-shadow(0 2rem 2.5rem rgba(8, 77, 88, 0.24));
    transform: translateX(-50%) rotate(3deg);
}

.appointment-cafe-message {
    position: absolute;
    z-index: 3;
    min-width: 210px;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 153, 164, 0.18);
    border-radius: 1rem;
    box-shadow: 0 1.2rem 2.5rem rgba(8, 77, 88, 0.14);
}

.appointment-cafe-message strong,
.appointment-cafe-message span {
    display: block;
}

.appointment-cafe-message strong {
    color: #09223a;
}

.appointment-cafe-message span {
    margin-top: 0.25rem;
    color: #618093;
    font-size: 0.82rem;
}

.appointment-cafe-message--one {
    top: 135px;
    right: -25px;
}

.appointment-cafe-message--two {
    bottom: 75px;
    left: -25px;
}

.appointment-cafe-message--two::before {
    display: inline-grid;
    width: 1.5rem;
    height: 1.5rem;
    place-items: center;
    float: left;
    margin: 0.2rem 0.65rem 0 0;
    color: #fff;
    background: #17a57a;
    border-radius: 50%;
    content: "✓";
    font-size: 0.8rem;
}

.appointment-cafe-proof {
    position: relative;
    z-index: 4;
    margin-top: -34px;
}

.appointment-cafe-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    padding: 1.8rem 1rem;
    background: #fff;
    border: 1px solid #d5eaeb;
    border-radius: 1.25rem;
    box-shadow: 0 1.25rem 3.5rem rgba(8, 77, 88, 0.1);
}

.appointment-cafe-proof__grid > div {
    padding: 0.25rem 1.75rem;
    border-right: 1px solid #d5eaeb;
}

.appointment-cafe-proof__grid > div:last-child {
    border-right: 0;
}

.appointment-cafe-proof strong,
.appointment-cafe-proof span {
    display: block;
}

.appointment-cafe-proof strong {
    color: #087c89;
    font-size: 1.25rem;
}

.appointment-cafe-proof span {
    color: #668092;
    font-size: 0.84rem;
}

.appointment-cafe-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 8vw, 7rem);
}

.appointment-cafe-intro {
    color: #567082;
    background: #fff;
}

.appointment-cafe-intro h2,
.appointment-cafe-section-heading h2,
.appointment-cafe-integrations h2,
.appointment-cafe-cta h2 {
    color: #09223a;
    font-size: clamp(1.75rem, 2.8vw, 3rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.appointment-cafe-intro .lead,
.appointment-cafe-integrations .lead {
    color: #27495e;
}

.appointment-cafe-features {
    background: #f1fafa;
}

.appointment-cafe-section-heading {
    max-width: 780px;
    margin-bottom: 3.4rem;
}

.appointment-cafe-section-heading > p:last-child {
    max-width: 650px;
    color: #668092;
    font-size: 1.08rem;
}

.appointment-cafe-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}

.appointment-cafe-feature-grid article {
    min-height: 310px;
    padding: 2.25rem;
    background: #fff;
    border: 1px solid #d6ebec;
    border-radius: 1.4rem;
    box-shadow: 0 1rem 2.5rem rgba(8, 77, 88, 0.06);
}

.appointment-cafe-feature-grid article > span {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 4rem;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #087c89, #20bbc0);
    border-radius: 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
}

.appointment-cafe-feature-grid h3 {
    color: #09223a;
    font-weight: 750;
}

.appointment-cafe-feature-grid p {
    margin-bottom: 0;
    color: #668092;
}

.appointment-cafe-workflow {
    background: linear-gradient(135deg, #052f46, #075f6a 58%, #0c8f98);
}

.appointment-cafe-workflow h2,
.appointment-cafe-workflow h3 {
    color: #fff;
}

.appointment-cafe-workflow .appointment-cafe-section-heading > p:last-child {
    color: #83f1ef;
}

.appointment-cafe-workflow__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.appointment-cafe-workflow__grid article {
    min-height: 250px;
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1.25rem;
}

.appointment-cafe-workflow__grid article > span {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    color: #063b4d;
    background: #83f1ef;
    border-radius: 0.85rem;
    font-weight: 850;
}

.appointment-cafe-workflow__grid h3 {
    font-size: 1.2rem;
}

.appointment-cafe-workflow__grid p {
    color: #c6e4e6;
}

.appointment-cafe-integrations {
    background: #fff;
}

.appointment-cafe-integration-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    padding: 1.25rem;
    background: #f1fafa;
    border: 1px solid #d5eaeb;
    border-radius: 1.6rem;
}

.appointment-cafe-integration-center {
    grid-column: 1 / -1;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    text-align: center;
}

.appointment-cafe-integration-center img {
    width: 170px;
    max-height: 90px;
}

.appointment-cafe-integration-map > a {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
    color: #567082;
    background: #fff;
    border: 1px solid #dceced;
    border-radius: 1rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}

.appointment-cafe-integration-map > a:hover {
    border-color: #20bbc0;
    transform: translateY(-2px);
}

.appointment-cafe-integration-map > a img {
    max-width: 125px;
    max-height: 52px;
    margin-bottom: 1rem;
}

.appointment-cafe-cta {
    background: linear-gradient(120deg, #73117e, #a70cac 55%, #cf1dc0);
}

.appointment-cafe-cta__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 4rem;
}

.appointment-cafe-cta h2 {
    max-width: 760px;
    color: #fff;
}

.appointment-cafe-cta p:not(.appointment-cafe-eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.appointment-cafe-phone-link {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 750;
    text-decoration: none;
}

.appointment-cafe-phone-link:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .appointment-cafe-hero__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .appointment-cafe-hero__copy {
        max-width: 760px;
    }

    .appointment-cafe-hero__visual {
        width: min(600px, 100%);
        margin: 0 auto;
    }

    .appointment-cafe-feature-grid,
    .appointment-cafe-workflow__grid {
        grid-template-columns: 1fr;
    }

    .appointment-cafe-feature-grid article,
    .appointment-cafe-workflow__grid article {
        min-height: auto;
    }

    .appointment-cafe-feature-grid article > span {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .appointment-cafe-hero__grid {
        padding-top: 8.5rem;
    }

    .appointment-cafe-proof__grid {
        grid-template-columns: 1fr 1fr;
    }

    .appointment-cafe-proof__grid > div {
        border-bottom: 1px solid #d5eaeb;
    }

    .appointment-cafe-proof__grid > div:nth-child(2) {
        border-right: 0;
    }

    .appointment-cafe-proof__grid > div:nth-child(n+3) {
        border-bottom: 0;
    }

    .appointment-cafe-split,
    .appointment-cafe-cta__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .appointment-cafe-hero h1 {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .appointment-cafe-hero__visual {
        min-height: 500px;
    }

    .appointment-cafe-phone-halo {
        width: 330px;
        height: 330px;
    }

    .appointment-cafe-phone {
        width: 235px;
    }

    .appointment-cafe-message {
        min-width: 175px;
        padding: 0.8rem;
    }

    .appointment-cafe-message--one {
        right: 0;
    }

    .appointment-cafe-message--two {
        bottom: 55px;
        left: 0;
    }

    .appointment-cafe-proof__grid {
        grid-template-columns: 1fr;
    }

    .appointment-cafe-proof__grid > div {
        border-right: 0;
        border-bottom: 1px solid #d5eaeb !important;
    }

    .appointment-cafe-proof__grid > div:last-child {
        border-bottom: 0 !important;
    }

    .appointment-cafe-workflow__grid article {
        grid-template-columns: 1fr;
    }

    .appointment-cafe-integration-map {
        grid-template-columns: 1fr;
    }
}

.emr-imagecenter-card-logo {
    display: block;
    width: 50%;
    max-width: 420px;
    min-width: 260px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 575.98px) {
    .emr-imagecenter-card-logo {
        width: 85%;
        min-width: 0;
    }
}

/* Blog page hero and article overlap */
:root {
    --blog-article-lift: 13rem;
    --blog-copy-lift: 4rem;
}

.blog-education-hero {
    background-image: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.50) 0%,
            rgba(255, 255, 255, 0.33) 48%,
            rgba(255, 255, 255, 0.00) 100%
        ),
        url('media/static/software-motif-continuing-education.webp');
    background-size: cover;
    background-position: center center;
    min-height: 640px;
}

.blog-hero-copy {
    color: #123a63;
    background-color: rgba(255, 255, 255, 0.94);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 1rem 3rem rgba(13, 59, 102, 0.12);
    transform: translateY(calc(var(--blog-copy-lift) * -1));
}

.blog-hero-copy h1 {
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.blog-hero-copy .lead {
    color: #245c91;
    font-size: 1.35rem;
}

.blog-articles-overlap {
    margin-top: calc((var(--blog-article-lift) * -1) + 10px);
    z-index: 5;
}

.blog-articles-card {
    background-color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(13, 59, 102, 0.12);
    border-radius: 1.25rem;
    box-shadow: 0 1.25rem 3.5rem rgba(13, 59, 102, 0.16);
}

@media (max-width: 991.98px) {
    :root {
        --blog-article-lift: 8rem;
        --blog-copy-lift: 2rem;
    }

    .blog-education-hero {
        min-height: 560px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --blog-article-lift: 5rem;
        --blog-copy-lift: 0rem;
    }

    .blog-hero-copy {
        padding: 1.5rem;
    }
}

/* Final Word product page
   Kept in the shared stylesheet so Pinegrow master updates cannot remove it. */
.final-word-hero {
    background: radial-gradient(circle at 78% 30%, rgba(0, 145, 255, 0.2), transparent 32%), linear-gradient(135deg, #07111b 0%, #030609 55%, #0a0d11 100%);
    overflow: hidden;
}

.final-word-company-logo {
    height: auto;
    max-width: 100%;
    width: 220px;
}

.final-word-kicker {
    color: #49adff;
    letter-spacing: 0.12em;
}

.final-word-accent {
    color: #087ac1;
}

.final-word-screen {
    border: 1px solid rgba(73, 173, 255, 0.65);
    border-radius: 1rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.5), 0 0 2rem rgba(33, 150, 243, 0.16);
}

.final-word-card {
    border-top: 3px solid #2196f3 !important;
}

.final-word-number {
    align-items: center;
    background: #e8f4ff;
    border-radius: 50%;
    color: #087ac1;
    display: inline-flex;
    font-weight: 700;
    height: 2.5rem;
    justify-content: center;
    width: 2.5rem;
}

.final-word-cta {
    background: linear-gradient(135deg, #087ac1, #045281);
}

/* Homepage product-card logo stages */
.home-product-logo-link {
    align-items: center;
    background: linear-gradient(135deg, #f8fbfe 0%, #edf5fb 100%);
    border-bottom: 1px solid rgba(13, 59, 102, 0.1);
    display: flex;
    height: 220px;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.home-product-logo {
    display: block;
    height: 150px;
    max-width: 100%;
    object-fit: contain;
    width: 100%;
}

/* Compact logos for the upper Products page lineup */
.translucent-hero-card > p.lead.services-hero-lead--navy {
    color: #000066 !important;
}

.services-hero-card__header {
    background-color: #000066;
}

.services-hero-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 145px;
    align-items: center;
    gap: 1rem;
}

.services-hero-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-card__logo img {
    display: block;
    width: 125px;
    max-width: 100%;
    max-height: 112px;
}

.services-hero-card__logo--appointment img {
    width: 108px;
}

.services-hero-card__logo--support img {
    width: 145px;
    max-height: 72px;
}

.appointment-service-logo-card,
.appointment-service-copy-card {
    min-height: 340px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.appointment-service-logo-card {
    align-items: center;
    background: linear-gradient(145deg, #ffffff, #f3fbfc);
    border: 1px solid rgba(11, 85, 183, 0.12);
    text-align: center;
}

.appointment-service-logo-card img {
    display: block;
    width: 220px;
    max-width: 100%;
    max-height: 165px;
}

.appointment-service-copy-card,
.services-blue-gradient-card {
    background: linear-gradient(145deg, #000066, #0b55b7 68%, #167dcc);
}

.cloud-gradient-button {
    color: #ffffff;
    background: #000066;
    border-color: #000066;
}

.cloud-gradient-button:hover,
.cloud-gradient-button:focus {
    color: #ffffff;
    background: #0b55b7;
    border-color: #0b55b7;
}

@media (max-width: 575.98px) {
    .services-hero-card__body {
        grid-template-columns: 1fr;
    }

    .services-hero-card__logo {
        justify-content: flex-start;
    }
}

.product-lineup-card {
    display: flex;
    flex-direction: column;
}

.product-lineup-card__logo {
    width: 270px;
    max-width: 100%;
    height: 105px;
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 1rem;
}

.product-lineup-card__logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.product-lineup-card__logo img[src$="emr-datacenter-logo.svg"] { width: 260px; }
.product-lineup-card__logo img[src$="chirocenter-logo.20260703.svg"] { width: 256px; }
.product-lineup-card__logo img[src$="myemr-logo.svg"] { width: 158px; }
.product-lineup-card__logo img[src$="final-word-logo.svg"] { width: 175px; }
.product-lineup-card__logo img[src$="catchphrase-logo.svg"] { width: 148px; }
.product-lineup-card__logo img[src$="emr-imagecenter-logo.svg"] { width: 162px; }
.product-lineup-card__logo img[src$="appointment-cafe-logo.svg"] { width: 100px; }

.product-lineup-card > .btn {
    align-self: flex-start;
    margin-top: 0;
}

/* Homepage hero message */
.home-hero {
    background-color: #eef4f9;
    min-height: 645px;
}

.home-hero-container,
.home-hero-row {
    min-height: 645px;
}

.home-hero-copy {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: linear-gradient(135deg, rgba(225, 240, 252, 0.67), rgba(255, 255, 255, 0.43));
    border: 1px solid rgba(12, 137, 209, 0.18);
    border-left: 5px solid #0c89d1;
    border-radius: 0 1.1rem 1.1rem 0;
    box-shadow: 0 1.25rem 3rem rgba(10, 37, 64, 0.16);
    max-width: 620px;
    padding: clamp(1.25rem, 2.2vw, 1.85rem);
    position: relative;
    z-index: 2;
}

.home-hero-product-logos {
    column-gap: clamp(0.4rem, 0.75vw, 1rem);
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, 110px);
    height: 220px;
    overflow: visible;
    position: absolute;
    right: max(10%, calc((100% - 1320px) / 2));
    row-gap: 0;
    top: 5rem;
    width: min(42vw, 800px);
    z-index: 1;
}

@media (min-width: 900px) {
    .home-hero-product-logos {
        display: grid;
    }
}

.home-hero-product-logo {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 0.35rem;
    position: relative;
    transition: filter 180ms ease, transform 180ms ease;
    width: 100%;
}

.home-hero-product-logo img {
    display: block;
    height: auto;
    max-height: 126px;
    max-width: none;
    object-fit: contain;
}

.home-hero-product-logo:hover {
    filter: drop-shadow(0 0.4rem 0.45rem rgba(10, 37, 64, 0.2));
    transform: translateY(-3px);
}

.home-hero-product-logo--datacenter {
    grid-column: 1;
    grid-row: 1;
}

.home-hero-product-logo--myemr {
    grid-column: 2;
    grid-row: 1;
}

.home-hero-product-logo--imagecenter {
    grid-column: 3;
    grid-row: 1;
}

.home-hero-product-logo--appointment {
    grid-column: 1;
    grid-row: 2;
}

.home-hero-product-logo--final-word {
    grid-column: 2;
    grid-row: 2;
}

.home-hero-product-logo--chirocenter {
    grid-column: 3;
    grid-row: 2;
}

.home-hero-product-logo--appointment,
.home-hero-product-logo--final-word,
.home-hero-product-logo--chirocenter {
    top: -2rem;
}

.home-hero-product-logo--datacenter img {
    width: min(120%, 372px);
}

.home-hero-product-logo--myemr img {
    width: min(81.6%, 234px);
}

.home-hero-product-logo--imagecenter img {
    width: min(96%, 276px);
}

.home-hero-product-logo--appointment img {
    width: min(57.6%, 144px);
}

.home-hero-product-logo--final-word img {
    width: min(120%, 390px);
}

.home-hero-product-logo--chirocenter img {
    width: min(93.6%, 264px);
}

.home-hero-copy h1 {
    color: #0a2540;
    font-size: clamp(1.85rem, 2.7vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.home-hero-tagline {
    border-top: 1px solid rgba(12, 137, 209, 0.22);
    color: #087ac1;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    padding-top: 0.75rem;
}

/* Shared translucent hero copy card */
.translucent-hero-card {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: linear-gradient(135deg, rgba(225, 240, 252, 0.67), rgba(255, 255, 255, 0.43));
    border: 1px solid rgba(12, 137, 209, 0.18);
    border-left: 5px solid #0c89d1;
    border-radius: 0 1.1rem 1.1rem 0;
    box-shadow: 0 1.25rem 3rem rgba(10, 37, 64, 0.16);
    color: #0a2540;
    max-width: 620px;
    padding: clamp(1.25rem, 2.2vw, 1.85rem);
    position: relative;
    z-index: 2;
}

.translucent-hero-card h1 {
    color: #0a2540;
    font-size: clamp(1.85rem, 2.7vw, 2.7rem);
    font-weight: 700 !important;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.products-hero-card {
    width: 100%;
    min-height: 465px;
    display: flex;
    flex-direction: column;
}

.products-hero-card h2 {
    margin-bottom: 1rem;
    color: #0a2540;
    font-size: clamp(1.85rem, 2.7vw, 2.7rem);
    font-weight: 700;
    line-height: 1.05;
}

.products-hero-card > .btn {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 991.98px) {
    .products-hero-card {
        min-height: 0;
    }
}

.translucent-hero-card > p.lead {
    color: #087ac1 !important;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 700 !important;
    letter-spacing: 0.01em;
    line-height: 1.35;
}

.translucent-hero-card .text-white,
.translucent-hero-card .text-white-50 {
    color: #244b6d !important;
}

.translucent-hero-card .link-light {
    color: #075f99 !important;
}

.translucent-hero-card .link-light:hover,
.translucent-hero-card .link-light:focus {
    color: #034a78 !important;
}

.translucent-hero-card--dark {
    background: linear-gradient(135deg, rgba(4, 17, 29, 0.32), rgba(12, 51, 78, 0.12));
    border-color: rgba(255, 255, 255, 0.06);
    border-left-color: rgba(84, 190, 248, 0.72);
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.05);
    color: #fff;
}

.translucent-hero-card--dark h1 {
    color: #fff;
}

.translucent-hero-card--dark > p.lead {
    color: #8fd4fa !important;
}

.translucent-hero-card--dark .text-white {
    color: #fff !important;
}

.translucent-hero-card--dark .text-white-50 {
    color: rgba(255, 255, 255, 0.74) !important;
}

.translucent-hero-card--dark .link-light {
    color: #a8ddfb !important;
}

.translucent-hero-card--dark .link-light:hover,
.translucent-hero-card--dark .link-light:focus {
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .home-hero {
        background-position: 58% top;
        min-height: 600px;
    }

    .home-hero-container,
    .home-hero-row {
        min-height: 600px;
    }

    .home-hero-copy {
        margin-top: 5rem;
        max-width: 470px;
    }
}

@media (max-width: 991.98px) {
    .services-hero {
        background-position: 32% top;
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        background-position: 33% top;
    }

    .home-hero-copy h1 {
        font-size: 1.85rem;
    }

}

/* Homepage software-solutions overview */
.home-solutions-section {
    background: radial-gradient(circle at 88% 18%, rgba(73, 173, 255, 0.22), transparent 28%), linear-gradient(135deg, #071d31 0%, #0a3e68 58%, #087ac1 100%);
    color: rgba(255, 255, 255, 0.86);
    overflow: hidden;
    position: relative;
}

.home-solutions-section h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 2.25rem;
    max-width: 900px;
}

.home-solutions-section h2::before {
    background: linear-gradient(90deg, #49adff, #fff);
    border-radius: 1rem;
    content: "";
    display: block;
    height: 0.3rem;
    margin-bottom: 1.25rem;
    width: 4rem;
}

.home-solutions-copy {
    font-size: 1.02rem;
}

.home-solutions-copy p {
    line-height: 1.8;
    margin-bottom: 1.35rem;
}

.home-solutions-copy a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.home-solutions-copy a:hover {
    border-bottom-color: #fff;
    color: #fff;
}

.home-solutions-tools-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 1.1rem;
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.25);
    color: #40566b;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    position: relative;
}

.home-solutions-tools-card::before {
    background: linear-gradient(90deg, #0c89d1, #2f2e8c);
    border-radius: 1.1rem 1.1rem 0 0;
    content: "";
    height: 0.3rem;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.home-solutions-tools-card h3 {
    color: #0a2540;
    line-height: 1.35;
}

.home-solutions-tools-card p {
    line-height: 1.7;
}

.home-solutions-tools-card a {
    font-weight: 700;
}

.home-solutions-phone {
    background: #e8f4ff;
    border-left: 3px solid #0c89d1;
    border-radius: 0 0.65rem 0.65rem 0;
    color: #0a2540;
    font-weight: 700;
    padding: 0.9rem 1rem;
}

/* Homepage integrated-software editorial */
.home-integrated-article {
    background: linear-gradient(145deg, #edf6fc 0%, #f8fbfe 52%, #eef1fb 100%);
}

.home-integrated-article-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(12, 137, 209, 0.14);
    border-radius: 1.25rem;
    box-shadow: 0 1.25rem 3.5rem rgba(10, 37, 64, 0.12);
    display: block;
    padding: clamp(1.5rem, 4vw, 3.5rem);
}

.home-integrated-article h2 {
    color: #0a2540 !important;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.home-integrated-article h2::before {
    background: linear-gradient(90deg, #0c89d1, #2f2e8c);
    border-radius: 1rem;
    content: "";
    display: block;
    height: 0.3rem;
    margin-bottom: 1.25rem;
    width: 4rem;
}

.home-integrated-article .lead {
    color: #245c91;
    font-size: 1.18rem;
    line-height: 1.75;
}

.home-integrated-article p {
    line-height: 1.75;
}

.home-integrated-article h3 {
    border-left: 4px solid #0c89d1;
    color: #0a2540 !important;
    font-size: 1.35rem;
    padding-left: 1rem;
}

.home-integrated-benefits {
    --bs-gutter-x: 1.25rem;
}

.home-integrated-benefits ul {
    height: 100%;
    margin-bottom: 0;
}

.home-integrated-benefits li {
    background: linear-gradient(135deg, #f8fbfe, #edf5fb);
    border: 1px solid rgba(12, 137, 209, 0.13);
    border-radius: 0.85rem;
    min-height: calc(33.333% - 1rem);
    padding: 1.15rem 1.15rem 1.15rem 3.4rem;
    position: relative;
}

.home-integrated-benefits li::before {
    align-items: center;
    background: linear-gradient(135deg, #0c89d1, #2f2e8c);
    border-radius: 50%;
    color: #fff;
    content: "✓";
    display: flex;
    font-size: 0.8rem;
    font-weight: 800;
    height: 1.8rem;
    justify-content: center;
    left: 1rem;
    position: absolute;
    top: 1.1rem;
    width: 1.8rem;
}

.home-integrated-benefits strong {
    color: #0a2540;
    font-size: 1.03rem;
}

.home-integrated-summary {
    background: #e8f4ff;
    border-left: 4px solid #0c89d1;
    border-radius: 0 0.75rem 0.75rem 0;
    color: #0a2540;
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 1.15rem 1.35rem;
}

.home-integrated-article a {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .home-integrated-benefits ul {
        height: auto;
    }
}

.integrated-software-brand-logo {
    display: block;
    height: auto;
    margin: 0 auto 1rem;
    max-width: 100%;
    width: 250px;
}

.about-hero-brand {
    height: auto;
    position: absolute;
    right: clamp(2rem, 6vw, 7rem);
    top: 8rem;
    width: 200px;
    z-index: 1;
}

.blog-hero-brand {
    height: auto;
    position: absolute;
    right: clamp(2rem, 6vw, 7rem);
    top: 8rem;
    width: 200px;
    z-index: 1;
}

/* Shadow pair for the light Software Motif SVG only. The dark SVG is intentionally excluded. */
img[src$="software-motif-inc-logo.svg"] {
    filter: drop-shadow(0 0.28rem 0.28rem rgba(0, 0, 255, 0.52))
        drop-shadow(0 0 0.5rem rgba(255, 255, 255, 0.95));
}

/* Black depth shadow for the dark Software Motif SVG. */
img[src$="software-motif-inc-logo-dark.svg"] {
    filter: drop-shadow(0 0.28rem 0.28rem rgba(0, 0, 0, 0.99))
        drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.25));
}

/* Dedicated product website links */
.product-site-links {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.product-site-link {
    min-height: 172px;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 76px auto;
    align-items: center;
    gap: 0.85rem 1rem;
    padding: 1.35rem;
    color: #101c34;
    background: linear-gradient(145deg, #ffffff, #edf5fb);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-site-link:hover,
.product-site-link:focus {
    color: #000066;
    box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transform: translateY(-0.2rem);
}

.product-site-link__logo {
    grid-column: 1 / -1;
    width: auto;
    max-width: 195px;
    max-height: 62px;
    object-fit: contain;
    object-position: left center;
}

.product-site-link__logo--cafe {
    max-width: 108px;
    max-height: 70px;
}

.product-site-link__copy strong,
.product-site-link__copy small {
    display: block;
}

.product-site-link__copy strong {
    color: #000066;
    font-size: 1rem;
}

.product-site-link__copy small {
    margin-top: 0.15rem;
    color: #52627a;
    line-height: 1.35;
}

.product-site-link__arrow {
    width: 2.2rem;
    height: 2.2rem;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #000066;
    border-radius: 0.65rem;
}

.site-hero-brand {
    height: auto;
    position: absolute;
    right: clamp(2rem, 6vw, 7rem);
    top: 8rem;
    width: 200px;
    z-index: 1;
}

.software-motif-inc-200-logo {
    display: block;
    height: auto;
    margin: 0 auto 1rem;
    max-width: 100%;
    width: 200px;
}

/* Chirocenter rebrand landing page */
.chirocenter-hero {
    background-color: #eef5fb;
    min-height: 680px;
    overflow: hidden;
}

.chirocenter-hero::after {
    background: linear-gradient(90deg, rgba(244, 249, 253, 0.18), transparent 62%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.chirocenter-hero-container,
.chirocenter-hero-row {
    min-height: 680px;
}

.chirocenter-rebrand-card {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background: linear-gradient(135deg, rgba(225, 240, 252, 0.78), rgba(255, 255, 255, 0.55));
    border: 1px solid rgba(12, 137, 209, 0.2);
    border-left: 5px solid #0c89d1;
    border-radius: 0 1.1rem 1.1rem 0;
    box-shadow: 0 1.25rem 3rem rgba(10, 37, 64, 0.18);
    max-width: 720px;
    padding: clamp(1.35rem, 2.6vw, 2.15rem);
    position: relative;
    z-index: 2;
}

.chirocenter-eyebrow,
.chirocenter-section-label {
    color: #087ac1;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.chirocenter-rebrand-card h1 {
    color: #0a2540;
    font-size: clamp(2rem, 3.25vw, 3.35rem);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 1.03;
    margin-bottom: 0.8rem;
}

.chirocenter-rebrand-card h1 sup {
    font-size: 0.3em;
    letter-spacing: 0;
    top: -1.6em;
}

.chirocenter-hero-tagline {
    border-bottom: 1px solid rgba(12, 137, 209, 0.2);
    color: #087ac1;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
}

.chirocenter-brand-transition {
    align-items: center;
    display: grid;
    gap: clamp(0.6rem, 1.5vw, 1.25rem);
    grid-template-columns: minmax(0, 0.76fr) auto minmax(0, 1.2fr);
    margin-bottom: 1rem;
}

.chirocenter-brand-transition img {
    display: block;
    height: auto;
    max-width: 100%;
}

.chirocenter-legacy-logo {
    opacity: 0.72;
}

.chirocenter-transition-arrow {
    align-items: center;
    background: #0c89d1;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 1.1rem;
    height: 2.1rem;
    justify-content: center;
    width: 2.1rem;
}

.chirocenter-hero-summary {
    color: #284760;
    font-size: 0.97rem;
    line-height: 1.6;
    max-width: 650px;
}

.chirocenter-value-strip {
    margin-top: -2.25rem;
    z-index: 3;
}

.chirocenter-value-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(12, 137, 209, 0.14);
    border-radius: 1rem;
    box-shadow: 0 1rem 2.5rem rgba(10, 37, 64, 0.13);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
}

.chirocenter-value-card > div {
    padding: 1.35rem 1.6rem;
}

.chirocenter-value-card > div + div {
    border-left: 1px solid rgba(12, 137, 209, 0.14);
}

.chirocenter-value-card strong,
.chirocenter-value-card span {
    display: block;
}

.chirocenter-value-card strong {
    color: #0a2540;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.chirocenter-value-card span {
    color: #5a7185;
    font-size: 0.87rem;
    line-height: 1.45;
}

.chirocenter-overview {
    background: #fff;
    color: #496073;
    overflow: hidden;
    padding-top: 5rem !important;
}

.chirocenter-overview h2,
.chirocenter-capabilities h2,
.chirocenter-ecosystem h2,
.chirocenter-details h2,
.chirocenter-cta h2 {
    color: #0a2540;
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.chirocenter-overview p,
.chirocenter-ecosystem p,
.chirocenter-details p {
    line-height: 1.75;
}

.chirocenter-promise-card {
    background: linear-gradient(145deg, #071d31, #0a4c7e);
    border-radius: 1.15rem;
    box-shadow: 0 1.2rem 2.75rem rgba(10, 37, 64, 0.2);
    color: rgba(255, 255, 255, 0.78);
    padding: clamp(1.5rem, 3vw, 2.35rem);
}

.chirocenter-promise-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.55rem;
}

.chirocenter-promise-card p {
    line-height: 1.6;
    margin-bottom: 1.7rem;
}

.chirocenter-promise-number {
    color: #49adff;
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
}

.chirocenter-capabilities {
    background: linear-gradient(145deg, #edf6fc 0%, #f9fbfd 48%, #eef1fb 100%);
}

.chirocenter-section-heading {
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.chirocenter-section-heading > p:last-child {
    color: #607587;
    font-size: 1.05rem;
}

.chirocenter-capability-card {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(12, 137, 209, 0.13);
    border-radius: 1rem;
    box-shadow: 0 0.7rem 1.8rem rgba(10, 37, 64, 0.07);
    padding: 1.6rem;
    position: relative;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.chirocenter-capability-card:hover {
    box-shadow: 0 1rem 2.2rem rgba(10, 37, 64, 0.13);
    transform: translateY(-3px);
}

.chirocenter-capability-card > span {
    color: #0c89d1;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.chirocenter-capability-card h3 {
    color: #0a2540;
    font-size: 1.18rem;
    margin: 0.8rem 0 0.7rem;
}

.chirocenter-capability-card p {
    color: #586f82;
    line-height: 1.65;
    margin-bottom: 0;
}

.chirocenter-ecosystem {
    background: #fff;
    color: #496073;
    overflow: hidden;
}

.chirocenter-ecosystem-card {
    background: linear-gradient(145deg, #f7fbfe, #e7f3fb);
    border: 1px solid rgba(12, 137, 209, 0.16);
    border-radius: 1.2rem;
    box-shadow: 0 1.1rem 2.8rem rgba(10, 37, 64, 0.12);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.chirocenter-ecosystem-logo {
    display: block;
    height: auto;
    margin: 0 auto 1.75rem;
    max-width: 360px;
    width: 82%;
}

.chirocenter-ecosystem-line {
    background: rgba(255, 255, 255, 0.82);
    border-left: 4px solid #0c89d1;
    border-radius: 0 0.7rem 0.7rem 0;
    margin-top: 0.8rem;
    padding: 0.9rem 1rem;
}

.chirocenter-ecosystem-line strong,
.chirocenter-ecosystem-line span {
    display: block;
}

.chirocenter-ecosystem-line strong {
    color: #0a2540;
}

.chirocenter-ecosystem-line span {
    color: #63788a;
    font-size: 0.88rem;
    margin-top: 0.15rem;
}

.chirocenter-details {
    background: #071d31;
}

.chirocenter-details-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.28);
    color: #50677a;
    padding: clamp(1.5rem, 4vw, 3.2rem);
}

.chirocenter-check-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.2rem;
}

.chirocenter-check-grid span {
    background: #f0f7fc;
    border: 1px solid rgba(12, 137, 209, 0.11);
    border-radius: 0.7rem;
    color: #29465e;
    font-size: 0.9rem;
    padding: 0.85rem 0.85rem 0.85rem 2.5rem;
    position: relative;
}

.chirocenter-check-grid span::before {
    align-items: center;
    background: #0c89d1;
    border-radius: 50%;
    color: #fff;
    content: "\2713";
    display: flex;
    font-size: 0.68rem;
    font-weight: 800;
    height: 1.35rem;
    justify-content: center;
    left: 0.75rem;
    position: absolute;
    top: 0.82rem;
    width: 1.35rem;
}

.chirocenter-cta {
    background: radial-gradient(circle at 85% 20%, rgba(73, 173, 255, 0.26), transparent 28%), linear-gradient(125deg, #0a3e68, #087ac1);
}

.chirocenter-cta .chirocenter-section-label {
    color: #9fd8ff;
}

.chirocenter-cta h2 {
    color: #fff;
}

.chirocenter-cta .lead {
    color: rgba(255, 255, 255, 0.8);
}

.chirocenter-cta .btn {
    color: #0a4c7e;
    font-weight: 700;
}

.chirocenter-phone {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.chirocenter-phone:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .chirocenter-hero,
    .chirocenter-hero-container,
    .chirocenter-hero-row {
        min-height: 650px;
    }

    .chirocenter-hero {
        background-position: 58% center;
    }
}

@media (max-width: 767.98px) {
    .chirocenter-value-card {
        grid-template-columns: 1fr;
    }

    .chirocenter-value-card > div + div {
        border-left: 0;
        border-top: 1px solid rgba(12, 137, 209, 0.14);
    }

    .chirocenter-check-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .chirocenter-hero,
    .chirocenter-hero-container,
    .chirocenter-hero-row {
        min-height: 680px;
    }

    .chirocenter-hero-row {
        padding-bottom: 3.25rem !important;
    }

    .chirocenter-rebrand-card h1 {
        font-size: 2rem;
    }

    .chirocenter-brand-transition {
        gap: 0.5rem;
    }

    .chirocenter-transition-arrow {
        font-size: 0.9rem;
        height: 1.75rem;
        width: 1.75rem;
    }
}
