:root {
    --brand-cyan: #2fcefd;
    --brand-deep: #1e4a53;
    --brand-deep-soft: #295f69;
    --surface: #f3f5f7;
    --surface-strong: #e7ecef;
    --white: #ffffff;
    --text-main: #18343b;
    --text-soft: #587279;
    --border-soft: rgba(30, 74, 83, 0.12);
    --shadow-soft: 0 24px 60px rgba(27, 69, 78, 0.13);
    --font-display: "Bahnschrift", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
    --font-body: "Trebuchet MS", "Lucida Sans Unicode", sans-serif;
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --transition-base: 280ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(47, 206, 253, 0.16), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(30, 74, 83, 0.16), transparent 28%),
        linear-gradient(180deg, #fcfdff 0%, #f1f4f6 100%);
}

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

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
.navbar-brand strong,
.btn,
.accordion-button {
    font-family: var(--font-display);
}

p {
    color: var(--text-soft);
    line-height: 1.75;
}

.page-shell {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.progress-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    z-index: 9999;
    background: linear-gradient(90deg, var(--brand-cyan), var(--brand-deep));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    overflow: visible;
    background: var(--white);
    border: 1px solid rgba(30, 74, 83, 0.14);
    box-shadow: 0 14px 32px rgba(30, 74, 83, 0.16);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
}

.brand-copy strong {
    font-size: 0.98rem;
    line-height: 1.1;
}

.brand-copy small {
    color: var(--text-soft);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
}

.nav-link {
    color: var(--text-main);
    font-weight: 600;
    padding: 0.8rem 1rem !important;
    border-radius: 999px;
    transition: background-color var(--transition-base), color var(--transition-base), transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-deep);
    background: rgba(47, 206, 253, 0.14);
}

.btn {
    border-radius: 999px;
    padding: 0.9rem 1.45rem;
    border-width: 1px;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base), color var(--transition-base);
}

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

.btn-brand {
    color: var(--white);
    border-color: transparent;
    background: linear-gradient(135deg, var(--brand-deep), var(--brand-cyan));
    box-shadow: 0 18px 34px rgba(30, 74, 83, 0.22);
}

.btn-outline-brand {
    color: var(--brand-deep);
    border-color: rgba(30, 74, 83, 0.18);
    background: rgba(255, 255, 255, 0.88);
}

.hero-section,
.page-hero {
    position: relative;
    padding: 8rem 0 5.5rem;
}

.compact-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.hero-title,
.page-hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 1.4rem;
}

.hero-copy,
.page-hero .lead {
    max-width: 62ch;
    font-size: 1.08rem;
}

.hero-actions,
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 1.8rem;
}

.hero-badges span,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(30, 74, 83, 0.08);
    color: var(--brand-deep);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-card,
.story-card,
.showcase-card,
.contact-card,
.focus-box,
.contact-facts,
.metric-card,
.feature-card,
.service-panel,
.timeline-item,
.footer-panel {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-xl);
}

.hero-card {
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
}

.hero-card-top,
.showcase-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.status-pill {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    color: var(--brand-deep);
    background: rgba(47, 206, 253, 0.15);
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.signal-grid div,
.showcase-stack div {
    padding: 1.1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(47, 206, 253, 0.12), rgba(30, 74, 83, 0.08));
    min-height: 128px;
}

.signal-grid strong {
    display: block;
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 0.45rem;
}

.signal-grid span,
.showcase-stack small,
.metric-card small,
.contact-facts small {
    color: var(--text-soft);
}

.hero-wave {
    position: absolute;
    inset: auto -10% -18% auto;
    width: 220px;
    height: 220px;
    border-radius: 42% 58% 61% 39% / 38% 42% 58% 62%;
    background: linear-gradient(135deg, rgba(47, 206, 253, 0.28), rgba(30, 74, 83, 0.08));
    animation: pulseFloat 8s ease-in-out infinite;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.7;
    animation: pulseFloat 9s ease-in-out infinite;
}

.hero-orb-a {
    width: 360px;
    height: 360px;
    top: 40px;
    right: -40px;
    background: radial-gradient(circle, rgba(47, 206, 253, 0.4), transparent 70%);
}

.hero-orb-b {
    width: 320px;
    height: 320px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(30, 74, 83, 0.24), transparent 72%);
    animation-delay: -3s;
}

.section-space {
    padding: 4.5rem 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 2.8rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    margin: 1rem 0;
    line-height: 1.05;
}

.alt-surface {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(231, 236, 239, 0.58));
}

.feature-card,
.service-panel,
.timeline-item,
.metric-card {
    padding: 1.8rem;
    height: 100%;
}

.feature-card i,
.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.1rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(47, 206, 253, 0.2), rgba(30, 74, 83, 0.12));
    color: var(--brand-deep);
    font-size: 1.4rem;
}

.feature-graphic,
.service-graphic {
    width: 96px;
    height: 96px;
    margin-bottom: 1.2rem;
    padding: 10px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(47, 206, 253, 0.14), rgba(30, 74, 83, 0.08));
    border: 1px solid rgba(30, 74, 83, 0.08);
    box-shadow: 0 20px 34px rgba(30, 74, 83, 0.12);
}

.feature-graphic img,
.service-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3,
.service-panel h2,
.timeline-item h3,
.story-card h2,
.showcase-card strong,
.footer-panel h2,
.metric-card strong {
    margin-bottom: 0.8rem;
}

.story-card,
.showcase-card,
.contact-facts,
.focus-box {
    padding: 2rem;
    height: 100%;
}

.check-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.9rem;
    color: var(--text-main);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-cyan);
}

.showcase-stack {
    display: grid;
    gap: 16px;
}

.visual-stack {
    display: grid;
    gap: 18px;
}

.visual-stack-sticky {
    position: sticky;
    top: 112px;
}

.photo-panel {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    background: var(--white);
}

.photo-panel-lg {
    min-height: 320px;
}

.photo-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.92) contrast(1.02);
}

.showcase-stack strong,
.metric-card strong,
.contact-facts strong,
.focus-box strong {
    display: block;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-top: 0.35rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.timeline-item span {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(47, 206, 253, 0.18);
    color: var(--brand-deep);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.1rem;
}

.tag-row span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(30, 74, 83, 0.06);
    color: var(--brand-deep);
    font-size: 0.82rem;
}

.accent-panel {
    background: linear-gradient(180deg, rgba(47, 206, 253, 0.18), rgba(255, 255, 255, 0.94));
}

.process-list {
    display: grid;
    gap: 16px;
}

.process-item {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border-soft);
}

.process-item strong {
    font-size: 1.2rem;
}

.radiology-hero,
.contact-hero {
    background:
        radial-gradient(circle at 80% 30%, rgba(47, 206, 253, 0.18), transparent 25%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(243, 245, 247, 0.5));
}

.tall-card,
.tall-metric {
    min-height: 100%;
}

.custom-accordion .accordion-item {
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.82);
}

.custom-accordion .accordion-button {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-main);
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: rgba(47, 206, 253, 0.12);
    color: var(--brand-deep);
}

.contact-facts,
.focus-box {
    display: grid;
    gap: 18px;
}

.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 1.7rem;
}

.contact-points div {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-main);
}

.contact-points i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(47, 206, 253, 0.16);
    color: var(--brand-deep);
}

.contact-card {
    padding: 2rem;
}

.form-control,
.form-select {
    min-height: 54px;
    border-radius: 16px;
    border-color: rgba(30, 74, 83, 0.15);
    padding: 0.85rem 1rem;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.94);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(47, 206, 253, 0.75);
    box-shadow: 0 0 0 0.22rem rgba(47, 206, 253, 0.18);
}

.form-label,
.form-note {
    color: var(--text-soft);
}

.site-footer {
    padding: 2rem 0 3rem;
}

.footer-panel {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 1.4rem;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text-soft);
}

.footer-meta strong,
.footer-links a:hover {
    color: var(--text-main);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

@keyframes pulseFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(0, -18px, 0) scale(1.04);
    }
}

@media (max-width: 1199.98px) {
    .timeline-grid,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .visual-stack-sticky {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 12px 0;
    }

    .navbar-brand {
        gap: 0;
    }

    .brand-copy {
        display: none;
    }

    .navbar-collapse {
        margin-top: 16px;
        padding: 16px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: var(--shadow-soft);
    }

    .footer-panel,
    .footer-meta,
    .process-item {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .page-hero {
        padding-top: 5.6rem;
    }

    .hero-title,
    .page-hero h1 {
        line-height: 1.02;
    }

    .signal-grid,
    .timeline-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .story-card,
    .showcase-card,
    .contact-card,
    .footer-panel {
        padding: 1.45rem;
    }

    .photo-panel,
    .photo-panel-lg {
        min-height: 220px;
    }

}