:root {
    --background: #f9f9f9;
    --surface: #ffffff;
    --surface-soft: #eeeeee;
    --surface-muted: #e8e8e8;
    --ink: #1a1c1c;
    --charcoal: #1f1f1f;
    --muted: #707070;
    --line: #c4c7c7;
    --blue: #0058b5;
    --blue-dark: #0d5cb9;
    --panel-blue: #385b7f;
    --white: #ffffff;
    --container: 1440px;
    --page-pad: clamp(20px, 4.4vw, 64px);
    --section-gap: clamp(76px, 9vw, 120px);
    --radius: 8px;
    --font-body: "Inter", Arial, sans-serif;
    --font-display: "Hanken Grotesk", "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

body.services-menu-open {
    overflow: hidden;
}

body.home-booking-open {
    overflow: hidden;
}

body.opening-popup-open {
    overflow: hidden;
}

body.search-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.container,
.section-inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--page-pad);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 30px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 88, 181, .18);
}

.button--dark {
    background: var(--panel-blue);
    color: var(--white);
}

.button--light {
    background: var(--white);
    color: var(--charcoal);
}

.button--blue {
    background: var(--panel-blue);
    color: var(--white);
}

.button--lightblue {
    background: var(--blue);
    color: var(--white);
}

.button--ghost-light {
    border-color: rgba(255, 255, 255, .72);
    color: var(--white);
}

.button--ghost-light:hover {
    background: var(--white);
    color: var(--charcoal);
}

.eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.text-blue {
    color: var(--blue);
}

.approfondimento-wholebody-page .eyebrow {
    color: var(--blue);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: currentColor;
    content: "";
    transition: width .25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s cubic-bezier(.16, 1, .3, 1), transform .75s cubic-bezier(.16, 1, .3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.announcement-bar {
    position: relative;
    z-index: 70;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
}

.announcement-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.announcement-bar__link {
    font-weight: 700;
    text-decoration: underline;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 130;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(196, 199, 199, .55);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .05);
    backdrop-filter: blur(18px);
}

.announcement-bar + .site-header {
    top: 38px;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.site-header__inner {
    width: 100%;
    min-height: 82px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 0 var(--page-pad);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.brand__logo {
    width: auto;
    height: 50px;
    object-fit: contain;
    opacity: .94;
    filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(1933%) hue-rotate(199deg) brightness(92%) contrast(101%);
}

.site-header .brand__logo {
    filter: none;
}

.site-nav {
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 1;
    left: 50%;
    gap: clamp(18px, 2vw, 30px);
    margin-left: 0;
    transform: translateX(-50%);
    color: var(--ink);
    font-size: 17px;
    font-weight: 500;
}

.nav-link--button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.site-header__actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-self: end;
    margin-left: 0;
    flex: 0 0 auto;
    padding-right: 0;
}

.site-header__search {
    width: 200px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid rgba(31, 31, 31, .26);
    border-radius: 999px;
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    text-align: left;
    transition: border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.site-header__search:hover {
    border-color: var(--panel-blue);
    background: rgba(56, 91, 127, .06);
    color: var(--panel-blue);
}

.site-header__search:focus-within {
    border-color: var(--panel-blue);
    box-shadow: 0 0 0 3px rgba(56, 91, 127, .12);
}

.site-header__search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
}

.site-header__search input::placeholder {
    color: #64748b;
}

.menu-trigger {
    position: fixed;
    top: 17px;
    right: var(--page-pad);
    z-index: 66;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--charcoal);
    border-radius: 999px;
    background: var(--charcoal);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 54px;
    padding: 40px var(--page-pad);
    background: rgba(31, 31, 31, .96);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0);
    transition: opacity .4s ease, visibility .4s ease, backdrop-filter .4s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(20px);
}

.menu-overlay__close {
    position: absolute;
    top: 30px;
    right: var(--page-pad);
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: transform .35s ease;
}

.menu-overlay__close:hover {
    transform: rotate(90deg);
}

.menu-overlay__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: left;
}

.menu-overlay__nav a {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 300;
    line-height: 1;
    transition: color .25s ease, transform .25s ease;
}

.menu-overlay__prestazioni {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 300;
    line-height: 1;
    transition: color .25s ease, transform .25s ease;
}

.menu-overlay__nav a:hover,
.menu-overlay__prestazioni:hover {
    color: #6fb0ff;
    transform: scale(1.035);
}

.prestazioni-drawer {
    position: fixed;
    inset: 0;
    z-index: 140;
    pointer-events: none;
}

.prestazioni-drawer__scrim {
    position: absolute;
    inset: 0;
    background: rgba(26, 28, 28, .38);
    opacity: 0;
    transition: opacity .28s ease;
}

.prestazioni-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(860px, calc(100vw - 28px));
    height: 100%;
    padding: clamp(26px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: var(--white);
    box-shadow: 26px 0 70px rgba(0, 0, 0, .18);
    transform: translateX(-105%);
    transition: transform .34s ease;
}

.prestazioni-drawer.is-open {
    pointer-events: auto;
}

.prestazioni-drawer.is-open .prestazioni-drawer__scrim {
    opacity: 1;
}

.prestazioni-drawer.is-open .prestazioni-drawer__panel {
    transform: translateX(0);
}

.prestazioni-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.prestazioni-drawer__header h2 {
    margin: 4px 0 0;
    font-family: var(--font-display);
    color: var(--charcoal);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.05;
}

.prestazioni-drawer__close {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(31, 31, 31, .14);
    border-radius: 999px;
    background: var(--white);
    color: var(--charcoal);
    cursor: pointer;
}

.prestazioni-drawer__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    overflow-y: auto;
    padding-right: 4px;
}

.prestazioni-drawer__group {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 18px 0 20px;
    border-top: 1px solid rgba(31, 31, 31, .12);
    color: var(--charcoal);
}

.prestazioni-drawer__group:nth-child(-n + 2) {
    border-top: 0;
}

.prestazioni-drawer__category {
    display: grid;
    gap: 6px;
}

.prestazioni-drawer__category span {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.prestazioni-drawer__category small {
    color: #55595a;
    font-size: 14px;
    line-height: 1.45;
}

.prestazioni-drawer__category:hover span {
    color: var(--panel-blue);
}

.prestazioni-drawer__group ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.prestazioni-drawer__group li a {
    display: inline-flex;
    color: #424647;
    font-size: 15px;
    line-height: 1.3;
    transition: color .2s ease, transform .2s ease;
}

.prestazioni-drawer__group li a:hover {
    color: var(--panel-blue);
    transform: translateX(3px);
}

.prestazioni-drawer__actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.prestazioni-drawer__actions .button--light {
    border-color: rgba(31, 31, 31, .14);
    background: #f5f5f3;
    color: var(--charcoal);
}

.opening-popup[hidden] {
    display: none;
}

.opening-popup {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
    padding: var(--page-pad);
}

.opening-popup__scrim {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 12, .74);
}

.opening-popup__panel {
    position: relative;
    width: min(1080px, calc(100vw - 80px));
    height: min(560px, calc(100vh - 80px));
    overflow: hidden;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .34);
}

.opening-popup__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 199, 199, .75);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    cursor: pointer;
}

.opening-popup__image {
    position: relative;
    min-height: 0;
    background: var(--charcoal);
}

.opening-popup__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.opening-popup__slides,
.opening-popup__slide {
    height: 100%;
}

.opening-popup__slide {
    display: none;
    grid-template-columns: 1fr 1fr;
}

.opening-popup__slide.is-active {
    display: grid;
}

.opening-popup__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(36px, 5vw, 64px);
    background: var(--white);
}

.opening-popup__slide--dark .opening-popup__copy {
    background: var(--charcoal);
    color: var(--white);
}

.opening-popup__copy span {
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.opening-popup__slide--dark .opening-popup__copy span {
    color: #8bc0ff;
}

.opening-popup__copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 300;
    line-height: 1.08;
}

.opening-popup__copy p {
    margin: 22px 0 30px;
    color: #444748;
    font-size: 18px;
    line-height: 1.62;
}

.opening-popup__slide--dark .opening-popup__copy p {
    color: rgba(255, 255, 255, .76);
}

.opening-popup__tags {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.opening-popup__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(31, 31, 31, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
}

.opening-popup__controls {
    position: absolute;
    left: 50%;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.opening-popup__arrow,
.opening-popup__dots button {
    border: 1px solid rgba(31, 31, 31, .18);
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}

.opening-popup__arrow {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.opening-popup__dots {
    display: inline-flex;
    gap: 7px;
}

.opening-popup__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
}

.opening-popup__dots button.is-active {
    width: 26px;
    background: var(--panel-blue);
}

.hero {
    position: relative;
    height: calc(100vh - 276px);
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .9s ease, transform 6000ms ease;
}

.hero__image.is-visible {
    opacity: 1;
}

.hero__slide-data {
    display: none;
}

.hero__image.is-active {
    transform: scale(1.08);
}

.hero__shade {
    background: linear-gradient(90deg, rgba(31, 31, 31, .82), rgba(31, 31, 31, .42) 52%, rgba(31, 31, 31, .08));
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 740px) minmax(380px, 430px);
    justify-content: space-between;
    align-items: center;
    gap: clamp(28px, 5vw, 84px);
    padding: 146px var(--page-pad) 90px;
}

.hero__content {
    width: min(760px, 100%);
}

.hero .eyebrow {
    color: var(--white);
}

.hero__title {
    margin: 0 0 28px;
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 86px);
    font-weight: 300;
    line-height: 1.04;
}

.hero__text {
    width: min(570px, 100%);
    margin: 0 0 38px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-structure-card {
    justify-self: end;
    width: min(410px, 100%);
    max-height: calc(100vh - 168px);
    overflow: auto;
    padding: clamp(26px, 2.6vw, 36px);
    border: 1px solid rgba(255, 255, 255, .44);
    border-radius: 26px;
    background: rgba(246, 248, 248, .84);
    color: var(--ink);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px) saturate(1.08);
}

.hero-structure-card__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--panel-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-structure-card h2 {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.08;
}

.hero-structure-card__section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(31, 31, 31, .08);
}

.hero-structure-card__section:first-of-type {
    margin-top: 0;
    border-top: 0;
}

.hero-structure-card__section h3 {
    margin: 0 0 5px;
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-structure-card__section p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 11px;
    font-style: italic;
    line-height: 1.35;
}

.hero-structure-card dl {
    display: grid;
    gap: 5px;
    margin: 0;
}

.hero-structure-card dl div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: baseline;
}

.hero-structure-card dt,
.hero-structure-card dd {
    margin: 0;
    font-size: 11px;
    line-height: 1.35;
}

.hero-structure-card dt {
    color: var(--ink);
}

.hero-structure-card dd {
    color: var(--charcoal);
    font-weight: 800;
    text-align: right;
}

.hero-structure-card__address {
    display: block;
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(31, 31, 31, .08);
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
    line-height: 1.45;
}

.hero-structure-card__address strong {
    display: block;
    margin-bottom: 5px;
    color: var(--charcoal);
    font-size: 11px;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-structure-card__phone {
    display: flex;
    width: 100%;
    margin: 22px auto 0;
    justify-content: center;
    text-align: center;
}

@media (max-width: 1440px) and (min-width: 961px), (max-height: 920px) and (min-width: 961px) {
    .hero {
        min-height: clamp(500px, 62vh, 650px);
    }

    .hero__inner {
        grid-template-columns: minmax(0, 690px) minmax(340px, 380px);
        padding-top: 116px;
        padding-bottom: 70px;
    }

    .hero__title {
        margin-bottom: 20px;
        font-size: clamp(42px, 5.8vw, 70px);
    }

    .hero__text {
        margin-bottom: 28px;
        font-size: clamp(16px, 1.45vw, 18px);
        line-height: 1.5;
    }

    .hero-structure-card {
        width: min(380px, 100%);
        max-height: calc(100vh - 180px);
        padding: 22px 24px;
        border-radius: 22px;
    }

    .hero-structure-card h2 {
        margin-bottom: 12px;
        font-size: 27px;
    }

    .hero-structure-card__section {
        margin-top: 12px;
        padding-top: 12px;
    }

    .hero-structure-card__section p,
    .hero-structure-card dt,
    .hero-structure-card dd {
        font-size: 10.5px;
        line-height: 1.25;
    }

    .hero-structure-card dl {
        gap: 4px;
    }

    .hero-structure-card__address {
        margin-top: 12px;
        padding-top: 12px;
    }

    .hero-structure-card__address-copy {
        display: none;
    }

    .hero-structure-card__phone {
        margin-top: 0;
        min-height: 42px;
    }

    .hero-structure-card__section:nth-of-type(4) {
        display: none;
    }
}

@media (max-height: 780px) and (min-width: 961px) {
    .hero__inner {
        padding-top: 96px;
        padding-bottom: 58px;
    }

    .hero__title {
        font-size: clamp(38px, 5vw, 60px);
    }

    .hero-structure-card {
        padding: 18px 20px;
    }
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transform: translateX(-50%);
    animation: scroll-bob 1.7s ease-in-out infinite;
}

.quick-booking {
    position: relative;
    z-index: 5;
    min-height: 276px;
    display: flex;
    align-items: center;
    padding: 38px var(--page-pad) 34px;
    background: var(--charcoal);
    color: var(--white);
}

.quick-booking__inner {
    position: relative;
    width: min(1040px, 100%);
    margin: 0 auto;
    text-align: center;
}

.quick-booking h2 {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 400;
}

.search-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 220px auto;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border-radius: 999px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
}

.search-field,
.search-location {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    color: var(--muted);
}

.search-field {
    border-right: 1px solid rgba(196, 199, 199, .65);
}

.search-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
}

.search-field input::placeholder {
    color: var(--muted);
}

.search-location {
    color: var(--ink);
    white-space: nowrap;
}

.search-submit {
    min-height: 58px;
    padding: 0 34px;
}

.search-shell--trigger {
    width: 100%;
    border: 0;
    color: inherit;
    cursor: default;
    text-align: left;
}

.search-shell--trigger .search-field input {
    cursor: text;
}

.search-shell--trigger .search-field input::placeholder {
    color: var(--muted);
}

.institutional-search {
    --search-bg: #f7fbff;
    position: fixed;
    inset: 0;
    z-index: 180;
    overflow-y: auto;
    background:
        radial-gradient(circle at 15% 12%, rgba(0, 88, 181, .08), transparent 30%),
        var(--search-bg);
    color: #0f172a;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity .22s cubic-bezier(.16, 1, .3, 1),
        visibility .22s cubic-bezier(.16, 1, .3, 1),
        transform .22s cubic-bezier(.16, 1, .3, 1);
}

.institutional-search.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.institutional-search__brand {
    position: fixed;
    top: 22px;
    left: var(--page-pad);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    opacity: .86;
}

.institutional-search__brand img {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.institutional-search__close {
    position: fixed;
    top: 24px;
    right: var(--page-pad);
    z-index: 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #0f172a;
    cursor: pointer;
    transition: transform .24s cubic-bezier(.16, 1, .3, 1), color .2s ease;
}

.institutional-search__close:hover {
    color: #475569;
    transform: rotate(90deg);
}

.institutional-search__stage {
    width: min(650px, calc(100% - (var(--page-pad) * 2)));
    margin: 0 auto;
    padding: clamp(92px, 13vh, 132px) 0 86px;
}

.institutional-search__field {
    display: grid;
    gap: 14px;
}

.institutional-search__label {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.institutional-search__field input {
    width: 100%;
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid #0f172a;
    outline: 0;
    background: transparent;
    color: #0f172a;
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 300;
    line-height: 1.16;
}

.institutional-search__field input::placeholder {
    color: #94a3b8;
}

.institutional-search__field input::-webkit-search-cancel-button {
    appearance: none;
    display: none;
}

.institutional-search__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 14px;
}

.institutional-search__filters[hidden] {
    display: none;
}

.institutional-search__filters button {
    min-height: 29px;
    padding: 0 11px;
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 999px;
    background: rgba(248, 250, 252, .88);
    color: #475569;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.institutional-search__filters button:hover {
    border-color: rgba(0, 88, 181, .24);
    background: rgba(239, 246, 255, .9);
    color: #0058b5;
    transform: translateY(-1px);
}

.institutional-search__filters button.is-active {
    border-color: #0058b5;
    background: #0058b5;
    color: #fff;
}
.institutional-search__results {
    margin-top: 42px;
    padding-bottom: 30px;
}

.institutional-search__panel {
    margin-top: 48px;
    animation: search-panel-in .26s cubic-bezier(.16, 1, .3, 1);
}

@keyframes search-panel-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.search-results {
    position: absolute;
    left: 50%;
    z-index: 25;
    width: min(840px, 100%);
    max-height: min(430px, 58vh);
    margin: 12px auto 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: var(--white);
    color: var(--ink);
    overflow-y: auto;
    overscroll-behavior: contain;
    text-align: left;
    transform: translateX(-50%);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.result-section-title {
    padding: 12px 14px 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.result-item {
    width: 100%;
    display: block;
    padding: 13px 14px;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.result-item:hover {
    background: var(--surface-soft);
}

.result-content-item {
    border-left: 3px solid rgba(56, 91, 127, .35);
}

.result-item-disabled {
    color: var(--muted);
    cursor: default;
}

.result-item-disabled:hover {
    background: transparent;
}

.result-title {
    font-weight: 700;
}

.result-meta,
.empty {
    color: var(--muted);
    font-size: 14px;
}

.institutional-search .search-results,
.institutional-search__results {
    position: static;
    left: auto;
    width: 100%;
    max-height: none;
    margin: 42px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #0f172a;
    overflow: visible;
    box-shadow: none;
    transform: none;
}

.institutional-search .result-section-title {
    padding: 0 4px 14px;
    color: #64748b;
    font-size: 11px;
    letter-spacing: .16em;
}

.institutional-search .result-section-title--other,
.institutional-search .result-section-title--unavailable {
    margin-top: 28px;
}

.institutional-search .result-section-title--content {
    margin-top: 32px;
}

.institutional-search .search-results__ssn {
    margin: 4px 0 34px;
    padding: 16px 20px;
    border: 1px solid rgba(217, 119, 6, .16);
    border-radius: 24px;
    background: rgba(255, 251, 235, .86);
    color: #78350f;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 14px 32px rgba(120, 53, 15, .08);
}

.institutional-search .result-item__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.institutional-search .result-center-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid #dbe3ec;
    border-radius: 999px;
    background: #f8fafc;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.institutional-search .result-center-badge--current {
    border-color: rgba(0, 88, 181, .22);
    background: rgba(0, 88, 181, .08);
    color: #0058b5;
}

.institutional-search .result-item {
    position: relative;
    padding: 22px 24px;
    border: 1px solid rgba(226, 232, 240, .82);
    border-radius: 28px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.institutional-search .result-item + .result-item {
    margin-top: 12px;
}

.institutional-search .result-item--current {
    border-color: rgba(0, 88, 181, .18);
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(239, 246, 255, .72));
}

.institutional-search .result-item--other {
    background: linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(248, 250, 252, .76));
}

.institutional-search .result-content-item {
    width: 100%;
    margin-left: 0;
    border-color: rgba(14, 116, 144, .16);
    background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(236, 254, 255, .56));
}

.institutional-search .result-item:hover {
    border-color: rgba(148, 163, 184, .7);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 58px rgba(15, 23, 42, .12);
    transform: translateY(-2px);
}

.institutional-search .result-item-disabled:hover {
    border-color: rgba(226, 232, 240, .82);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 46px rgba(15, 23, 42, .07);
    transform: none;
}

.institutional-search .result-title {
    color: #0f172a;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.35;
}

.institutional-search .result-meta {
    margin-top: 5px;
    color: #64748b;
    font-size: 13px;
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    padding-left: 0;
}

.result-actions button,
.result-actions a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(148, 163, 184, .26);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #475569;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.2;
    transition: border-color .18s ease, color .18s ease, transform .18s ease, background .18s ease;
}

.result-actions button:hover,
.result-actions a:hover {
    border-color: rgba(0, 88, 181, .24);
    background: rgba(239, 246, 255, .82);
    color: #0058b5;
    transform: translateY(-1px);
}

.result-actions .material-symbols-outlined {
    font-size: 18px;
}
.result-actions--contact {
    margin-top: 12px;
}

.result-actions--contact a:first-child {
    border-color: rgba(0, 88, 181, .24);
    background: rgba(239, 246, 255, .9);
    color: #0058b5;
}


.institutional-search .home-booking__header {
    align-items: center;
    padding: 0 0 18px;
    border-bottom: 0;
    background: transparent;
}

.institutional-search .home-booking__header span {
    margin-bottom: 5px;
    font-size: 10px;
    letter-spacing: .1em;
}

.institutional-search .home-booking__header h2 {
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
}

.institutional-search .home-booking__header p {
    margin-top: 5px;
    color: #64748b;
    font-size: 14px;
}

.institutional-search .home-booking__close {
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #ffffff;
}

.institutional-search .home-booking__body {
    padding: 0;
    overflow: visible;
}

.institutional-search .home-booking__intro,
.search-editorial__text {
    color: #334155;
    font-size: 17px;
    line-height: 1.65;
}

.institutional-search .home-booking__intro {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.45;
}

.search-editorial__text {
    display: grid;
    gap: 20px;
    margin-top: 8px;
}

.search-editorial__text p {
    margin: 0;
}

.search-editorial__downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 46px;
}

.search-outline-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid #0f172a;
    border-radius: 4px;
    background: transparent;
    color: #0f172a;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    transition: background .2s ease, color .2s ease;
}

.search-outline-button:hover {
    background: #0f172a;
    color: #ffffff;
}

.institutional-search .home-booking__summary {
    grid-template-columns: minmax(0, 1.7fr) minmax(120px, .9fr) minmax(120px, .8fr);
    gap: 8px;
    margin: 16px 0 22px;
}

.institutional-search .home-booking__summary div,
.institutional-search .home-booking__slot {
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #ffffff;
}

.institutional-search .home-booking__summary div {
    padding: 9px 11px;
}

.institutional-search .home-booking__summary span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.institutional-search .home-booking__summary strong {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.22;
}

.institutional-search .home-booking__slot.is-selected {
    border-color: #0f172a;
    box-shadow: inset 0 0 0 1px #0f172a;
}

.institutional-search .home-booking__slots,
.institutional-search .home-booking__form {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.institutional-search .home-booking__form input,
.institutional-search .home-booking__form textarea {
    border-radius: 4px;
    border-color: #dbe3ec;
    background: #ffffff;
}

.institutional-search .home-booking__privacy {
    align-items: flex-start;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #f8fafc;
    color: #334155;
}

.empty {
    padding: 14px;
}

.quick-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    color: var(--muted);
}

.quick-chips > span {
    color: #a4a4a4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.quick-chips button {
    position: relative;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: color .25s ease;
}

.quick-chips button:hover {
    color: #8bc0ff;
}

.home-booking[hidden] {
    display: none;
}

.home-booking {
    position: fixed;
    inset: 0;
    z-index: 120;
}

.home-booking__scrim {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 18, .42);
}

.home-booking__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(760px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    color: var(--ink);
    box-shadow: -28px 0 80px rgba(0, 0, 0, .28);
}

.home-booking__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.home-booking__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 38px 54px 30px;
    border-bottom: 1px solid rgba(196, 199, 199, .65);
    background: var(--surface);
}

.home-booking__header span {
    display: block;
    margin-bottom: 7px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-booking__header h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(38px, 4.3vw, 58px);
    font-weight: 300;
    line-height: 1.08;
}

.home-booking__header p {
    margin: 8px 0 0;
    color: var(--muted);
}

.home-booking__close {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 199, 199, .85);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}

.home-booking__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 26px 44px 36px;
}

.home-booking__intro {
    width: min(560px, 100%);
    margin: 0 0 18px;
    color: #444748;
    font-size: 15px;
    line-height: 1.5;
}

.home-booking__loading,
.home-booking__error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 18px;
    background: var(--surface-soft);
    color: var(--muted);
}

.home-booking__error {
    background: #fff0f0;
    color: #8a2424;
}

.home-booking__summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.home-booking__summary div {
    padding: 12px 14px;
    border: 1px solid rgba(196, 199, 199, .65);
    border-radius: 14px;
    background: var(--background);
}

.home-booking__summary span,
.home-booking__slot span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.home-booking__summary strong,
.home-booking__slot strong {
    display: block;
    margin-top: 4px;
}

.home-booking__prep {
    color: #444748;
}

.home-booking__slots,
.home-booking__form {
    margin-top: 18px;
}

.home-booking__slots {
    padding: 16px 0 0;
    border-top: 1px solid rgba(196, 199, 199, .65);
    background: transparent;
    box-shadow: none;
}

.home-booking__slots h3,
.home-booking__form h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
}

.home-booking__slots h3 {
    color: var(--ink);
    font-size: 20px;
}

.home-booking__slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(196, 199, 199, .68);
    border-radius: 14px;
    background: var(--white);
}

.home-booking__slot.is-selected {
    border-color: rgba(56, 91, 127, .38);
    background: var(--background);
}

.home-booking__slot button,
.home-booking__selected {
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    background: var(--panel-blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.home-booking__selected {
    background: var(--white);
    color: var(--panel-blue);
}

.home-booking__link-button {
    margin-top: 8px;
    border: 0;
    background: transparent;
    color: var(--blue);
    cursor: pointer;
    font-weight: 800;
}

.home-booking__slot-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.home-calendar {
    position: fixed;
    inset: 0;
    z-index: 260;
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vh;
    padding: 22px;
}

.home-calendar__scrim {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(26, 28, 28, .48);
    cursor: pointer;
}

.home-calendar__panel {
    position: relative;
    z-index: 1;
    width: min(920px, calc(100vw - 44px));
    height: min(680px, calc(100vh - 44px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
}

.home-calendar__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.home-calendar__header span,
.home-calendar__times span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-calendar__header h3 {
    margin: 4px 0 0;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
    text-transform: capitalize;
}

.home-calendar__header button,
.home-calendar__controls button {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(196, 199, 199, .7);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}

.home-calendar__controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 16px;
}

.home-calendar__layout {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(240px, .72fr);
    gap: 24px;
    align-items: stretch;
    min-height: 0;
    flex: 1;
}

.home-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.home-calendar__weekday {
    display: grid;
    place-items: center;
    min-height: 28px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-calendar__day {
    display: grid;
    place-items: center;
    min-height: 48px;
    border: 1px solid rgba(196, 199, 199, .64);
    border-radius: var(--radius);
    background: var(--surface-soft);
    color: var(--muted);
}

.home-calendar__day:not(:disabled) {
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}

.home-calendar__day.has-slots {
    border-color: rgba(56, 91, 127, .45);
}

.home-calendar__day.is-selected,
.home-calendar__day.is-selected:disabled {
    background: var(--panel-blue) !important;
    color: #fff !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #fff !important;
}

.home-calendar__day.is-selected *,
.home-calendar__day.is-selected span,
.home-calendar__day.is-selected i {
    color: #fff !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #fff !important;
}

.home-calendar__day.is-selected span {
    text-shadow: 0 1px 1px rgba(0, 0, 0, .18);
}

.home-calendar__day i {
    width: 5px;
    height: 5px;
    margin-top: 4px;
    border-radius: 50%;
    background: currentColor;
}

.home-calendar__day.is-empty {
    min-height: 48px;
    border: 0;
    background: transparent;
}

.home-calendar__times {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 18px;
    border: 1px solid rgba(196, 199, 199, .65);
    border-radius: 18px;
    background: var(--white);
}

.home-calendar__times strong {
    display: block;
    margin: 4px 0 16px;
    text-transform: capitalize;
}

.home-calendar__time-list {
    display: grid;
    gap: 10px;
    min-height: 0;
    overflow-y: auto;
    padding-right: 4px;
}

.home-calendar__time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid rgba(196, 199, 199, .72);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    text-align: left;
}

.home-calendar__time.is-selected {
    border-color: rgba(56, 91, 127, .55);
    background: var(--panel-blue);
    color: var(--white);
}

.home-calendar__time span {
    font-size: 16px;
    font-weight: 800;
}

.home-calendar__time small {
    color: inherit;
    font-size: 12px;
}

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

.home-booking__form label {
    display: grid;
    gap: 6px;
    margin-bottom: 10px;
    color: #444748;
    font-size: 14px;
    font-weight: 700;
}

.home-booking__form input,
.home-booking__form textarea {
    width: 100%;
    border: 1px solid rgba(196, 199, 199, .85);
    border-radius: 12px;
    padding: 10px 12px;
    background: var(--white);
    color: var(--ink);
}

.home-booking__privacy {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 10px !important;
}

.home-booking__privacy input {
    width: auto;
}

.home-booking__full-button {
    width: 100%;
}

.home-booking__submit {
    gap: 10px;
}

.home-booking__submit:disabled {
    cursor: wait;
    opacity: .82;
}

.home-booking__spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: var(--white);
    border-radius: 999px;
    animation: home-booking-spin .8s linear infinite;
}

.home-booking__loading .home-booking__spinner {
    border-color: rgba(56, 91, 127, .24);
    border-top-color: var(--panel-blue);
}

.home-booking__message {
    margin-top: 14px;
    padding: 14px;
    border-radius: 16px;
    font-weight: 700;
}

.home-booking__message.success {
    background: #eaf7ef;
    color: #1d6b3a;
}

.home-booking__message.error {
    background: #fff0f0;
    color: #8a2424;
}

.home-booking__success-state {
    position: relative;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 46px 42px;
    text-align: center;
}

.home-booking__success-x {
    position: absolute;
    top: 28px;
    right: 34px;
}

.home-booking__success-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 999px;
    background: #eaf7ef;
    color: #1d6b3a;
}

.home-booking__success-icon .material-symbols-outlined {
    font-size: 38px;
}

.home-booking__success-state h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 500;
    line-height: 1.08;
}

.home-booking__success-state p {
    width: min(360px, 100%);
    margin: 0 0 28px;
    color: #444748;
    font-size: 18px;
}

.home-booking__success-close {
    width: min(240px, 100%);
}

@keyframes home-booking-spin {
    to {
        transform: rotate(360deg);
    }
}

.services-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-gap) 0;
    background: var(--surface-soft);
}

.services-section__mark {
    position: absolute;
    left: 0;
    bottom: 0;
    width: clamp(420px, 46vw, 760px);
    opacity: .06;
    pointer-events: none;
    user-select: none;
}

.services-section .section-inner {
    position: relative;
    z-index: 1;
}

.section-heading {
    margin-bottom: clamp(48px, 6vw, 78px);
}

.section-heading h2,
.safety-section__heading h2,
.split-showcase h2,
.final-cta h2,
.site-footer__brand h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(40px, 5.2vw, 68px);
    font-weight: 300;
    line-height: 1.08;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(34px, 5vw, 70px) clamp(34px, 6vw, 96px);
}

.service-card {
    display: block;
    min-height: 170px;
    padding-top: 28px;
    border-top: 1px solid rgba(116, 120, 120, .35);
    transition: transform .35s cubic-bezier(.16, 1, .3, 1), border-color .35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
}

.service-card__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 14px;
}

.service-card__heading img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
    transition: transform .25s ease;
}

.service-card:hover .service-card__heading img {
    transform: scale(1.08);
}

.service-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.2;
    transition: color .25s ease;
}

.service-card:hover h3 {
    color: var(--blue);
}

.service-card p {
    margin: 0;
    color: #444748;
}

.safety-section {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.safety-section--updates {
    background:
        linear-gradient(135deg, rgba(56, 91, 127, .08), rgba(255, 255, 255, 0) 42%),
        var(--white);
    overflow: hidden;
}

.safety-section__heading {
    width: min(820px, 100%);
    margin: 0 auto clamp(52px, 6vw, 82px);
    text-align: center;
}

.safety-section__heading span {
    display: block;
    width: 96px;
    height: 4px;
    margin: 34px auto 0;
    background: var(--blue);
}

.safety-section__heading .eyebrow {
    width: auto;
    height: auto;
    margin: 0 0 18px;
    background: transparent;
}

.safety-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: start;
}

.safety-copy h3 {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.18;
}

.safety-copy p {
    margin: 0 0 22px;
    color: #444748;
    font-size: 18px;
    line-height: 1.68;
}

.safety-card {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(196, 199, 199, .55);
    border-radius: 24px;
    background: var(--background);
}

.safety-card h3 {
    margin: 0 0 26px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.safety-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.safety-card li {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(196, 199, 199, .55);
}

.safety-card li:first-child {
    padding-top: 0;
}

.safety-card li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.safety-card .material-symbols-outlined {
    color: var(--blue);
}

.updates-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.updates-actions .button--light {
    border-color: rgba(31, 31, 31, .16);
    background: transparent;
}

.updates-card {
    border-radius: 8px;
    background: #f8fafc;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.updates-form {
    display: grid;
    gap: 18px;
}

.updates-form label {
    display: grid;
    gap: 9px;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
}

.updates-form input[type="email"] {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid #dbe3ec;
    border-radius: 4px;
    outline: 0;
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    font-weight: 400;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.updates-form input[type="email"]:focus {
    border-color: var(--panel-blue);
    box-shadow: 0 0 0 3px rgba(56, 91, 127, .12);
}

.updates-form__consent {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: var(--white);
    color: #475569;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.updates-form__consent input {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--panel-blue);
}

.updates-form .button {
    width: 100%;
    border-radius: 4px;
}

.updates-form .button:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}

.updates-form__message {
    padding: 13px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: var(--white);
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

.updates-form__message.is-success {
    border-color: rgba(56, 91, 127, .25);
    background: rgba(56, 91, 127, .08);
    color: #243f5f;
}

.updates-form__message.is-error {
    border-color: rgba(138, 36, 36, .2);
    background: #fff0f0;
    color: #8a2424;
}

.updates-card__note {
    margin: 18px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.split-showcase {
    min-height: 610px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--surface);
}

.split-showcase--reverse .split-showcase__image {
    order: 2;
}

.split-showcase__image {
    min-height: 420px;
}

.split-showcase__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-showcase__copy {
    display: flex;
    align-items: center;
    padding: clamp(56px, 7vw, 96px);
    background: var(--surface);
}

.split-showcase--blue .split-showcase__copy {
    background: var(--panel-blue);
    color: var(--white);
}

.split-showcase p {
    width: min(560px, 100%);
    margin: 24px 0 34px;
    color: #444748;
    font-size: 18px;
    line-height: 1.68;
}

.split-showcase--blue p {
    color: rgba(255, 255, 255, .9);
}

.rm-category-comfort.home-update-band--pink {
    background: #9f4468;
}

.rm-category-comfort.home-update-band--blue {
    background: var(--panel-blue);
}

.home-update-band .rm-category-comfort__image {
    background-color: rgba(255, 255, 255, .08);
    background-position: center;
    background-repeat: no-repeat;
    background-size: min(70%, 520px) auto;
}

.home-update-band--blue .rm-category-comfort__image {
    background-position: center;
    background-size: cover;
}

.home-update-band--pink .rm-category-comfort__image {
    background-position: center;
    background-size: cover;
}

.home-update-band .button {
    margin-top: 34px;
}

.final-cta {
    padding: var(--section-gap) var(--page-pad);
    background: var(--background);
}

.final-cta__panel {
    position: relative;
    width: min(var(--container), 100%);
    margin: 0 auto;
    padding: clamp(52px, 7vw, 94px);
    overflow: hidden;
    border-radius: 28px;
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
}

.final-cta__panel::after {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(0, 88, 181, .2);
    filter: blur(80px);
    content: "";
}

.final-cta__panel > * {
    position: relative;
    z-index: 1;
}

.final-cta p {
    width: min(620px, 100%);
    margin: 24px auto 38px;
    color: #b8b8b8;
    font-size: 18px;
}

.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.site-footer {
    padding: var(--section-gap) var(--page-pad) 42px;
    border-top: 0;
    background: var(--charcoal);
    color: var(--white);
}

.site-footer__grid {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1.25fr repeat(3, minmax(0, .65fr));
    gap: clamp(32px, 4vw, 56px);
}

.site-footer__brand .brand__logo {
    height: 64px;
    margin-bottom: 28px;
    filter: brightness(0) invert(1);
}

.site-footer__brand p {
    width: min(330px, 100%);
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.site-footer__column h3 {
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .58);
}

.site-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__column li + li {
    margin-top: 12px;
}

.site-footer__column a,
.site-footer__meta a {
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
}

.site-footer__column a {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0;
    transition: color .25s ease, transform .25s ease;
}

.site-footer__column .nav-link::after {
    display: none;
}

.site-footer__column a:hover,
.site-footer__meta a:hover {
    color: var(--white);
}

.site-footer__column a:hover {
    transform: translateX(3px);
}

.site-footer__meta {
    width: 100%;
    margin: 58px 0 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer__meta div {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.booking-hero {
    min-height: 100vh;
    padding: 150px 0 var(--section-gap);
    background: linear-gradient(135deg, var(--surface-soft), var(--background));
}

.exam-detail-hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.exam-detail-hero__media,
.exam-detail-hero__shade {
    position: absolute;
    inset: 0;
}

.exam-detail-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exam-detail-hero__shade {
    background: linear-gradient(90deg, rgba(31, 31, 31, .88), rgba(31, 31, 31, .54), rgba(31, 31, 31, .18));
}

.exam-detail-hero__content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    padding: 170px var(--page-pad) 96px;
}

.exam-detail-hero__back {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .76);
    font-weight: 700;
}

.exam-detail-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    line-height: 1;
}

.exam-detail-hero p {
    width: min(620px, 100%);
    margin: 28px 0 34px;
    color: rgba(255, 255, 255, .86);
    font-size: 20px;
    line-height: 1.58;
}

.exam-detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.exam-detail-section {
    padding: var(--section-gap) var(--page-pad);
    background: var(--background);
}

.exam-detail-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
    gap: clamp(44px, 7vw, 110px);
    align-items: start;
}

.exam-detail-facts {
    position: sticky;
    top: 126px;
    padding: 28px;
    border: 1px solid rgba(196, 199, 199, .65);
    border-radius: 24px;
    background: var(--white);
}

.exam-detail-facts h2 {
    margin: 0 0 20px;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 500;
}

.exam-detail-facts dl,
.exam-detail-facts dd {
    margin: 0;
}

.exam-detail-facts div {
    padding: 16px 0;
    border-top: 1px solid rgba(196, 199, 199, .55);
}

.exam-detail-facts dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.exam-detail-facts dd {
    margin-top: 5px;
    font-weight: 700;
}

.exam-detail-copy {
    display: grid;
    gap: clamp(44px, 6vw, 80px);
}

.exam-detail-block h2,
.exam-detail-cta h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.08;
}

.exam-detail-block p {
    width: min(760px, 100%);
    color: #444748;
    font-size: 18px;
    line-height: 1.72;
}

.exam-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.exam-detail-grid div {
    padding: 24px;
    border: 1px solid rgba(196, 199, 199, .65);
    border-radius: 22px;
    background: var(--white);
}

.exam-detail-grid h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
}

.exam-detail-grid p {
    margin: 0;
    color: #444748;
}

.exam-detail-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.exam-detail-list li {
    padding: 16px 18px;
    border-left: 3px solid var(--panel-blue);
    background: var(--white);
}

.exam-detail-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(54px, 7vw, 92px) var(--page-pad);
    background: var(--panel-blue);
    color: var(--white);
}

.exam-detail-cta p {
    width: min(620px, 100%);
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
}

.button--outline-dark {
    border-color: rgba(31, 31, 31, .38);
    color: var(--charcoal);
    background: rgba(255, 255, 255, .42);
}

.button--outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
}

.prostate-page {
    background: var(--white);
    overflow-x: hidden;
}

.prostate-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--background);
}

.prostate-hero__media,
.prostate-hero__shade {
    position: absolute;
    inset: 0;
}

.prostate-hero__media img,
.prostate-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.prostate-diagonal-page .prostate-hero__shade,
.cardio-ct-diagonal-page .prostate-hero__shade {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .6) 0%, rgba(255, 255, 255, .3) 42%, rgba(255, 255, 255, .04) 100%),
        linear-gradient(180deg, rgba(249, 249, 249, .02), rgba(249, 249, 249, .2));
}

.prostate-hero__shade {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .66) 42%, rgba(255, 255, 255, .08) 100%),
        linear-gradient(180deg, rgba(249, 249, 249, .05), rgba(249, 249, 249, .46));
}

.prostate-hero__inner,
.prostate-intro,
.prostate-split__inner,
.prostate-section,
.prostate-bento,
.prostate-final-cta__inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--page-pad);
    padding-right: var(--page-pad);
}

.prostate-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.prostate-hero__content {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    padding: 120px var(--page-pad) 78px;
}

.prostate-hero__back {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.prostate-hero h1,
.prostate-intro h2,
.prostate-split h2,
.prostate-section__heading h2,
.prostate-bento__heading h2,
.prostate-final-cta h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0;
    color: var(--charcoal);
}

.prostate-hero h1 {
    width: min(880px, 100%);
    font-size: clamp(46px, 5.6vw, 76px);
    line-height: 1.02;
}

.prostate-hero p {
    width: 100%;
    max-width: 650px;
    margin: 28px 0 34px;
    color: #444748;
    font-size: clamp(17px, 1.8vw, 20px);
    line-height: 1.65;
}

.prostate-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.prostate-intro {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
    text-align: center;
}

.prostate-intro__inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
}

.prostate-intro h2,
.prostate-split h2,
.prostate-section__heading h2,
.prostate-bento__heading h2,
.prostate-final-cta h2 {
    font-size: clamp(36px, 4.4vw, 64px);
    line-height: 1.05;
}

.prostate-intro p {
    margin: 28px auto 0;
    color: #444748;
    font-size: 19px;
    line-height: 1.75;
}

.prostate-urology {
    width: min(100%, var(--container));
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--section-gap) var(--page-pad);
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
    background: var(--charcoal);
    box-shadow: 0 0 0 100vmax var(--charcoal);
    clip-path: inset(0 -100vmax);
    color: var(--white);
}

.prostate-urology__copy h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(38px, 4.4vw, 62px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.prostate-urology__copy p {
    max-width: 780px;
    margin-top: 30px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.78;
}

.prostate-urology__copy p + p {
    margin-top: 18px;
}

.prostate-urology__copy strong {
    color: var(--white);
    font-weight: 700;
}

.prostate-urology .eyebrow {
    color: #8bc0ff;
}

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

.prostate-urology-card {
    min-height: 188px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .1);
    color: inherit;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, box-shadow .2s ease;
}

.prostate-urology-card:hover {
    transform: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.prostate-urology-card:first-child {
    background: rgba(255, 255, 255, .16);
}

.prostate-urology-card--wide {
    grid-column: span 2;
    min-height: 150px;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, .12);
    text-align: left;
}

.prostate-urology-card .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    flex: 0 0 52px;
    border-radius: 999px;
    background: var(--white);
    color: var(--panel-blue);
    box-shadow: 0 10px 24px rgba(31, 31, 31, .08);
}

.prostate-urology-card h3 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--white);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.15;
}

.prostate-urology-card p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.5;
}

.prostate-urology--blue {
    background: var(--panel-blue);
    box-shadow: 0 0 0 100vmax var(--panel-blue);
}

.prostate-urology--blue-cards .prostate-urology-card {
    background: #4f789d;
}

.prostate-urology--blue-cards .prostate-urology-card:first-child {
    background: #2f5f90;
}

.prostate-urology--blue-cards .prostate-urology-card--wide {
    background: #234766;
}

.prostate-urology--blue-cards .prostate-urology-card .material-symbols-outlined {
    color: #385b7f;
}

.prostate-urology--blue .prostate-urology-card {
    background: rgba(255, 255, 255, .12);
}

.prostate-urology--blue .prostate-urology-card:first-child {
    background: rgba(255, 255, 255, .18);
}

.prostate-urology--light {
    background: var(--white);
    box-shadow: 0 0 0 100vmax var(--white);
    color: var(--ink);
}

.prostate-urology--light .eyebrow {
    color: var(--blue);
}

.prostate-urology--light .prostate-urology__copy h2 {
    color: var(--charcoal);
}

.prostate-urology--light .prostate-urology__copy p {
    color: #444748;
}

.prostate-urology--light .prostate-urology__copy strong {
    color: var(--charcoal);
}

.prostate-urology--light .prostate-urology-card {
    background: var(--surface-soft);
}

.prostate-urology--light .prostate-urology-card:first-child {
    background: rgba(0, 88, 181, .11);
}

.prostate-urology--light .prostate-urology-card--wide {
    background: rgba(56, 91, 127, .08);
}

.prostate-urology--light .prostate-urology-card h3 {
    color: var(--panel-blue);
}

.prostate-urology--light .prostate-urology-card p {
    color: #444748;
}

.prostate-exam-flow {
    width: min(100%, var(--container));
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--section-gap) var(--page-pad);
    background: var(--white);
    box-shadow: 0 0 0 100vmax var(--white);
    clip-path: inset(0 -100vmax);
}

.prostate-exam-flow__heading {
    max-width: 840px;
    margin-bottom: clamp(34px, 5vw, 58px);
}

.prostate-exam-flow__heading h2,
.prostate-comfort-note h2,
.prostate-prep-callout h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--charcoal);
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.prostate-exam-flow__heading p {
    max-width: 760px;
    margin: 22px 0 0;
    color: #444748;
    font-size: 18px;
    line-height: 1.7;
}

.prostate-exam-flow__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.prostate-flow-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 34px 28px 118px;
    border-radius: 24px;
    background: #f2f3f3;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.prostate-flow-card span {
    position: absolute;
    right: 14px;
    bottom: -28px;
    z-index: 0;
    color: rgba(31, 31, 31, .08);
    font-family: var(--font-display);
    font-size: clamp(150px, 13vw, 220px);
    font-weight: 700;
    line-height: .82;
    pointer-events: none;
    transform-origin: right bottom;
    transition: color .25s ease, transform .25s ease;
}

.prostate-flow-card h3,
.prostate-flow-card p {
    position: relative;
    z-index: 1;
}

.prostate-flow-card h3 {
    margin: 0 0 12px;
    color: var(--panel-blue);
    font-size: 22px;
    line-height: 1.15;
}

.prostate-flow-card p {
    margin: 0;
    color: #444748;
    font-size: 15px;
    line-height: 1.62;
}

.prostate-flow-card:hover {
    transform: translateY(-6px);
    background: #eceeee;
    box-shadow: 0 24px 60px rgba(31, 31, 31, .1);
}

.prostate-flow-card:hover span {
    color: rgba(31, 31, 31, .14);
    transform: scale(1.12);
}

.prostate-comfort-note {
    padding: var(--section-gap) 0;
    background: #f5f5f3;
}

.prostate-comfort-note__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--page-pad);
    max-width: var(--container);
}

.prostate-comfort-note__inner > div {
    max-width: 980px;
}

.prostate-comfort-note p,
.prostate-prep-callout p {
    margin: 20px 0 0;
    color: #444748;
    font-size: 17px;
    line-height: 1.7;
}

.prostate-comfort-note strong {
    color: var(--charcoal);
}

.prostate-comfort-note aside {
    padding: clamp(26px, 4vw, 38px);
    border-left: 5px solid var(--blue);
    border-radius: 0 24px 24px 0;
    background: var(--white);
    box-shadow: 0 24px 60px rgba(31, 31, 31, .08);
}

.prostate-comfort-note aside h3 {
    margin: 0 0 10px;
    color: var(--panel-blue);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.prostate-comfort-note aside p {
    margin: 0;
    color: #234766;
    font-size: 15px;
}

.prostate-widebore {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--panel-blue);
    color: var(--white);
}

.prostate-widebore__image {
    position: absolute;
    inset: 0 50% 0 0;
    background: url("/img/widebore.png") center center / cover no-repeat;
}

.prostate-widebore__inner {
    position: relative;
    z-index: 1;
    width: 50%;
    min-height: 620px;
    margin-left: auto;
    padding: clamp(56px, 7vw, 96px);
    display: flex;
    align-items: center;
}

.prostate-widebore__copy {
    width: min(560px, 100%);
}

.prostate-widebore .eyebrow {
    color: var(--white);
}

.prostate-widebore h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(38px, 4.4vw, 62px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.prostate-widebore p {
    width: min(560px, 100%);
    margin: 24px 0 34px;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.68;
}

.prostate-widebore ul {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.prostate-widebore li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .84);
    font-size: 16px;
    line-height: 1.6;
}

.prostate-widebore li .material-symbols-outlined {
    color: #c8e6ff;
    flex: 0 0 auto;
    font-size: 24px;
}

.prostate-preparation-download {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.prostate-preparation-download__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--page-pad);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(30px, 6vw, 86px);
    align-items: center;
}

.prostate-preparation-download__inner > div {
    max-width: 980px;
}

.prostate-preparation-download h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--charcoal);
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.prostate-preparation-download p {
    margin: 20px 0 0;
    color: #444748;
    font-size: 17px;
    line-height: 1.7;
}

.prostate-preparation-download__note {
    max-width: 760px;
    padding-left: 18px;
    border-left: 4px solid rgba(56, 91, 127, .3);
}

.prostate-preparation-download__button {
    gap: 10px;
    white-space: nowrap;
}

.prostate-preparation-download__button .material-symbols-outlined {
    font-size: 20px;
}

.prostate-gallery {
    padding: var(--section-gap) 0;
    background: #f5f5f3;
}

.prostate-gallery__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--page-pad);
}

.prostate-gallery__heading {
    max-width: 760px;
    margin-bottom: clamp(28px, 4vw, 42px);
}

.prostate-gallery__heading h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--charcoal);
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.prostate-gallery__heading p {
    margin: 20px 0 0;
    color: #444748;
    font-size: 17px;
    line-height: 1.7;
}

.prostate-gallery__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
    gap: 4px;
    align-items: stretch;
}

.prostate-gallery__stage {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 22px 60px rgba(31, 31, 31, .08);
}

.prostate-gallery__stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prostate-gallery__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px 30px 26px;
    background: linear-gradient(180deg, rgba(26, 28, 28, 0) 0%, rgba(26, 28, 28, .72) 100%);
    color: var(--white);
}

.prostate-gallery__caption h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.08;
}

.prostate-gallery__caption p {
    max-width: 560px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    line-height: 1.6;
}

.prostate-gallery__thumbs {
    display: grid;
    gap: 3px;
}

.prostate-gallery__thumb {
    position: relative;
    display: block;
    min-height: 0;
    aspect-ratio: 16 / 9;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(31, 31, 31, .08);
    cursor: pointer;
    text-align: left;
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.prostate-gallery__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prostate-gallery__thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(31, 31, 31, .12);
}

.prostate-gallery__thumb.is-active {
    background: #f5f5f3;
    box-shadow: 0 24px 52px rgba(31, 31, 31, .12);
}

.prostate-pirads {
    padding: var(--section-gap) 0;
    background: #f5f5f3;
}

.prostate-pirads__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--page-pad);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
}

.prostate-pirads__inner > div {
    max-width: 980px;
}

.prostate-pirads h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--charcoal);
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.prostate-pirads p {
    margin: 20px 0 0;
    color: #444748;
    font-size: 17px;
    line-height: 1.7;
}

.prostate-prep-callout {
    width: min(100%, var(--container));
    max-width: var(--container);
    margin: 0 auto;
    padding: var(--section-gap) var(--page-pad);
}

.prostate-prep-callout__inner {
    padding: clamp(34px, 5vw, 52px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    border-radius: 24px;
    background: linear-gradient(100deg, var(--panel-blue), var(--charcoal));
    color: var(--white);
}

.prostate-prep-callout .eyebrow {
    color: #c8e6ff;
}

.prostate-prep-callout h2,
.prostate-prep-callout p {
    color: var(--white);
}

.prostate-prep-callout p {
    max-width: 850px;
    opacity: .88;
}

.prostate-prep-callout small {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.5;
}

.prostate-prep-callout .button {
    white-space: nowrap;
}

.prostate-split {
    padding: var(--section-gap) 0;
}

.prostate-split--soft {
    background: #f3f3f3;
}

.prostate-split__inner {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
    gap: clamp(34px, 5vw, 76px);
    align-items: center;
}

.prostate-split__copy p {
    color: #444748;
    font-size: 18px;
    line-height: 1.7;
}

.prostate-feature-list {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.prostate-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.prostate-feature .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(0, 88, 181, .09);
    color: var(--blue);
    flex: 0 0 auto;
}

.prostate-feature p {
    margin: 0;
    color: var(--charcoal);
    font-weight: 600;
}

.prostate-split__media {
    overflow: hidden;
    border: 1px solid rgba(196, 199, 199, .72);
    border-radius: 30px;
    aspect-ratio: 4 / 3;
    background: var(--surface);
}

.prostate-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prostate-mdc {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: var(--section-gap) var(--page-pad);
    display: grid;
    grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr);
    gap: clamp(30px, 6vw, 86px);
    align-items: center;
    background: var(--panel-blue);
    box-shadow: 0 0 0 100vmax var(--panel-blue);
    clip-path: inset(0 -100vmax);
    color: var(--white);
}

.prostate-mdc .eyebrow {
    color: #c8e6ff;
}

.prostate-mdc__icon {
    display: flex;
    justify-content: center;
}

.prostate-mdc__icon .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 118px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .13);
    color: #c8e6ff;
    font-size: 52px;
}

.prostate-mdc h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(38px, 4.4vw, 62px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.prostate-mdc__copy > p {
    width: min(820px, 100%);
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    line-height: 1.72;
}

.prostate-mdc__note {
    width: min(820px, 100%);
    display: flex;
    gap: 16px;
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 28px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.prostate-mdc__note > .material-symbols-outlined {
    color: #c8e6ff;
    flex: 0 0 auto;
}

.prostate-mdc__note h3 {
    margin: 0 0 8px;
    color: var(--white);
    font-size: 18px;
}

.prostate-mdc__note p {
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 15px;
    line-height: 1.62;
}

.prostate-mdc__button {
    gap: 10px;
    margin-top: 28px;
}

.prostate-mdc__button .material-symbols-outlined {
    font-size: 20px;
}

.prostate-section,
.prostate-bento {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
}

.prostate-section__heading,
.prostate-bento__heading {
    margin-bottom: clamp(34px, 5vw, 62px);
}

.prostate-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.prostate-step-card,
.prostate-bento-card {
    border: 1px solid rgba(196, 199, 199, .72);
    border-radius: 30px;
    background: var(--white);
}

.prostate-step-card {
    min-height: 310px;
    padding: 34px;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.prostate-step-card:hover {
    border-color: rgba(0, 88, 181, .65);
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(31, 31, 31, .08);
}

.prostate-step-card .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--blue);
}

.prostate-step-card h3,
.prostate-bento-card h3 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    color: var(--charcoal);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.1;
}

.prostate-step-card p,
.prostate-bento-card p {
    margin: 0;
    color: #444748;
    font-size: 16px;
    line-height: 1.65;
}

.prostate-bento {
    background: var(--white);
}

.prostate-bento__heading {
    text-align: center;
}

.prostate-bento__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(230px, auto);
    gap: 18px;
}

.prostate-bento-card {
    padding: 30px;
}

.prostate-bento-card--primary {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background: var(--blue);
    color: var(--white);
}

.prostate-bento-card--primary::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -90px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
}

.prostate-bento-card .material-symbols-outlined {
    margin-bottom: 24px;
    color: var(--blue);
    font-size: 42px;
}

.prostate-bento-card--primary .material-symbols-outlined,
.prostate-bento-card--primary h3,
.prostate-bento-card--primary p {
    position: relative;
    color: var(--white);
}

.prostate-bento-card--primary h3 {
    font-size: clamp(34px, 3.7vw, 52px);
}

.prostate-bento-card--primary p {
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
}

.prostate-final-cta {
    padding: var(--section-gap) 0;
    background: var(--panel-blue);
    color: var(--white);
    text-align: center;
}

.prostate-final-cta .eyebrow {
    color: var(--white);
}

.prostate-final-cta h2 {
    color: var(--white);
}

.prostate-final-cta p {
    width: 100%;
    max-width: 720px;
    margin: 24px auto 34px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.7;
}

body.cardio-ct-page,
.cardio-page {
    --panel-blue: #c85f16;
}

.cardio-page .eyebrow {
    color: #f47b20;
}

.cardio-page .prostate-widebore .eyebrow,
.cardio-page .prostate-final-cta .eyebrow {
    color: var(--white);
}

.cardio-page .button--blue {
    background: #c85f16;
}

.cardio-page .button--blue:hover {
    background: #a84f12;
}

.cardio-page .prostate-urology--blue-cards .prostate-urology-card {
    background: #dc7a24;
}

.cardio-page .prostate-urology--blue-cards .prostate-urology-card:first-child {
    background: #c85f16;
}

.cardio-page .prostate-urology--blue-cards .prostate-urology-card--wide {
    background: #8f3f14;
}

.cardio-page .prostate-urology--blue-cards .prostate-urology-card .material-symbols-outlined {
    color: #c85f16;
}

.cardio-page .prostate-flow-card span {
    color: rgba(200, 95, 22, .16);
}

.cardio-page .prostate-flow-card:hover span {
    color: rgba(200, 95, 22, .24);
}

.cardio-indications {
    padding: var(--section-gap) 0;
    background: #f5f5f3;
}

.cardio-indications__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--page-pad);
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: clamp(30px, 6vw, 86px);
    align-items: start;
}

.cardio-indications__copy h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--charcoal);
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.cardio-indications__copy p {
    margin: 20px 0 0;
    color: #444748;
    font-size: 17px;
    line-height: 1.7;
}

.cardio-indications__list {
    display: grid;
    align-self: start;
    padding-top: 8px;
}

.cardio-indications__list p {
    margin: 0 0 16px;
    color: #444748;
    font-size: 17px;
    line-height: 1.6;
}

.cardio-indications__list ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cardio-indications__list li {
    position: relative;
    padding: 7px 0 7px 28px;
    color: var(--charcoal);
    font-size: 18px;
    line-height: 1.45;
}

.cardio-indications__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 8px;
    background: #c85f16;
}

.cardio-indications__list li:first-child {
    padding-top: 7px;
}

.cardio-indications__list h3 {
    margin: 0;
}

.prostate-page:not(.cardio-page) .cardio-indications__list li::before {
    background: var(--panel-blue);
}

.cardio-page .prostate-widebore {
    background: #c85f16;
}

.cardio-page .prostate-widebore__image {
    background: url("/img/doppiotubo.png") center center / cover no-repeat;
}

.cardio-page .prostate-widebore li .material-symbols-outlined {
    color: #ffd9b8;
}

.cardio-page .prostate-preparation-download__note {
    border-left-color: rgba(200, 95, 22, .32);
}

.cardio-page .prostate-final-cta {
    background: #c85f16;
}

.announcement-bar + .site-header + main .booking-hero {
    padding-top: 188px;
}

.about {
    background: var(--white);
    overflow-x: hidden;
}

.about-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--charcoal);
    color: var(--white);
}

.about-hero__media,
.about-hero__shade {
    position: absolute;
    inset: 0;
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__shade {
    background:
        linear-gradient(180deg, rgba(26, 28, 28, .2) 0%, rgba(26, 28, 28, .72) 100%),
        linear-gradient(90deg, rgba(26, 28, 28, .72), rgba(26, 28, 28, .08));
}

.about-hero__content {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    padding: 140px var(--page-pad) 86px;
}

.about-hero .eyebrow {
    color: #9ed0ff;
}

.about-hero h1,
.about-intro h2,
.about-split h2,
.about-values h2,
.about-certification h2,
.about-cta h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0;
}

.about-hero h1 {
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
}

.about-hero p {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.65;
}

.about-intro,
.about-values {
    padding: var(--section-gap) 0;
    background: #f5f5f3;
}

.about-intro__inner,
.about-values__heading,
.about-values__grid,
.about-certification,
.about-cta__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0 var(--page-pad);
}

.about-intro__inner {
    max-width: 1080px;
}

.about-intro h2,
.about-values h2,
.about-certification h2,
.about-cta h2 {
    color: var(--charcoal);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
}

.about-intro p {
    max-width: 850px;
    margin: 26px 0 0;
    color: #444748;
    font-size: 19px;
    line-height: 1.75;
}

.about-group {
    padding: 0 var(--page-pad) var(--section-gap);
    background: #f5f5f3;
}

.about-group__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 90px);
    align-items: start;
}

.about-group__copy {
    max-width: 660px;
}

.about-group__copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(36px, 4.6vw, 62px);
    font-weight: 400;
    line-height: 1.02;
}

.about-group__copy p {
    margin: 4px 0 34px;
    color: #444748;
    font-size: 18px;
    line-height: 1.75;
}

.about-group__cards {
    display: grid;
    gap: 12px;
}

.about-group__cards article {
    padding: 24px;
    background: var(--white);
    border: 1px solid rgba(31, 31, 31, .1);
}

.about-group__cards span {
    display: block;
    margin-bottom: 12px;
    color: var(--panel-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.about-group__cards h3 {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.08;
}

.about-group__cards p {
    margin: 0;
    color: #55595a;
    font-size: 15px;
    line-height: 1.55;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 720px;
    background: var(--white);
}

.about-split__media {
    min-height: 520px;
}

.about-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-split__copy {
    padding: clamp(54px, 7vw, 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-split h2 {
    color: var(--charcoal);
    font-size: clamp(38px, 4.6vw, 64px);
    line-height: 1.06;
}

.about-split p {
    margin: 4px 0 34px;
    color: #444748;
    font-size: 18px;
    line-height: 1.72;
}

.about-split ul {
    display: grid;
    gap: 12px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.about-split li {
    position: relative;
    padding-left: 28px;
    color: var(--charcoal);
    font-size: 17px;
    line-height: 1.55;
}

.about-split li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--panel-blue);
}

.about-values__heading {
    margin-bottom: clamp(34px, 5vw, 64px);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.about-values article {
    min-height: 310px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(31, 31, 31, .08);
}

.about-values .material-symbols-outlined {
    width: 54px;
    height: 54px;
    margin-bottom: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(56, 91, 127, .12);
    color: var(--panel-blue);
}

.about-values h3 {
    margin: 34px 0 10px;
    color: var(--charcoal);
    font-size: 24px;
}

.about-values p {
    margin: 0;
    color: #55595a;
    font-size: 16px;
    line-height: 1.6;
}

.about-certification {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}

.about-certification p {
    max-width: 760px;
    margin: 4px 0 34px;
    color: #444748;
    font-size: 18px;
    line-height: 1.75;
}

.about-certification__image {
    max-height: 640px;
    overflow: hidden;
    background: #f5f5f3;
    box-shadow: 0 22px 60px rgba(31, 31, 31, .1);
}

.about-certification__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cta {
    padding: var(--section-gap) 0;
    background: var(--panel-blue);
    color: var(--white);
    text-align: center;
}

.about-cta .eyebrow,
.about-cta h2 {
    color: var(--white);
}

.about-cta p {
    max-width: 760px;
    margin: 22px auto 34px;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
    line-height: 1.7;
}

.about-statement {
    padding: clamp(82px, 10vw, 140px) var(--page-pad);
    background: #f5f5f3;
}

.about-statement__inner {
    width: min(100%, 1160px);
    margin: 0 auto;
}

.about-statement h2,
.about-experience h2,
.about-group-band h2,
.about-quality h2 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(38px, 5.2vw, 72px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: 0;
}

.about-statement p {
    max-width: 880px;
    margin: 28px 0 0;
    color: #444748;
    font-size: clamp(18px, 1.8vw, 21px);
    line-height: 1.75;
}

.about-statement h2 strong {
    font-weight: 700;
}

.about-experience {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    min-height: 760px;
    background: var(--white);
}

.about-experience__image {
    min-height: 560px;
    background: #ececea;
}

.about-experience__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience__copy {
    padding: clamp(58px, 7vw, 104px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-experience__copy p,
.about-quality__copy p,
.about-group-band__copy p {
    margin: 4px 0 34px;
    color: #444748;
    font-size: 18px;
    line-height: 1.72;
}

.about-experience__points {
    margin-top: 38px;
    display: grid;
    gap: 18px;
}

.about-experience__points article {
    padding-top: 18px;
    border-top: 1px solid rgba(31, 31, 31, .14);
}

.about-experience__points h3 {
    margin: 0 0 8px;
    color: var(--charcoal);
    font-size: 20px;
    font-weight: 650;
    letter-spacing: 0;
}

.about-experience__points p {
    margin: 0;
    color: #5b5f60;
    font-size: 15px;
    line-height: 1.6;
}

.about-group-band {
    padding: clamp(78px, 9vw, 124px) var(--page-pad);
    background: var(--panel-blue);
    color: var(--white);
}

.about-group-band__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
    gap: clamp(42px, 7vw, 110px);
    align-items: end;
}

.about-group-band .eyebrow,
.about-group-band h2 {
    color: var(--white);
}

.about-group-band__copy p {
    max-width: 740px;
    color: rgba(255, 255, 255, .82);
}

.about-group-band__locations {
    display: grid;
    gap: 10px;
}

.about-group-band__locations article {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
}

.about-group-band__locations article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.about-group-band__locations span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about-group-band__locations strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 300;
    line-height: 1.1;
}

.about-quality {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: clamp(82px, 10vw, 140px) var(--page-pad);
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .62fr);
    gap: clamp(42px, 7vw, 110px);
    align-items: center;
    background: var(--white);
}

.about-quality__copy .button {
    margin-top: 34px;
}

.about-quality__image {
    min-height: 420px;
    background: #f5f5f3;
    overflow: hidden;
}

.about-quality__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cta__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.prestazioni-main,
.preparazioni-main {
    background: #f5f5f3;
}

.prestazioni-page--tac {
    --panel-blue: #c85f16;
}

.prestazioni-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 150px var(--page-pad) 82px;
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}

.prestazioni-hero--rm {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    padding: 168px var(--page-pad) 86px;
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url("/img/magneton_sola.png") center right / cover no-repeat;
    color: var(--white);
}

.prestazioni-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
}

.prestazioni-hero--rm .prestazioni-hero__inner,
.prestazioni-hero--tac .prestazioni-hero__inner {
    width: min(100%, 980px);
}

.prestazioni-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    max-width: 920px;
    padding-right: clamp(10px, 2vw, 24px);
    padding-top: clamp(18px, 3vh, 36px);
}

.prestazioni-hero--rm .prestazioni-hero__copy,
.prestazioni-hero--tac .prestazioni-hero__copy {
    align-self: center;
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: left;
    align-items: flex-start;
    max-width: 760px;
}

.prestazioni-hero--rm .prestazioni-hero__copy {
    max-width: 900px;
}

.prestazioni-hero .eyebrow {
    color: #9cc5ef;
}

.prestazioni-hero--rm .eyebrow,
.prestazioni-hero--tac .eyebrow {
    color: #9cc5ef;
}

.prestazioni-hero--rm .eyebrow {
    color: #6fa8d6;
}

.prestazioni-hero--tac .eyebrow {
    color: #f47b20;
}

.prestazioni-hero h1 {
    max-width: 920px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 400;
    line-height: .98;
}

.prestazioni-hero p {
    max-width: 710px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(18px, 2vw, 22px);
}

.prestazioni-hero--rm h1,
.prestazioni-hero--tac h1 {
    color: var(--white);
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.02;
}

@media (min-width: 900px) {
    .prestazioni-hero--tac h1 {
        max-width: none;
        font-size: clamp(34px, 4vw, 56px);
        white-space: nowrap;
    }
}

.prestazioni-hero--rm p,
.prestazioni-hero--tac p {
    color: rgba(255, 255, 255, .82);
}

.prestazioni-hero--rm .prestazioni-hero__lead,
.prestazioni-hero--tac .prestazioni-hero__lead {
    max-width: 860px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 300;
    line-height: 1.22;
}

.prestazioni-hero__lead strong {
    color: #6fa8d6;
    font-weight: 800;
}

.prestazioni-hero--tac .prestazioni-hero__lead strong {
    color: #f47b20;
}

.prestazioni-hero__anchors {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .26);
}

.prestazioni-hero__anchors a,
.prestazioni-hero__anchors button {
    display: inline-flex;
    align-items: center;
    min-height: 58px;
    padding: 0 34px 0 0;
    margin-right: 30px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.prestazioni-hero__anchors a:hover span,
.prestazioni-hero__anchors button:hover span {
    color: #9cc5ef;
}

.prestazioni-hero--tac .prestazioni-hero__anchors a:hover span,
.prestazioni-hero--tac .prestazioni-hero__anchors button:hover span {
    color: #f47b20;
}

.prestazioni-areas,
.prestazioni-category,
.preparazioni-list {
    padding: var(--section-gap) var(--page-pad);
}

.prestazioni-areas__grid {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.prestazioni-area a {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    background: var(--white);
    color: var(--charcoal);
    transition: transform .25s ease, box-shadow .25s ease;
}

.prestazioni-area a:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .12);
}

.prestazioni-area__number {
    position: absolute;
    right: 20px;
    bottom: -22px;
    color: rgba(56, 91, 127, .12);
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 700;
    line-height: .8;
}

.prestazioni-area h2 {
    max-width: 300px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.05;
}

.prestazioni-area p {
    margin: 18px 0 0;
    color: #55595a;
    font-size: 16px;
}

.prestazioni-area ul {
    display: grid;
    gap: 7px;
    margin: auto 0 0;
    padding: 30px 0 0;
    list-style: none;
}

.prestazioni-area li {
    position: relative;
    padding-left: 16px;
    color: #333737;
    font-size: 15px;
}

.prestazioni-area li::before {
    position: absolute;
    top: .62em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--panel-blue);
    content: "";
}

.prestazioni-category__inner,
.preparazioni-list__inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.prestazioni-category--rm .prestazioni-category__inner {
    width: min(100%, var(--container));
}

.prestazioni-service,
.preparazione-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
    border-top: 1px solid rgba(31, 31, 31, .16);
}

.prestazioni-service:last-child,
.preparazione-card:last-of-type {
    border-bottom: 1px solid rgba(31, 31, 31, .16);
}

.prestazioni-service h2,
.preparazione-card h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.08;
}

.prestazioni-service p {
    max-width: 620px;
    margin: 10px 0 0;
    color: #55595a;
    font-size: 17px;
}

.rm-category-districts h2,
.rm-district-trust h2,
.rm-district-guide h2,
.rm-category-benefits h2,
.rm-category-patient h2,
.rm-category-specialist-heading h2,
.rm-category-prep h2 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: 0;
}

.rm-district-trust {
    padding: clamp(54px, 7vw, 88px) var(--page-pad);
    background: #f5f5f3;
}

.rm-district-trust__inner {
    width: min(100%, 1040px);
    margin: 0 auto;
    display: grid;
    justify-items: center;
    text-align: center;
}

.rm-district-trust__inner,
.rm-district-trust__grid,
.rm-district-trust__item,
.rm-district-trust__item > div,
.rm-district-guide__inner,
.rm-district-guide__grid,
.rm-district-card,
.rm-district-card__body {
    min-width: 0;
}

.rm-district-trust__heading {
    display: grid;
    justify-items: center;
}

.rm-district-trust__heading h2 {
    max-width: 820px;
}

.rm-district-trust__heading p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #55595a;
    font-size: 17px;
    line-height: 1.66;
}

.rm-district-trust__lead {
    max-width: 960px;
    margin-top: 28px;
    color: #333737;
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.08;
}

.rm-district-trust__lead strong {
    color: var(--panel-blue);
    font-weight: 800;
}

.rm-district-trust__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.rm-district-trust__links a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(31, 31, 31, .16);
    background: rgba(255, 255, 255, .56);
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.rm-district-trust__links a:hover {
    border-color: var(--panel-blue);
    background: rgba(255, 255, 255, .88);
    color: var(--panel-blue);
}

.rm-district-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(31, 31, 31, .14);
    border-left: 1px solid rgba(31, 31, 31, .14);
}

.rm-district-trust__item {
    scroll-margin-top: 108px;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    min-height: 174px;
    padding: 24px;
    border-right: 1px solid rgba(31, 31, 31, .14);
    border-bottom: 1px solid rgba(31, 31, 31, .14);
    background: rgba(255, 255, 255, .58);
}

.rm-district-trust__item .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: var(--panel-blue);
    color: var(--white);
    font-size: 24px;
}

.rm-district-trust__item h3 {
    margin: 0;
    color: var(--charcoal);
    font-size: 20px;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.rm-district-trust__item p {
    margin: 10px 0 0;
    color: #55595a;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.rm-district-guide {
    padding: clamp(76px, 9vw, 124px) var(--page-pad);
    background: var(--white);
}

.rm-district-guide__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 60px);
    align-items: start;
}

.rm-district-guide__heading {
    max-width: 520px;
    margin-bottom: 0;
}

.rm-district-guide__heading p {
    max-width: 780px;
    margin: 22px 0 0;
    color: #55595a;
    font-size: 18px;
    line-height: 1.7;
}

.rm-district-guide__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rm-district-guide__tags li {
    min-width: 0;
}

.rm-district-guide__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid rgba(56, 91, 127, .22);
    border-radius: 999px;
    background: #f7f7f5;
    color: #385b7f;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.15;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.rm-district-guide__tag img {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(21%) saturate(1195%) hue-rotate(169deg) brightness(88%) contrast(88%);
    transition: filter .2s ease;
}

.rm-district-guide__tag:hover {
    border-color: var(--panel-blue);
    background: var(--panel-blue);
    color: var(--white);
    transform: translateY(-1px);
}

.rm-district-guide__tag:hover img {
    filter: brightness(0) invert(1);
}

.rm-district-guide__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
    border-top: 1px solid rgba(31, 31, 31, .14);
    min-width: 0;
}

.rm-district-tag-group {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    min-height: 0;
    padding: 14px 12px 14px 0;
    border-bottom: 1px solid rgba(31, 31, 31, .14);
    background: transparent;
}

.rm-district-tag-group--note {
    display: block;
    padding: 14px 12px 0 0;
    border-bottom: 0;
}
.rm-district-tag-group__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #eef2f4;
    box-shadow: none;
}

.rm-district-tag-group__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(21%) saturate(1195%) hue-rotate(169deg) brightness(88%) contrast(88%);
}

.rm-district-tag-group ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rm-district-tag-group li {
    min-width: 0;
    color: #55595a;
    font-size: 15px;
    line-height: 1.45;
}

.rm-district-tag-group li:not(:last-child)::after {
    margin: 0 10px;
    color: rgba(31, 31, 31, .38);
    content: "/";
}

.rm-district-tag-group li a {
    color: var(--charcoal);
    font-weight: 400;
    text-decoration: none;
    text-underline-offset: 4px;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.rm-district-tag-group__static {
    color: var(--charcoal);
    font-weight: 400;
    white-space: nowrap;
}

.rm-district-tag-group li a:hover,
.rm-district-tag-group li a:focus-visible {
    color: var(--panel-blue);
    text-decoration: underline;
}

.rm-district-guide__note {
    grid-column: 1 / -1;
}

.rm-district-guide--tac .eyebrow,
.rm-district-guide--tac .rm-district-tag-group li a:hover,
.rm-district-guide--tac .rm-district-tag-group li a:focus-visible {
    color: #f47b20;
}

.rm-district-guide--tac .rm-district-tag-group__icon img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(92%) saturate(1114%) hue-rotate(354deg) brightness(98%) contrast(95%);
}

.rm-district-guide--tac .rm-district-guide__note .material-symbols-outlined {
    color: #f47b20;
}

.rm-district-guide--tac .button--blue {
    background: #f47b20;
}

.rm-specialist-card-grid--tac {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prestazioni-page--tac .rm-specialist-card__icon {
    filter: brightness(0) saturate(100%) invert(48%) sepia(92%) saturate(1114%) hue-rotate(354deg) brightness(98%) contrast(95%);
}

.prestazioni-page--tac .rm-specialist-card a {
    color: #f47b20;
}

body.rm-exam-choice-open {
    overflow: hidden;
}

.rm-exam-choice-modal[hidden] {
    display: none;
}

.rm-exam-choice-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: var(--page-pad);
}

.rm-exam-choice-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(31, 31, 31, .48);
    backdrop-filter: blur(6px);
}

.rm-exam-choice-modal__panel {
    position: relative;
    width: min(100%, 560px);
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(31, 31, 31, .12);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(31, 31, 31, .22);
}

.rm-exam-choice-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(31, 31, 31, .14);
    border-radius: 999px;
    background: var(--white);
    color: var(--charcoal);
    cursor: pointer;
}

.rm-exam-choice-modal__panel h2 {
    max-width: 420px;
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 300;
    line-height: 1.04;
}

.rm-exam-choice-modal__panel p {
    max-width: 460px;
    margin: 18px 0 0;
    color: #55595a;
    font-size: 16px;
    line-height: 1.62;
}

.rm-exam-choice-modal__actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.rm-exam-choice-modal__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(56, 91, 127, .28);
    border-radius: 999px;
    background: var(--white);
    color: var(--panel-blue);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.rm-exam-choice-modal__actions button:hover,
.rm-exam-choice-modal__actions button:focus-visible {
    border-color: var(--panel-blue);
    background: var(--panel-blue);
    color: var(--white);
    transform: translateY(-1px);
}

body.rm-faq-open {
    overflow: hidden;
}

.rm-faq-modal__panel {
    width: min(100%, 680px);
    max-height: min(760px, calc(100vh - 40px));
    overflow: auto;
}

.rm-faq-modal__list {
    display: grid;
    gap: 10px;
    margin: 28px 0;
}

.rm-faq-modal__list details {
    border: 1px solid rgba(31, 31, 31, .12);
    border-radius: 14px;
    background: #f7f7f5;
    overflow: hidden;
}

.rm-faq-modal__list summary {
    cursor: pointer;
    padding: 16px 18px;
    color: var(--charcoal);
    font-weight: 750;
    list-style: none;
}

.rm-faq-modal__list summary::-webkit-details-marker {
    display: none;
}

.rm-faq-modal__list summary::after {
    float: right;
    color: var(--panel-blue);
    content: "+";
}

.rm-faq-modal__list details[open] summary::after {
    content: "-";
}

.rm-faq-modal__list details p {
    margin: 0;
    padding: 0 18px 18px;
    color: #55595a;
    font-size: 15px;
    line-height: 1.58;
}

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

.rm-district-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 24px;
    min-height: 270px;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(31, 31, 31, .12);
    background: #f7f7f5;
}

.rm-district-card:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 230px;
}

.rm-district-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(31, 31, 31, .08);
}

.rm-district-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(21%) saturate(1195%) hue-rotate(169deg) brightness(88%) contrast(88%);
}

.rm-district-card h3 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.04;
}

.rm-district-card p {
    margin: 16px 0 0;
    color: #55595a;
    font-size: 16px;
    line-height: 1.62;
}

.rm-district-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.rm-district-card li {
    min-width: 0;
}

.rm-district-card li a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(56, 91, 127, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: #385b7f;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.rm-district-card li a:hover {
    border-color: var(--panel-blue);
    background: var(--panel-blue);
    color: var(--white);
    transform: translateY(-1px);
}

.rm-district-guide__note {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    padding: 22px 24px;
    background: var(--charcoal);
    color: var(--white);
}

.rm-district-guide__note .material-symbols-outlined {
    color: #9cc5ef;
    font-size: 30px;
}

.rm-district-guide__note p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    line-height: 1.55;
}

.rm-district-guide__note-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.rm-district-guide__note-actions .button {
    min-height: 44px;
    padding: 0 18px;
    white-space: nowrap;
}

.rm-category-districts--compact {
    padding-top: 54px;
}

.rm-category-benefits {
    padding: clamp(72px, 8vw, 112px) var(--page-pad);
    background: #f5f5f3;
}

.rm-category-benefits__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 74px);
    align-items: start;
}

.rm-category-benefits__heading h2 {
    max-width: 620px;
    color: var(--charcoal);
}

.prestazioni-page--rm-alto-campo .rm-category-benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.prestazioni-page--rm-alto-campo .rm-category-benefit-card {
    min-height: 188px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 24px;
    border-radius: 30px;
    background: #2f5f90;
    border-color: transparent;
    text-align: center;
}

.prestazioni-page--rm-alto-campo .rm-category-benefit-card:nth-child(2) {
    background: #4f789d;
}

.prestazioni-page--rm-alto-campo .rm-category-benefit-card:nth-child(3) {
    background: #234766;
}

.prestazioni-page--rm-alto-campo .rm-category-benefit-card:hover {
    transform: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.prestazioni-page--rm-alto-campo .rm-category-benefit-card .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    flex: 0 0 52px;
    border-radius: 999px;
    background: var(--white);
    color: #385b7f;
    box-shadow: 0 10px 24px rgba(31, 31, 31, .08);
}

.prestazioni-page--rm-alto-campo .rm-category-benefit-card h3 {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.08;
}

.prestazioni-page--rm-alto-campo .rm-category-benefit-card p {
    font-size: 14px;
    line-height: 1.5;
}

.prestazioni-page--tac .rm-category-benefits__heading h2 {
    color: var(--charcoal);
}

.prestazioni-page--tac .rm-category-benefits .eyebrow {
    color: #f47b20;
}

.prestazioni-page--tac .rm-category-benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.prestazioni-page--tac .rm-category-benefit-card {
    min-height: 188px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 24px;
    border-radius: 30px;
    background: #c85f16;
    border-color: transparent;
    text-align: center;
}

.prestazioni-page--tac .rm-category-benefit-card:nth-child(2) {
    background: #dc7a24;
}

.prestazioni-page--tac .rm-category-benefit-card:nth-child(3) {
    background: #8f3f14;
}

.prestazioni-page--tac .rm-category-benefit-card:hover {
    transform: none;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.prestazioni-page--tac .rm-category-benefit-card:nth-child(1):hover {
    background: #c85f16;
}

.prestazioni-page--tac .rm-category-benefit-card:nth-child(2):hover {
    background: #dc7a24;
}

.prestazioni-page--tac .rm-category-benefit-card:nth-child(3):hover {
    background: #8f3f14;
}

.prestazioni-page--tac .rm-category-benefit-card .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    flex: 0 0 52px;
    border-radius: 999px;
    background: var(--white);
    color: #c85f16;
    box-shadow: 0 10px 24px rgba(31, 31, 31, .08);
}

.prestazioni-page--tac .rm-category-benefit-card h3 {
    margin-bottom: 0;
    font-size: 22px;
}

.prestazioni-page--tac .rm-category-benefit-card p {
    font-size: 14px;
    line-height: 1.5;
}

.rm-category-benefits__grid {
    display: grid;
    gap: 12px;
}

.rm-category-benefit-card {
    position: relative;
    display: block;
    min-height: 154px;
    padding: 26px 62px 26px 26px;
    background: var(--panel-blue);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    color: var(--white);
    overflow: hidden;
    transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.rm-category-benefit-card:hover {
    background: #2f5f8b;
    box-shadow: 0 22px 52px rgba(47, 95, 139, .24);
    transform: translateY(-3px);
}

.rm-category-benefits h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: var(--white);
    font-size: 21px;
    font-weight: 650;
    line-height: 1.18;
}

.rm-category-benefits p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.65;
}

.rm-category-benefit-card__arrow {
    position: absolute;
    right: 24px;
    bottom: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 22px;
    transition: transform .24s ease;
}

.rm-category-benefit-card:hover .rm-category-benefit-card__arrow {
    transform: translateX(4px);
}

.rm-category-visual {
    padding: clamp(72px, 8vw, 112px) var(--page-pad);
    background: #f5f5f3;
}

.rm-category-visual__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
}

.rm-category-visual__heading {
    max-width: 780px;
    margin-bottom: clamp(28px, 4vw, 44px);
}

.rm-category-visual__heading h2 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: 0;
    scroll-margin-top: 110px;
}

.rm-category-visual__heading p {
    margin: 20px 0 0;
    color: #55595a;
    font-size: 18px;
    line-height: 1.68;
}

.rm-category-visual__carousel {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--charcoal);
}

.rm-category-visual__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
}

.rm-category-visual__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.rm-category-visual__slide img,
.rm-category-visual__slide video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.rm-category-visual__slide::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .78) 0%, rgba(26, 28, 28, .46) 42%, rgba(26, 28, 28, .1) 100%),
        linear-gradient(180deg, rgba(26, 28, 28, 0) 40%, rgba(26, 28, 28, .72) 100%);
    content: "";
}

.rm-category-visual__caption {
    position: absolute;
    left: clamp(24px, 5vw, 72px);
    bottom: clamp(32px, 6vw, 86px);
    z-index: 1;
    width: min(620px, calc(100% - 48px));
    color: var(--white);
}

.prestazioni-hero--tac {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    padding: 168px var(--page-pad) 86px;
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url("/img/cti.png") center right / cover no-repeat;
    color: var(--white);
}

.rm-category-visual__caption span {
    display: block;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
}

.rm-category-visual__caption h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.02;
}

.rm-category-visual__caption p {
    max-width: 560px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.62;
}

.rm-category-visual__controls {
    position: absolute;
    right: clamp(18px, 4vw, 48px);
    bottom: clamp(18px, 4vw, 48px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
}

.rm-category-visual__controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .54);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.rm-category-visual__controls button:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-2px);
}

.rm-category-visual__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rm-category-visual__dots button {
    width: 9px;
    height: 9px;
    border: 0;
    background: rgba(255, 255, 255, .42);
}

.rm-category-visual__dots button.is-active {
    width: 30px;
    background: var(--white);
}

.rm-category-comfort {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--panel-blue);
    color: var(--white);
    scroll-margin-top: 88px;
}

.rm-category-comfort__image {
    position: absolute;
    inset: 0 50% 0 0;
    background: url("/img/widebore.png") center center / cover no-repeat;
}

.rm-category-comfort__inner {
    position: relative;
    z-index: 1;
    width: 50%;
    min-height: 620px;
    margin-left: auto;
    padding: clamp(56px, 7vw, 96px);
    display: flex;
    align-items: center;
}

.rm-category-comfort--reverse .rm-category-comfort__image {
    inset: 0 0 0 50%;
}

.rm-category-comfort--reverse .rm-category-comfort__inner {
    margin-left: 0;
    margin-right: auto;
    padding-left: max(var(--page-pad), calc((100vw - var(--container)) / 2 - 8px));
}

.rm-category-comfort--gray {
    background: #385b7f;
}

.rm-category-comfort--gray .rm-category-comfort__inner {
    align-items: flex-start;
    padding-top: var(--section-gap);
}

.rm-category-comfort--gray li .material-symbols-outlined {
    color: #c8e6ff;
}

.prestazioni-page--tac .prestazioni-category--rm .eyebrow,
.prestazioni-page--tac .rm-category-patient .eyebrow,
.prestazioni-page--tac .rm-category-visual .eyebrow {
    color: #f47b20;
}

.rm-category-comfort__copy {
    width: min(560px, 100%);
}

.rm-category-comfort .eyebrow {
    color: var(--white);
}

.rm-category-comfort h2 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(38px, 4.4vw, 62px);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.rm-category-comfort p {
    width: min(560px, 100%);
    margin: 24px 0 34px;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.68;
}

.rm-category-comfort ul {
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rm-category-comfort li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: rgba(255, 255, 255, .84);
    font-size: 16px;
    line-height: 1.6;
}

.rm-category-comfort li .material-symbols-outlined {
    color: #c8e6ff;
    flex: 0 0 auto;
    font-size: 24px;
}

.rm-category-comfort li span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.rm-category-districts {
    position: relative;
    padding: 64px var(--page-pad) 54px;
    overflow: hidden;
    background: var(--charcoal);
    color: var(--white);
}

.rm-category-districts__media,
.rm-category-districts__shade {
    position: absolute;
    inset: 0;
}

.rm-category-districts__media {
    background: url("/img/3duomo.png") center / cover no-repeat;
}

.rm-category-districts__shade {
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .86), rgba(26, 28, 28, .58)),
        linear-gradient(180deg, rgba(26, 28, 28, .18), rgba(26, 28, 28, .72));
}

.rm-category-districts__inner {
    position: relative;
    z-index: 1;
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 60px);
    align-items: start;
}

.rm-category-districts .eyebrow,
.rm-category-districts h2 {
    color: var(--white);
}

.rm-category-districts__content {
    display: grid;
    gap: 16px;
    align-content: start;
    justify-items: end;
}

.rm-category-districts__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rm-category-districts__list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 12px 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
    color: rgba(255, 255, 255, .92);
    font-size: 17px;
    line-height: 1.45;
    transition: color .2s ease;
}

.rm-category-districts__list li::before {
    display: none;
}

.rm-category-districts__list img {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    margin-top: 2px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .95;
    transition: transform .2s ease, opacity .2s ease;
}

.rm-category-districts__list li:hover {
    color: #4b82c4;
}

.rm-category-districts__list li:hover img {
    opacity: 1;
    transform: scale(1.08);
}

.rm-category-districts__cta {
    grid-column: 1 / -1;
    justify-self: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 2px auto 0;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    animation: scroll-bob 1.7s ease-in-out infinite;
    text-align: center;
}

.rm-category-districts__cta .material-symbols-outlined {
    font-size: 24px;
}

.prestazioni-category--rm {
    padding: clamp(62px, 7vw, 92px) var(--page-pad);
    background:
        linear-gradient(90deg, rgba(245, 245, 243, .94), rgba(245, 245, 243, .82)),
        url("/img/3duomo.png") center / cover no-repeat;
}

.rm-category-specialist-heading {
    display: grid;
    justify-items: start;
    max-width: 720px;
    margin-bottom: clamp(26px, 4vw, 38px);
    text-align: left;
}

.rm-category-specialist-heading h2 {
    max-width: 640px;
    font-size: clamp(34px, 4vw, 54px);
    scroll-margin-top: 110px;
}

.rm-category-specialist-heading p {
    max-width: 560px;
    margin: 16px 0 0;
    color: #4d5152;
    font-size: 16px;
    line-height: 1.62;
}

.rm-specialist-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.rm-specialist-card {
    position: relative;
    display: grid;
    align-content: space-between;
    min-height: 230px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(31, 31, 31, .12);
    border-radius: 30px;
    background: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.rm-specialist-card:hover {
    border-color: rgba(56, 91, 127, .28);
    box-shadow: 0 18px 38px rgba(31, 31, 31, .08);
    transform: translateY(-2px);
}

.rm-specialist-card:hover .rm-specialist-card__icon {
    opacity: .24;
    transform: translate(-4px, -4px) scale(1.06);
}
.rm-specialist-card__icon {
    position: absolute;
    right: 18px;
    bottom: 14px;
    width: 96px;
    height: 96px;
    object-fit: contain;
    opacity: .16;
    filter: brightness(0) saturate(100%) invert(35%) sepia(21%) saturate(1195%) hue-rotate(169deg) brightness(88%) contrast(88%);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.rm-specialist-card > div,
.rm-specialist-card a {
    position: relative;
    z-index: 1;
}

.rm-specialist-card h2 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 400;
    line-height: 1.08;
}

.rm-specialist-card p {
    margin: 12px 0 0;
    color: #55595a;
    font-size: 14px;
    line-height: 1.5;
}

.rm-specialist-card a {
    justify-self: start;
    margin-top: 22px;
    color: var(--panel-blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-underline-offset: 4px;
}

.rm-specialist-card a:hover,
.rm-specialist-card a:focus-visible {
    text-decoration: underline;
}

.rm-category-patient {
    padding: clamp(72px, 8vw, 112px) var(--page-pad);
    background: var(--white);
}

.rm-category-patient__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 76px);
    align-items: start;
}

.rm-category-patient__copy p {
    max-width: 560px;
    margin: 22px 0 0;
    color: #55595a;
    font-size: 18px;
    line-height: 1.68;
}

.rm-category-patient__list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rm-category-patient__list li {
    position: relative;
    padding: 8px 0 8px 30px;
    color: var(--charcoal);
    font-size: 18px;
    line-height: 1.45;
}

.rm-category-patient__list li::before {
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--panel-blue);
    content: "";
}

.rm-category-prep {
    padding: var(--section-gap) var(--page-pad);
    background: var(--panel-blue);
    color: var(--white);
    text-align: center;
}

.rm-category-prep__inner {
    width: min(100%, 900px);
    margin: 0 auto;
}

.rm-category-prep .eyebrow,
.rm-category-prep h2 {
    color: var(--white);
}

.rm-category-prep p {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.7;
}

.rm-category-prep__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.rm-category-prep__actions .button--dark {
    background: var(--charcoal);
}

.rm-variant-page {
    overflow-x: hidden;
}

.rm-variant-main {
    background: #f5f5f3;
}

.rm-variant-main,
.rm-variant-main * {
    box-sizing: border-box;
}

.rm-variant-page .reveal {
    opacity: 1;
    transform: none;
}

.rm-variant-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 136px var(--page-pad) 72px;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
}

.rm-variant-hero__media,
.rm-variant-hero__shade {
    position: absolute;
    inset: 0;
}

.rm-variant-hero__media {
    background: url("/img/rm.png") center right / cover no-repeat;
}

.rm-variant-hero__shade {
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .92) 0%, rgba(26, 28, 28, .78) 40%, rgba(26, 28, 28, .28) 76%, rgba(26, 28, 28, .12) 100%),
        linear-gradient(180deg, rgba(26, 28, 28, .12), rgba(26, 28, 28, .48));
}

.rm-variant-hero__inner {
    position: relative;
    z-index: 1;
    width: min(100%, 860px);
}

.rm-variant-hero .eyebrow {
    color: #9cc5ef;
}

.rm-variant-hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(40px, 5.4vw, 72px);
    font-weight: 400;
    line-height: 1.02;
}

.rm-variant-hero p {
    max-width: 690px;
    margin: 4px 0 34px;
    color: rgba(255, 255, 255, .84);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.58;
}

.rm-variant-shell {
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: clamp(56px, 7vw, 92px) var(--page-pad) clamp(76px, 9vw, 124px);
    display: grid;
    grid-template-columns: minmax(188px, 220px) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
}

.rm-variant-nav {
    position: sticky;
    top: 104px;
    padding: 18px 0;
}

.rm-variant-nav nav {
    display: grid;
    gap: 2px;
}

.rm-variant-nav a {
    position: relative;
    display: block;
    padding: 12px 0 12px 18px;
    border-left: 2px solid rgba(31, 31, 31, .16);
    color: #5d6368;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    transition: color .2s ease, border-color .2s ease;
}

.rm-variant-nav a:hover,
.rm-variant-nav a.is-active {
    border-left-color: var(--panel-blue);
    color: var(--charcoal);
}

.rm-variant-content {
    display: grid;
    gap: clamp(34px, 5vw, 58px);
    min-width: 0;
}

.rm-variant-section,
.rm-variant-cta {
    scroll-margin-top: 108px;
}

.rm-variant-section {
    padding: clamp(38px, 5vw, 62px) 0;
    border-top: 1px solid rgba(31, 31, 31, .14);
}

.rm-variant-section:first-child {
    padding-top: 0;
    border-top: 0;
}

.rm-variant-section__heading {
    max-width: 820px;
    margin-bottom: clamp(24px, 4vw, 38px);
}

.rm-variant-section__heading h2,
.rm-variant-cta h2,
.rm-variant-split-copy h2 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(34px, 4.2vw, 58px);
    font-weight: 300;
    line-height: 1.04;
}

.rm-variant-section__heading p,
.rm-variant-cta p,
.rm-variant-split-copy p {
    max-width: 740px;
    margin: 18px 0 0;
    color: #55595a;
    font-size: 17px;
    line-height: 1.68;
}

.rm-variant-district-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rm-variant-district-list li {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    min-height: 70px;
    padding: 16px 0;
    border-top: 1px solid rgba(31, 31, 31, .16);
    color: var(--charcoal);
    font-size: 17px;
    line-height: 1.42;
}

.rm-variant-district-list img {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(21%) saturate(1195%) hue-rotate(169deg) brightness(88%) contrast(88%);
}

.rm-variant-note {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    padding: 22px 24px;
    background: var(--charcoal);
    color: var(--white);
}

.rm-variant-note .material-symbols-outlined {
    color: #9cc5ef;
    font-size: 30px;
}

.rm-variant-note p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    line-height: 1.55;
}

.rm-variant-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(31, 31, 31, .14);
    border-left: 1px solid rgba(31, 31, 31, .14);
}

.rm-variant-trust-card {
    min-width: 0;
    min-height: 210px;
    padding: 24px;
    border-right: 1px solid rgba(31, 31, 31, .14);
    border-bottom: 1px solid rgba(31, 31, 31, .14);
    background: rgba(255, 255, 255, .48);
}

.rm-variant-trust-card .material-symbols-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: var(--panel-blue);
    color: var(--white);
    font-size: 24px;
}

.rm-variant-trust-card h3 {
    margin: 0;
    color: var(--charcoal);
    font-size: 20px;
    line-height: 1.12;
}

.rm-variant-trust-card p {
    margin: 10px 0 0;
    color: #55595a;
    font-size: 15px;
    line-height: 1.55;
}

.rm-variant-service-list {
    display: grid;
    gap: 0;
}

.rm-variant-service {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(31, 31, 31, .16);
}

.rm-variant-service:last-child {
    border-bottom: 1px solid rgba(31, 31, 31, .16);
}

.rm-variant-service h3 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.08;
}

.rm-variant-service p {
    max-width: 620px;
    margin: 10px 0 0;
    color: #55595a;
    font-size: 16px;
    line-height: 1.58;
}

.rm-variant-section--split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 52px);
    align-items: stretch;
}

.rm-variant-split-media {
    min-height: 430px;
    background: url("/img/widebore.png") center / cover no-repeat;
}

.rm-variant-split-copy {
    align-self: center;
    min-width: 0;
}

.rm-variant-split-copy ul {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.rm-variant-split-copy li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #45494a;
    font-size: 16px;
    line-height: 1.58;
}

.rm-variant-split-copy li .material-symbols-outlined {
    flex: 0 0 auto;
    color: var(--panel-blue);
    font-size: 22px;
}

.rm-variant-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rm-variant-check-list li {
    position: relative;
    padding: 16px 0 16px 30px;
    border-top: 1px solid rgba(31, 31, 31, .14);
    color: var(--charcoal);
    font-size: 17px;
    line-height: 1.48;
}

.rm-variant-check-list li::before {
    position: absolute;
    left: 0;
    top: 26px;
    width: 8px;
    height: 8px;
    background: var(--panel-blue);
    content: "";
}

.rm-variant-cta {
    padding: clamp(42px, 5vw, 64px);
    background: var(--panel-blue);
    color: var(--white);
}

.rm-variant-cta .eyebrow,
.rm-variant-cta h2 {
    color: var(--white);
}

.rm-variant-cta p {
    color: rgba(255, 255, 255, .84);
}

.rm-variant-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.rm-variant-cta__actions .button--dark {
    background: var(--charcoal);
}

@media (max-width: 1649.98px) {
    .site-header__search {
        width: 48px;
        justify-content: center;
        padding: 0;
    }

    .site-header__search input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
    }
}

@media (max-width: 1120px) {
    .rm-variant-shell {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rm-variant-nav {
        position: sticky;
        top: 74px;
        z-index: 4;
        margin: 0 calc(var(--page-pad) * -1);
        padding: 0 var(--page-pad);
        overflow-x: auto;
        background: rgba(245, 245, 243, .94);
        border-bottom: 1px solid rgba(31, 31, 31, .12);
        backdrop-filter: blur(14px);
        scrollbar-width: none;
    }

    .rm-variant-nav::-webkit-scrollbar {
        display: none;
    }

    .rm-variant-nav nav {
        display: flex;
        gap: 18px;
        width: max-content;
        min-width: 100%;
    }

    .rm-variant-nav a {
        padding: 16px 0 14px;
        border-left: 0;
        border-bottom: 2px solid transparent;
        white-space: nowrap;
    }

    .rm-variant-nav a:hover,
    .rm-variant-nav a.is-active {
        border-bottom-color: var(--panel-blue);
    }

    .rm-variant-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {

    .rm-variant-hero {
        min-height: 560px;
        padding-top: 132px;
        padding-bottom: 58px;
    }

    .rm-variant-hero__media {
        background-position: 58% center;
    }

    .rm-variant-hero__shade {
        background:
            linear-gradient(180deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .72) 56%, rgba(26, 28, 28, .38) 100%),
            linear-gradient(90deg, rgba(26, 28, 28, .5), rgba(26, 28, 28, .12));
    }

    .rm-variant-shell {
        width: 100%;
        padding: 0 22px 72px;
    }

    .rm-variant-nav {
        margin: 0 -22px;
        padding: 0 22px;
    }

    .rm-variant-content {
        gap: 24px;
    }

    .rm-variant-section {
        padding: 46px 0;
    }

    .rm-variant-hero h1,
    .rm-variant-section__heading h2,
    .rm-variant-cta h2,
    .rm-variant-split-copy h2 {
        font-size: clamp(36px, 10.5vw, 48px);
        overflow-wrap: anywhere;
    }

    .rm-variant-hero p,
    .rm-variant-section__heading p,
    .rm-variant-cta p,
    .rm-variant-split-copy p {
        max-width: 100%;
        font-size: 16px;
        overflow-wrap: anywhere;
    }

    .rm-variant-district-list,
    .rm-variant-check-list {
        grid-template-columns: 1fr;
    }

    .rm-variant-district-list li {
        min-height: 0;
        font-size: 16px;
    }

    .rm-variant-note,
    .rm-variant-service,
    .rm-variant-section--split {
        grid-template-columns: 1fr;
    }

    .rm-variant-note {
        align-items: start;
    }

    .rm-variant-trust-grid {
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .rm-variant-trust-card {
        min-height: 0;
        border-right: 0;
        background: rgba(255, 255, 255, .58);
    }

    .rm-variant-split-media {
        min-height: 280px;
    }

    .rm-variant-cta {
        padding: 34px 24px;
    }

    .rm-variant-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .rm-variant-hero {
        min-height: 540px;
    }

    .rm-variant-hero h1 {
        max-width: 320px;
        font-size: 36px;
    }

    .rm-variant-hero p {
        max-width: 320px;
    }

    .rm-variant-section__heading h2,
    .rm-variant-cta h2,
    .rm-variant-split-copy h2 {
        font-size: 36px;
    }

    .rm-variant-nav a {
        font-size: 13px;
    }

    .rm-variant-district-list li,
    .rm-variant-check-list li,
    .rm-variant-note p,
    .rm-variant-split-copy li {
        max-width: 100%;
        overflow-wrap: anywhere;
    }
}

.preparazione-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--panel-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.preparazioni-note {
    max-width: 760px;
    margin: 34px 0 0;
    color: #4d5152;
    font-size: 17px;
}

.contacts-main {
    background: #f5f5f3;
    overflow-x: hidden;
}

.contacts-page .reveal {
    opacity: 1;
    transform: none;
}

.contacts-hero {
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 150px var(--page-pad) 82px;
    background: var(--charcoal);
    color: var(--white);
}

.contacts-hero__inner {
    width: min(100%, 980px);
}

.contacts-hero .eyebrow {
    color: #9cc5ef;
}

.contacts-hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 86px);
    font-weight: 400;
    line-height: .98;
}

.contacts-hero p {
    max-width: 700px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(18px, 2vw, 22px);
}

.contacts-map-section {
    padding: 0;
}

.contacts-map-shell {
    width: 100%;
    min-height: calc(100vh - 82px);
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 30vw);
    overflow: hidden;
    background: var(--white);
    box-shadow: none;
}

.contacts-locations {
    order: 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: clamp(22px, 2.4vw, 32px);
    background: var(--white);
    border-left: 1px solid rgba(31, 31, 31, .12);
}

.contacts-locations__heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 400;
    line-height: 1;
}

.contacts-location-list {
    display: grid;
    gap: 8px;
}

.contacts-location-card {
    min-width: 0;
    max-width: 100%;
    min-height: 198px;
    padding: 14px 16px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    background: #f5f5f3;
    border: 1px solid transparent;
    color: var(--charcoal);
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.contacts-location-card.is-active,
.contacts-location-card:hover {
    border-color: rgba(56, 91, 127, .32);
    box-shadow: 0 18px 38px rgba(31, 31, 31, .08);
    transform: translateY(-2px);
}

.contacts-location-card.is-active {
    background: var(--panel-blue);
    color: var(--white);
}

.contacts-location-card.is-active p,
.contacts-location-card.is-active dt,
.contacts-location-card.is-active dd,
.contacts-location-card.is-active a {
    color: var(--white);
}

.contacts-location-card.is-active .button--blue {
    background: var(--charcoal);
    color: var(--white);
}

.contacts-location-card.is-active .button--light {
    border-color: var(--white);
    background: var(--white);
    color: var(--charcoal);
}

.contacts-location-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(19px, 1.45vw, 23px);
    font-weight: 400;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contacts-location-card p {
    max-width: 100%;
    margin: 7px 0 10px;
    color: #55595a;
    font-size: 13px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contacts-location-card dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    align-content: start;
    margin: 0;
}

.contacts-location-card dt {
    margin-bottom: 2px;
    color: #6a6e70;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contacts-location-card dd {
    margin: 0;
    color: var(--charcoal);
    font-size: 12px;
    line-height: 1.3;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contacts-location-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-self: end;
    margin-top: 8px;
}

.contacts-location-card__actions .button--light,
.contacts-support__actions .button--light {
    border-color: rgba(31, 31, 31, .14);
    background: var(--white);
    color: var(--charcoal);
}

.contacts-map {
    position: relative;
    order: 1;
    min-height: calc(100vh - 82px);
    background: #e7ebed;
}

.contacts-map iframe,
.contacts-map__canvas {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 82px);
    display: block;
    border: 0;
    filter: saturate(.88) contrast(1.04);
}

.cedir-map-marker {
    background: transparent;
    border: 0;
}

.cedir-map-marker span {
    position: relative;
    width: 34px;
    height: 34px;
    display: block;
    border: 4px solid var(--white);
    border-radius: 50% 50% 50% 0;
    background: var(--panel-blue);
    box-shadow: 0 12px 28px rgba(31, 31, 31, .24);
    transform: rotate(-45deg);
}

.cedir-map-marker span::after {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--white);
    content: "";
    transform: translate(-50%, -50%);
}

.contacts-other-locations {
    margin-top: 18px;
    padding-top: 20px;
    border-top: 1px solid rgba(31, 31, 31, .12);
}

.contacts-other-locations .eyebrow {
    margin-bottom: 12px;
}

.contacts-other-locations__list {
    display: grid;
    gap: 10px;
}

.contacts-location-card--secondary {
    border-color: rgba(31, 31, 31, .08);
    box-shadow: none;
}

.contacts-group-links {
    padding: var(--section-gap) var(--page-pad);
    background: #f5f5f3;
}

.contacts-group-links__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
}

.contacts-group-links h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.04;
}

.contacts-group-links__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contacts-group-links article {
    min-height: 180px;
    padding: 24px;
    background: var(--white);
    border: 1px solid rgba(31, 31, 31, .1);
}

.contacts-group-links h3 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.08;
}

.contacts-group-links p {
    margin: 0;
    color: #55595a;
    font-size: 15px;
}

.contacts-support {
    padding: 0;
}

.contacts-support__inner {
    width: 100%;
    min-height: 520px;
    margin: 0;
    padding: clamp(72px, 9vw, 128px) var(--page-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--panel-blue);
    color: var(--white);
    text-align: center;
}

.contacts-support__inner .eyebrow,
.contacts-support__inner h2 {
    color: var(--white);
}

.contacts-support__inner h2 {
    max-width: 900px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.02;
}

.contacts-support__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.contacts-support__actions .button--blue {
    background: var(--white);
    color: var(--charcoal);
}

.contacts-support__actions .button--blue:hover {
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.contacts-support__actions .button--light {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: var(--white);
}

.booking-hero__inner {
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(320px, 1.25fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
}

.booking-hero__intro h1 {
    margin: 0 0 20px;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.08;
}

.booking-hero__intro p {
    color: #444748;
    font-size: 18px;
}

.back-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--blue);
    font-weight: 700;
}

#booking-widget {
    min-height: 380px;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(196, 199, 199, .65);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .08);
}

#booking-widget button,
#booking-widget .button {
    border-radius: 999px;
}

.booking-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    width: min(100%, 420px);
    margin: 16px 0 18px;
    padding: 14px 16px;
    border: 1px solid rgba(196, 199, 199, .7);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.booking-price span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.booking-price strong {
    color: var(--blue);
    font-size: 22px;
    font-weight: 800;
}

@keyframes hero-drift {
    from {
        transform: scale(1.04) translateX(0);
    }
    to {
        transform: scale(1.08) translateX(-1.5%);
    }
}

@keyframes scroll-bob {
    0%,
    100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1120px) {
    .site-nav,
    .site-header__cta {
        display: none;
    }

    .prestazioni-drawer__panel {
        width: min(700px, calc(100vw - 18px));
    }

    .prestazioni-drawer__grid {
        grid-template-columns: 1fr;
    }

    .prestazioni-drawer__group:nth-child(2) {
        border-top: 1px solid rgba(31, 31, 31, .12);
    }

    .site-header__actions {
        padding-right: 0;
    }

    .site-header__search {
        width: 198px;
    }

    .services-grid,
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prostate-split__inner,
    .prostate-steps,
    .prostate-urology,
    .prostate-mdc,
    .prostate-gallery__layout,
    .prostate-comfort-note__inner,
    .prostate-preparation-download__inner,
    .prostate-prep-callout__inner,
    .about-split,
    .about-certification,
    .about-group__inner,
    .about-experience,
    .about-group-band__inner,
    .about-quality,
    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .prostate-exam-flow__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prostate-bento__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prostate-widebore__image,
    .rm-category-comfort__image {
        inset: 0 50% 0 0;
    }

    .about-values article {
        min-height: auto;
    }

    .prestazioni-areas__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacts-map-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .contacts-locations {
        max-height: none;
        order: 1;
        border-left: 0;
        border-bottom: 1px solid rgba(31, 31, 31, .12);
    }

    .contacts-map {
        order: 2;
    }

    .contacts-location-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contacts-group-links__inner,
    .rm-district-trust__inner,
    .rm-district-guide__inner,
    .rm-category-benefits__inner,
    .rm-category-visual__inner,
    .rm-category-districts__inner,
    .rm-category-patient__inner,
    .contacts-group-links__grid {
        grid-template-columns: 1fr;
    }

    .rm-district-trust__grid,
    .rm-district-guide__grid,
    .rm-district-guide__groups {
        grid-template-columns: 1fr;
    }

    .rm-district-card:nth-child(5) {
        grid-column: auto;
    }

    .rm-category-districts__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .rm-specialist-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 960px) {
    .hero {
        height: auto;
        min-height: 860px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 128px;
    }

    .hero-structure-card {
        justify-self: start;
        width: min(520px, 100%);
        max-height: none;
        overflow: visible;
    }
}

@media (max-height: 760px) and (min-width: 821px) {
    .hero {
        height: auto;
        min-height: 760px;
    }

    .hero__inner {
        align-items: start;
    }

    .hero-structure-card {
        max-height: none;
        overflow: visible;
    }
}
@media (max-width: 820px) {
    .rm-category-specialist-heading,
    .rm-specialist-card-grid {
        grid-template-columns: 1fr;
    }

    .rm-specialist-card {
        min-height: auto;
    }

    .site-header__inner {
        min-height: 74px;
    }

    .brand__logo {
        height: 42px;
    }

    .hero {
        min-height: 760px;
    }

    .hero__shade {
        background: linear-gradient(90deg, rgba(31, 31, 31, .84), rgba(31, 31, 31, .55));
    }

    .hero__inner {
        grid-template-columns: 1fr;
        align-content: center;
        padding-top: 128px;
    }

    .hero-structure-card {
        justify-self: start;
        width: min(520px, 100%);
        max-height: none;
    }

    .prostate-hero {
        min-height: 680px;
    }

    .prostate-hero__shade {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .78) 58%, rgba(255, 255, 255, .32) 100%),
            linear-gradient(90deg, rgba(249, 249, 249, .78), rgba(249, 249, 249, .12));
    }

    .prostate-hero__content {
        width: min(900px, 100%);
        max-width: 100%;
        padding: 132px var(--page-pad) 70px;
    }

    .about-hero {
        min-height: 640px;
    }

    .about-hero__content {
        width: 100%;
        max-width: 100%;
        padding: 128px 22px 64px;
        overflow: hidden;
    }

    .about-hero h1,
    .about-statement h2,
    .about-experience h2,
    .about-group-band h2,
    .about-quality h2,
    .about-cta h2 {
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.06;
        overflow-wrap: anywhere;
    }

    .about-hero p,
    .about-statement p,
    .about-experience__copy p,
    .about-quality__copy p,
    .about-group-band__copy p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .about-split__copy {
        padding: 44px 22px;
    }

    .about-intro__inner,
    .about-group__inner,
    .about-statement__inner,
    .about-group-band__inner,
    .about-quality,
    .about-values__heading,
    .about-values__grid,
    .about-certification,
    .about-cta__inner {
        width: 100%;
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
        overflow: hidden;
    }

    .about-experience {
        min-height: auto;
    }

    .about-experience__image {
        min-height: 420px;
    }

    .about-experience__copy {
        padding: 54px 22px;
    }

    .about-group-band {
        padding-left: 22px;
        padding-right: 22px;
    }

    .about-quality {
        width: 100%;
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .about-quality__image {
        min-height: 320px;
    }

    .prostate-hero h1 {
        font-size: clamp(36px, 10.5vw, 46px);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .prostate-urology__copy h2 {
        font-size: clamp(34px, 10vw, 46px);
        overflow-wrap: anywhere;
    }

    .prostate-intro h2,
    .prostate-split h2,
    .prostate-section__heading h2,
    .prostate-bento__heading h2,
    .prostate-pirads h2,
    .prostate-final-cta h2 {
        font-size: clamp(34px, 10vw, 46px);
        overflow-wrap: anywhere;
    }

    .prostate-hero__inner,
    .prostate-intro,
    .prostate-urology,
    .prostate-exam-flow,
    .prostate-split__inner,
    .prostate-mdc,
    .prostate-section,
    .prostate-bento,
    .cardio-indications__inner,
    .prostate-pirads__inner,
    .prostate-final-cta__inner,
    .prostate-intro__inner {
        width: 100vw;
        max-width: 100vw;
        padding-left: 22px;
        padding-right: 22px;
        overflow: hidden;
    }

    .rm-category-benefits__inner,
    .rm-category-visual__inner,
    .rm-category-districts__inner,
    .rm-category-comfort__inner,
    .rm-category-patient__inner,
    .rm-category-prep__inner,
    .prestazioni-hero__inner {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden;
    }

    .prestazioni-hero h1,
    .rm-category-benefits h2,
    .rm-category-visual__heading h2,
    .rm-category-districts h2,
    .rm-category-comfort h2,
    .rm-category-patient h2,
    .rm-category-specialist-heading h2,
    .rm-category-prep h2 {
        font-size: clamp(38px, 11vw, 50px);
        line-height: 1.06;
        overflow-wrap: anywhere;
    }

    .prestazioni-hero p,
    .rm-category-benefits p,
    .rm-category-visual__heading p,
    .rm-category-comfort p,
    .rm-category-patient__copy p,
    .rm-category-specialist-heading p,
    .rm-category-prep p {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .prostate-hero__inner {
        max-width: none;
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .prostate-hero p,
    .prostate-intro__inner,
    .prostate-intro h2,
    .prostate-intro p {
        width: calc(100vw - 64px);
        max-width: calc(100vw - 64px);
    }

    .prostate-split__media {
        min-height: 300px;
    }

    .prostate-bento-card--primary {
        grid-column: auto;
        grid-row: auto;
        min-height: 320px;
    }

    .prostate-urology__cards {
        width: 100%;
        min-width: 0;
        grid-template-columns: 1fr;
    }

    .prostate-urology__copy,
    .prostate-urology-card,
    .prostate-urology-card p {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .prostate-exam-flow__grid {
        grid-template-columns: 1fr;
    }

    .cardio-indications__inner {
        grid-template-columns: 1fr;
    }

    .prestazioni-service,
    .preparazione-card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .prostate-flow-card {
        min-height: auto;
    }

    .prostate-prep-callout__inner {
        padding: 28px;
    }

    .prostate-comfort-note__inner {
        padding-left: 22px;
        padding-right: 22px;
    }

    .prostate-preparation-download__inner {
        padding-left: 22px;
        padding-right: 22px;
    }

    .prostate-gallery__layout {
        gap: 6px;
    }

    .prostate-gallery__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 5px;
        overflow: hidden;
        padding-bottom: 0;
        scroll-snap-type: none;
    }

    .prostate-gallery__thumb {
        min-width: 0;
    }

    .prostate-gallery__thumb img {
        height: 100%;
    }

    .prostate-gallery__stage {
        min-height: 520px;
    }

    .rm-category-visual__carousel {
        min-height: 560px;
    }

    .rm-category-visual__caption {
        left: 22px;
        bottom: 86px;
        width: calc(100% - 44px);
    }

    .rm-category-visual__caption h3 {
        font-size: 38px;
    }

    .rm-category-visual__controls {
        left: 22px;
        right: auto;
        bottom: 24px;
    }

    .prostate-widebore,
    .rm-category-comfort {
        min-height: auto;
        background: var(--panel-blue);
    }

    .prostate-widebore__image,
    .rm-category-comfort__image {
        display: block;
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 260px;
        background: url("/img/widebore.png") center center / cover no-repeat;
    }

    .prostate-widebore__inner,
    .rm-category-comfort__inner {
        width: 100vw;
        max-width: 100vw;
        min-height: auto;
        align-items: flex-start;
        padding: 56px 22px 72px;
        overflow: hidden;
    }

    .rm-category-comfort--reverse .rm-category-comfort__image {
        inset: auto;
    }

    .rm-category-comfort--reverse .rm-category-comfort__inner {
        margin: 0;
        padding-left: 22px;
    }

    .rm-category-comfort--gray .rm-category-comfort__inner {
        padding-top: 56px;
    }

    .prostate-prep-callout .button {
        justify-self: start;
        white-space: normal;
    }

    .prostate-preparation-download__button {
        justify-self: start;
        white-space: normal;
    }

    .prostate-urology-card--wide {
        grid-column: auto;
        flex-direction: column;
        text-align: center;
    }

    .prostate-mdc__icon {
        justify-content: flex-start;
    }

    .prostate-mdc__note {
        flex-direction: column;
    }

    .search-shell {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .search-field {
        border-right: 0;
        border-bottom: 1px solid rgba(196, 199, 199, .65);
    }

    .search-location {
        border-bottom: 1px solid rgba(196, 199, 199, .65);
    }

    .search-submit {
        width: 100%;
        border-radius: 16px;
    }

    .home-booking__panel {
        top: auto;
        bottom: 0;
        width: 100%;
        height: min(88vh, 760px);
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -24px 70px rgba(0, 0, 0, .28);
    }

    .home-booking__header {
        padding: 22px 20px 18px;
    }

    .home-booking__header h2 {
        font-size: 32px;
    }

    .home-booking__body {
        padding: 20px;
    }

    .home-booking__success-x {
        top: 18px;
        right: 18px;
    }

    .home-booking__summary,
    .home-booking__fields {
        grid-template-columns: 1fr;
    }

    .home-booking__success-state {
        padding: 34px 24px;
    }

    .home-booking__success-state h3 {
        font-size: 30px;
    }

    .home-booking__success-state p {
        font-size: 16px;
    }

    .opening-popup {
        align-items: center;
        padding: 20px;
    }

    .opening-popup__panel {
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }

    .opening-popup__slides,
    .opening-popup__slide {
        min-height: 0;
    }

    .opening-popup__slide,
    .opening-popup__slide.is-active {
        grid-template-columns: 1fr;
    }

    .opening-popup__image {
        min-height: 230px;
    }

    .opening-popup__copy {
        padding: 30px 24px 34px;
    }

    .opening-popup__copy h2 {
        font-size: 34px;
    }

    .opening-popup__copy p {
        font-size: 16px;
    }

    .opening-popup__controls {
        position: static;
        justify-content: center;
        padding: 0 0 18px;
        background: var(--white);
        transform: none;
    }

    .opening-popup__panel.is-dark .opening-popup__controls {
        background: var(--charcoal);
    }

    .services-grid,
    .safety-grid,
    .split-showcase,
    .site-footer__grid,
    .booking-hero__inner,
    .exam-detail-layout,
    .exam-detail-grid {
        grid-template-columns: 1fr;
    }

    .exam-detail-hero {
        min-height: 720px;
    }

    .exam-detail-hero__content {
        padding-top: 136px;
    }

    .exam-detail-facts {
        position: static;
    }

    .exam-detail-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .split-showcase--reverse .split-showcase__image {
        order: 0;
    }

    .split-showcase__copy {
        padding: 54px var(--page-pad);
    }

    .site-footer__meta {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .about-hero__content,
    .about-statement__inner,
    .about-experience__copy,
    .about-group-band__inner,
    .about-quality,
    .about-cta__inner {
        max-width: 390px;
    }

    .about-hero h1,
    .about-statement h2,
    .about-experience h2,
    .about-group-band h2,
    .about-quality h2,
    .about-cta h2 {
        font-size: 40px;
    }
}

@media (max-width: 560px) {
    .site-header__search {
        width: 44px;
        height: 44px;
        justify-content: center;
        padding: 0;
    }

    .site-header__search input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
    }

    .institutional-search__stage {
        width: calc(100% - 44px);
        padding-top: 82px;
        padding-bottom: 52px;
    }

    .institutional-search__brand {
        top: 18px;
        left: 22px;
    }

    .institutional-search__brand img {
        height: 34px;
    }

    .institutional-search__close {
        top: 18px;
        right: 16px;
    }

    .institutional-search__field input {
        font-size: 24px;
    }

    .institutional-search .result-item__topline {
        flex-direction: column;
        gap: 8px;
    }

    .institutional-search .result-item--current,
    .institutional-search .result-item--other,
    .institutional-search .result-content-item {
        width: 100%;
        margin-left: 0;
        padding-left: 14px;
    }

    .institutional-search .search-results__ssn {
        padding-left: 14px;
    }

    .result-actions {
        flex-direction: column;
        gap: 12px;
        padding-left: 0;
    }

    .search-editorial__downloads,
    .institutional-search .home-booking__summary,
    .institutional-search .home-booking__fields {
        grid-template-columns: 1fr;
    }

    .search-editorial__downloads {
        flex-direction: column;
    }

    .search-outline-button {
        width: 100%;
    }

    .button {
        width: 100%;
        padding: 0 20px;
    }

    .rm-district-trust__grid {
        border-left: 0;
        width: 100%;
        max-width: calc(100vw - (var(--page-pad) * 2));
    }

    .rm-district-trust__inner,
    .rm-district-guide__inner {
        width: 100%;
        max-width: calc(100vw - (var(--page-pad) * 2));
    }

    .rm-district-trust__item {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 22px 0;
        border-right: 0;
        background: transparent;
        max-width: 100%;
    }

    .rm-district-trust__item h3,
    .rm-district-trust__item p,
    .rm-district-guide__heading,
    .rm-district-guide__heading p,
    .rm-district-card h3,
    .rm-district-card p {
        max-width: min(310px, calc(100vw - (var(--page-pad) * 2)));
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .prestazioni-page--rm-alto-campo {
        overflow-x: hidden;
    }

    .rm-district-card {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 24px 20px;
    }

    .rm-district-card__icon {
        width: 62px;
        height: 62px;
    }

    .rm-district-card__icon img {
        width: 34px;
        height: 34px;
    }

    .rm-district-card ul {
        gap: 7px;
    }

    .rm-district-card li {
        max-width: 100%;
        white-space: normal;
        line-height: 1.2;
    }

    .rm-district-guide__note {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 22px 20px;
    }

    .hero__actions,
    .final-cta__actions,
    .prostate-hero__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .hero {
        height: auto;
        min-height: 980px;
    }

    .hero__inner {
        padding-bottom: 112px;
    }

    .hero__title {
        font-size: clamp(38px, 10vw, 54px);
        line-height: 1.04;
    }

    .hero__text {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-structure-card {
        padding: clamp(20px, 5vw, 26px);
        border-radius: 24px;
    }

    .hero-structure-card__section {
        margin-top: 12px;
        padding-top: 12px;
    }

    .hero-structure-card__address-copy {
        display: none;
    }

    .hero-structure-card__phone {
        margin-top: 0;
    }

    .hero-structure-card h2 {
        font-size: 30px;
    }

    .hero-structure-card dl div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .hero-structure-card dd {
        text-align: left;
    }

    .prostate-hero {
        min-height: 640px;
    }

    .prostate-intro p,
    .prostate-final-cta p {
        font-size: 16px;
    }

    .prostate-hero p,
    .prostate-intro h2,
    .prostate-intro p {
        max-width: 340px;
    }

    .prostate-step-card,
    .prostate-bento-card {
        border-radius: 24px;
        padding: 26px;
    }

    .prostate-bento__grid {
        grid-template-columns: 1fr;
    }

    .menu-overlay__nav a {
        font-size: 40px;
    }

    .menu-overlay__prestazioni {
        font-size: 40px;
    }

    .prestazioni-drawer__panel {
        width: 100%;
        padding: 24px;
    }

    .prestazioni-drawer__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .prestazioni-hero {
        min-height: 470px;
        padding-top: 132px;
        padding-bottom: 60px;
    }

    .prestazioni-hero--rm {
        min-height: 620px;
        padding-top: 132px;
        padding-bottom: 60px;
        background:
            linear-gradient(180deg, rgba(26, 28, 28, .88) 0%, rgba(26, 28, 28, .72) 48%, rgba(26, 28, 28, .34) 100%),
            url("/img/rm.png") center 42% / auto 125% no-repeat;
    }

    .prestazioni-hero--tac {
        min-height: 620px;
        padding-top: 132px;
        padding-bottom: 60px;
        background:
            linear-gradient(180deg, rgba(26, 28, 28, .88) 0%, rgba(26, 28, 28, .72) 48%, rgba(26, 28, 28, .34) 100%),
            url("/img/cti.png") center right / cover no-repeat;
    }

    .prestazioni-hero--rm .prestazioni-hero__copy,
    .prestazioni-hero--tac .prestazioni-hero__copy {
        max-width: 100%;
    }

    .prestazioni-hero--rm .prestazioni-hero__inner,
    .prestazioni-hero--tac .prestazioni-hero__inner {
        min-height: auto;
    }
    .rm-category-districts__cta {
        margin: 10px auto 14px;
    }

    .prestazioni-hero h1,
    .prestazioni-hero p,
    .rm-category-benefits h2,
    .rm-category-benefits p,
    .rm-category-visual__heading h2,
    .rm-category-visual__heading p,
    .rm-category-visual__caption h3,
    .rm-category-visual__caption p,
    .rm-category-districts h2,
    .rm-category-comfort h2,
    .rm-category-comfort p,
    .rm-category-patient h2,
    .rm-category-patient__copy p,
    .rm-category-specialist-heading h2,
    .rm-category-specialist-heading p,
    .rm-category-prep h2,
    .rm-category-prep p {
        max-width: 340px;
    }

    .prestazioni-hero h1,
    .rm-category-benefits h2,
    .rm-category-visual__heading h2,
    .rm-category-visual__caption h3,
    .rm-category-districts h2,
    .rm-category-comfort h2,
    .rm-category-patient h2,
    .rm-category-specialist-heading h2,
    .rm-category-prep h2 {
        font-size: 40px;
    }

    .prestazioni-hero--rm h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .rm-category-benefits h2 {
        font-size: 36px;
    }

    .rm-category-visual__heading h2,
    .rm-category-visual__caption h3,
    .rm-category-comfort h2 {
        font-size: 34px;
    }

    .rm-category-districts__list li {
        overflow-wrap: anywhere;
        font-size: 17px;
    }

    .rm-category-districts__list li span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .rm-category-districts__list {
        max-width: 340px;
    }

    .rm-category-benefits__grid {
        width: 100%;
        max-width: 340px;
    }

    .prestazioni-page--rm-alto-campo .rm-category-benefits__grid {
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .rm-category-benefit-card {
        min-height: 0;
        padding: 24px 56px 24px 24px;
    }

    .prestazioni-page--rm-alto-campo .rm-category-benefit-card {
        padding: 24px;
    }

    .prestazioni-page--tac .rm-category-benefit-card--wide {
        grid-column: auto;
        flex-direction: column;
        justify-content: center;
        gap: 13px;
        text-align: center;
    }

    .rm-category-districts__list img {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .prestazioni-areas__grid {
        grid-template-columns: 1fr;
    }

    .prestazioni-area a {
        min-height: 320px;
    }

    .contacts-hero {
        min-height: 470px;
        padding-top: 132px;
        padding-bottom: 60px;
    }

    .contacts-hero h1 {
        font-size: clamp(42px, 13vw, 54px);
        overflow-wrap: anywhere;
    }

    .contacts-hero p {
        max-width: 340px;
        font-size: 17px;
    }

    .contacts-map-section {
        padding-left: 0;
        padding-right: 0;
    }

    .contacts-map-shell {
        width: 100vw;
        max-width: 100vw;
        min-height: auto;
        box-shadow: none;
    }

    .contacts-locations {
        max-width: 100vw;
        width: 100%;
        padding: 30px 22px;
        overflow-x: hidden;
    }

    .contacts-location-list {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .contacts-location-card {
        width: calc(100vw - 44px);
        max-width: calc(100vw - 44px);
    }

    .contacts-location-card h3,
    .contacts-location-card p,
    .contacts-location-card dd {
        max-width: min(100%, 280px);
    }

    .contacts-location-card dl {
        grid-template-columns: 1fr;
    }

    .contacts-location-card__actions,
    .contacts-support__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .contacts-map,
    .contacts-map iframe,
    .contacts-map__canvas {
        min-height: 520px;
    }

    .contacts-group-links {
        padding-left: 22px;
        padding-right: 22px;
    }

    .contacts-group-links article {
        min-height: auto;
    }

    .contacts-support {
        padding-left: 0;
        padding-right: 0;
    }

    .contacts-support__inner {
        min-height: 520px;
        padding: 68px 22px;
    }

    .quick-chips {
        align-items: stretch;
    }

    .quick-chips button {
        width: 100%;
        padding: 8px 0;
    }
}

.cardio-ct-diagonal-page .cardio-ct-diagonal-hero {
    --cardio-visual-width: 33.333%;
    --cardio-band-overlap: 64px;
}

.cardio-rm-diagonal-page .cardio-ct-diagonal-hero {
    min-height: 620px;
}

.cardio-ct-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__media {
    right: auto;
    width: calc(66.666% + var(--cardio-band-overlap));
    overflow: hidden;
}

.cardio-ct-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__media img {
    object-position: center left;
}

.cardio-ct-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, .2) 60%, rgba(255, 255, 255, 0) 100%);
}

.cardio-rm-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .86) 28%, rgba(255, 255, 255, .46) 58%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(249, 249, 249, .08), rgba(249, 249, 249, .28));
}

.cardio-ct-diagonal-hero__visual {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    width: var(--cardio-visual-width);
    overflow: visible;
    pointer-events: none;
}

.cardio-ct-diagonal-hero__image {
    position: absolute;
    z-index: 1;
    inset: 0;
    overflow: hidden;
    background: url('/img/cuore1.png') center / cover no-repeat;
}

.cardio-ct-diagonal-hero__band {
    position: absolute;
    z-index: 2;
    top: -32%;
    left: calc(var(--cardio-band-overlap) * -1);
    width: calc(var(--cardio-band-overlap) * 2);
    height: 164%;
    transform: rotate(9deg);
    transform-origin: center;
    background: #c85f16;
    box-shadow: 18px 0 42px rgba(31, 31, 31, .14);
}
.cardio-ct-diagonal-page:not(.cardio-rm-diagonal-page) .cardio-ct-diagonal-hero__band {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -18px 0 34px rgba(31, 31, 31, .22);
}

.cardio-ct-diagonal-page:not(.cardio-rm-diagonal-page) .cardio-ct-diagonal-hero__band span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .84);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

.cardio-ct-diagonal-page:not(.cardio-rm-diagonal-page) .cardio-ct-diagonal-hero__band strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cardio-ct-diagonal-page:not(.cardio-rm-diagonal-page) .cardio-ct-diagonal-hero__band small {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
}

@media (max-width: 820px) {
    .cardio-rm-diagonal-page .cardio-ct-diagonal-hero {
        min-height: 620px;
    }
}

@media (max-width: 1199px) {
    .cardio-ct-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__media {
        right: 0;
        width: 100%;
    }

    .cardio-ct-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__media img {
        object-position: center right;
    }

    .cardio-ct-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .9) 0%, rgba(255, 255, 255, .66) 42%, rgba(255, 255, 255, .08) 100%),
            linear-gradient(180deg, rgba(249, 249, 249, .05), rgba(249, 249, 249, .46));
    }

    .cardio-rm-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .93) 0%, rgba(255, 255, 255, .82) 36%, rgba(255, 255, 255, .34) 72%, rgba(255, 255, 255, .08) 100%),
            linear-gradient(180deg, rgba(249, 249, 249, .08), rgba(249, 249, 249, .34));
    }

    .cardio-ct-diagonal-hero__visual {
        display: none;
    }
}
.cardio-rm-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__media video {
    object-position: center left;
}

.cardio-rm-diagonal-page .cardio-ct-diagonal-hero__image {
    background-image: url('/img/3c.jpeg');
}

.cardio-rm-diagonal-page .cardio-ct-diagonal-hero__band {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--panel-blue);
    box-shadow: -18px 0 34px rgba(31, 31, 31, .22);
}

.cardio-rm-diagonal-page .cardio-ct-diagonal-hero__band span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, .84);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}

.cardio-rm-diagonal-page .cardio-ct-diagonal-hero__band strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cardio-rm-diagonal-page .cardio-ct-diagonal-hero__band small {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .62);
}

@media (max-width: 1199px) {
    .cardio-rm-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__media video {
        object-position: center right;
    }
}

.cardio-ct-collage-page .cardio-ct-diagonal-hero {
    min-height: 620px;
}

.cardio-ct-collage-page .cardio-ct-diagonal-hero .prostate-hero__shade {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .86) 28%, rgba(255, 255, 255, .46) 58%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(249, 249, 249, .08), rgba(249, 249, 249, .28));
}

@media (max-width: 820px) {
    .cardio-ct-collage-page .cardio-ct-diagonal-hero {
        min-height: 620px;
    }
}

@media (max-width: 1199px) {
    .cardio-ct-collage-page .cardio-ct-diagonal-hero .prostate-hero__shade {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .86) 28%, rgba(255, 255, 255, .46) 58%, rgba(255, 255, 255, 0) 100%),
            linear-gradient(180deg, rgba(249, 249, 249, .08), rgba(249, 249, 249, .28));
    }
}

.prostate-diagonal-page .cardio-ct-diagonal-hero,
.whole-body-diagonal-page .cardio-ct-diagonal-hero,
.entero-diagonal-page .cardio-ct-diagonal-hero {
    min-height: 620px;
}

.prostate-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade,
.whole-body-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade,
.entero-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .86) 28%, rgba(255, 255, 255, .46) 58%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(249, 249, 249, .08), rgba(249, 249, 249, .28));
}

.prostate-diagonal-page .cardio-ct-diagonal-hero__image {
    background-image: url('/img/img/prostata.png');
}

.whole-body-diagonal-page .cardio-ct-diagonal-hero__image {
    background-image: url('/img/img/wholebody.png');
}

.entero-diagonal-page .cardio-ct-diagonal-hero__image {
    background-image: url('/img/img/entero.png');
}

.prostate-diagonal-page .cardio-ct-diagonal-hero__band,
.whole-body-diagonal-page .cardio-ct-diagonal-hero__band,
.entero-diagonal-page .cardio-ct-diagonal-hero__band {
    background: var(--panel-blue);
}

.entero-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__media video {
    object-position: center left;
}

@media (max-width: 820px) {
    .prostate-diagonal-page .cardio-ct-diagonal-hero,
    .whole-body-diagonal-page .cardio-ct-diagonal-hero,
    .entero-diagonal-page .cardio-ct-diagonal-hero {
        min-height: 620px;
    }
}

@media (max-width: 1199px) {
    .prostate-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade,
    .whole-body-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade,
    .entero-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .93) 0%, rgba(255, 255, 255, .82) 36%, rgba(255, 255, 255, .34) 72%, rgba(255, 255, 255, .08) 100%),
            linear-gradient(180deg, rgba(249, 249, 249, .08), rgba(249, 249, 249, .34));
    }
}

.tc-service-diagonal-page .cardio-ct-diagonal-hero {
    min-height: 620px;
}

.tc-service-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .86) 28%, rgba(255, 255, 255, .46) 58%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(249, 249, 249, .08), rgba(249, 249, 249, .28));
}

.tc-colon-page .cardio-ct-diagonal-hero__image {
    background-image: url('/img/img/colon.png');
}

.tc-torace-page .cardio-ct-diagonal-hero__image {
    background-image: url('/img/img/torace.png');
}

.dual-energy-page .cardio-ct-diagonal-hero__image {
    background-image: url('/img/dualenergy.png');
}

.dual-energy-page .prostate-widebore__image {
    background-image: url('/img/dualenergy.png');
}

.tc-service-page .prostate-preparation-download__inner {
    align-items: center;
}

@media (max-width: 820px) {
    .tc-service-diagonal-page .cardio-ct-diagonal-hero {
        min-height: 620px;
    }
}

@media (max-width: 1199px) {
    .tc-service-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .93) 0%, rgba(255, 255, 255, .82) 36%, rgba(255, 255, 255, .34) 72%, rgba(255, 255, 255, .08) 100%),
            linear-gradient(180deg, rgba(249, 249, 249, .08), rgba(249, 249, 249, .34));
    }
}


.entero-diagonal-page .cardio-ct-diagonal-hero__image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.senologia-diagonal-page .cardio-ct-diagonal-hero {
    min-height: 620px;
}

.senologia-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .86) 30%, rgba(255, 255, 255, .48) 60%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(249, 249, 249, .08), rgba(249, 249, 249, .28));
}

.senologia-diagonal-page .cardio-ct-diagonal-hero__image {
    background-image: url('/img/locandine/senologia-fiore.png');
}

.senologia-diagonal-page .cardio-ct-diagonal-hero__band,
.senologia-page .prostate-widebore,
.senologia-page .prostate-urology--blue-cards {
    background: #9f4468;
}

.senologia-page .prostate-urology--blue-cards {
    box-shadow: 0 0 0 100vmax #9f4468;
}

.senologia-page .prostate-urology--blue-cards .prostate-urology-card {
    background: rgba(255, 255, 255, .14);
}

.senologia-page .prostate-urology--blue-cards .prostate-urology-card:first-child {
    background: rgba(255, 255, 255, .2);
}

.senologia-page .prostate-urology--blue-cards .prostate-urology-card--wide {
    background: rgba(31, 31, 31, .16);
}

.senologia-page .prostate-urology-card .material-symbols-outlined,
.senologia-page .prostate-widebore li .material-symbols-outlined {
    color: #9f4468;
}

.senologia-page .prostate-widebore__image,
.senologia-note .prostate-widebore__image {
    background-image: url('/img/locandine/senologia.png');
}

.senologia-exams {
    padding: var(--section-gap) var(--page-pad);
    background: var(--white);
}

.senologia-exams__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
}

.senologia-exams__grid {
    margin-top: 34px;
}

@media (max-width: 820px) {
    .senologia-diagonal-page .cardio-ct-diagonal-hero {
        min-height: 620px;
    }
}

@media (max-width: 1199px) {
    .senologia-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, .93) 0%, rgba(255, 255, 255, .82) 36%, rgba(255, 255, 255, .34) 72%, rgba(255, 255, 255, .08) 100%),
            linear-gradient(180deg, rgba(249, 249, 249, .08), rgba(249, 249, 249, .34));
    }
}

.senologia-exams .rm-specialist-card {
    border: 1px solid rgba(31, 31, 31, .1);
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 18px 46px rgba(31, 31, 31, .08);
}

.senologia-exams .rm-specialist-card__icon {
    width: 68px;
    height: 68px;
    padding: 12px;
    border-radius: 999px;
    background: #fbf4f7;
    object-fit: contain;
}

.senologia-exams .rm-specialist-card h2 {
    color: var(--charcoal);
}

.senologia-exams .rm-specialist-card p {
    color: #55595a;
}

.senologia-exams .rm-specialist-card a {
    color: #9f4468;
}

.senologia-page .prostate-urology--blue-cards .prostate-urology-card,
.senologia-page .prostate-urology--blue-cards .prostate-urology-card:first-child,
.senologia-page .prostate-urology--blue-cards .prostate-urology-card--wide {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 18px 44px rgba(31, 31, 31, .12);
}

.senologia-page .prostate-urology-card__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex: 0 0 56px;
    padding: 10px;
    border-radius: 999px;
    background: #fbf4f7;
    object-fit: contain;
}

.senologia-page .prostate-urology-card h3 {
    color: var(--charcoal);
}

.senologia-page .prostate-urology-card p {
    color: #55595a;
}

.prestazioni-page--senologia {
    --panel-blue: #9f4468;
}

.prestazioni-page--senologia .eyebrow {
    color: #b95680;
}

.prestazioni-page--senologia .rm-category-comfort--senologia .eyebrow,
.prestazioni-page--senologia .rm-category-prep .eyebrow {
    color: var(--white);
}

.prestazioni-hero--senologia {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 150px var(--page-pad) 82px;
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url("/img/locandine/senologia.png") center right / cover no-repeat;
    color: var(--white);
}

.prestazioni-hero--senologia .prestazioni-hero__inner {
    width: min(100%, 980px);
}

.prestazioni-hero--senologia .prestazioni-hero__copy {
    align-self: center;
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: left;
    align-items: flex-start;
    max-width: 900px;
}

.prestazioni-hero--senologia .eyebrow,
.prestazioni-page--senologia .rm-category-benefits .eyebrow,
.prestazioni-page--senologia .rm-district-guide .eyebrow,
.prestazioni-page--senologia .prestazioni-category--rm .eyebrow,
.prestazioni-page--senologia .rm-category-patient .eyebrow,
.prestazioni-page--senologia .rm-category-prep .eyebrow {
    color: #b95680;
}

.prestazioni-hero--senologia h1 {
    color: var(--white);
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.02;
}

.prestazioni-hero--senologia .prestazioni-hero__lead {
    max-width: 860px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 300;
    line-height: 1.22;
}

.prestazioni-hero--senologia .prestazioni-hero__lead strong {
    color: #ff9bbf;
    font-weight: 800;
}

.prestazioni-hero--senologia .prestazioni-hero__anchors a:hover span,
.prestazioni-hero--senologia .prestazioni-hero__anchors button:hover span {
    color: #ff9bbf;
}

@media (max-width: 900px) {
    .prestazioni-hero--senologia {
        min-height: 520px;
        padding-top: 132px;
        padding-bottom: 60px;
        background:
            linear-gradient(180deg, rgba(26, 28, 28, .88) 0%, rgba(26, 28, 28, .72) 48%, rgba(26, 28, 28, .34) 100%),
            url("/img/locandine/senologia.png") center 42% / cover no-repeat;
    }

    .prestazioni-hero--senologia .prestazioni-hero__copy {
        max-width: 100%;
    }
}


.prestazioni-page--senologia .rm-category-benefits {
    background: var(--white);
}

.prestazioni-page--senologia .rm-district-guide--senologia {
    background: var(--white);
}

.prestazioni-page--senologia .rm-district-guide--senologia .eyebrow {
    color: #b95680;
}

.prestazioni-page--senologia .rm-district-guide--senologia .rm-district-tag-group__icon img {
    filter: brightness(0) saturate(100%) invert(34%) sepia(25%) saturate(1743%) hue-rotate(286deg) brightness(91%) contrast(86%);
}

.prestazioni-page--senologia .rm-district-guide--senologia .rm-district-tag-group li a:hover,
.prestazioni-page--senologia .rm-district-guide--senologia .rm-district-tag-group li a:focus-visible {
    color: #9f4468;
}

.senologia-path-groups {
    display: grid;
    gap: 0;
}

.senologia-path-group {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px 12px 18px 0;
}

.senologia-path-group__body h3 {
    margin: 0;
    color: var(--charcoal);
    font-size: 22px;
    line-height: 1.14;
}

.senologia-path-group__body p {
    max-width: 760px;
    margin: 8px 0 0;
    color: #55595a;
    font-size: 16px;
    line-height: 1.58;
}

.senologia-path-group__body a {
    display: inline-flex;
    margin-top: 12px;
    color: #9f4468;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.prestazioni-page--senologia .senologia-path-note .material-symbols-outlined {
    color: #9f4468;
}

.prestazioni-page--senologia .senologia-path-note .button--blue {
    background: #9f4468;
}

.prestazioni-page--senologia .senologia-faq-modal .eyebrow,
.prestazioni-page--senologia .senologia-faq-modal summary::after {
    color: #9f4468;
}

.prestazioni-page--senologia .senologia-faq-modal .button--blue {
    background: #9f4468;
}

.senologia-exam-tabs-section {
    padding: clamp(72px, 8vw, 112px) var(--page-pad);
    background: #f5f5f3;
}

.senologia-exam-tabs-section__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.senologia-exam-tabs-section__heading {
    max-width: 820px;
}

.senologia-exam-tabs-section__heading h2 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.04;
}

.senologia-exam-tabs-section__heading p {
    max-width: 760px;
    margin: 20px 0 0;
    color: #55595a;
    font-size: 18px;
    line-height: 1.7;
}

.senologia-exam-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    border-bottom: 1px solid rgba(31, 31, 31, .14);
}

.senologia-exam-tabs button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 0 12px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #55595a;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.senologia-exam-tabs button[aria-selected="true"] {
    border-bottom-color: #9f4468;
    color: #9f4468;
}

.senologia-exam-panels {
    min-width: 0;
}

.senologia-exam-panel[hidden] {
    display: none;
}

.senologia-exam-panel {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 58px);
    align-items: stretch;
    height: clamp(430px, 34vw, 520px);
    background: var(--white);
    border: 1px solid rgba(31, 31, 31, .12);
    overflow: hidden;
}

.senologia-exam-panel__image {
    min-height: 0;
    overflow: hidden;
    background: #eef2f4;
}

.senologia-exam-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.senologia-exam-panel__copy {
    display: grid;
    align-content: center;
    justify-items: start;
    min-height: 0;
    padding: clamp(28px, 4vw, 54px) clamp(24px, 4vw, 58px) clamp(28px, 4vw, 54px) 0;
    overflow: auto;
}

.senologia-exam-panel__copy h3 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.04;
}

.senologia-exam-panel__copy p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #55595a;
    font-size: 18px;
    line-height: 1.66;
}

.senologia-exam-panel__copy ul {
    display: grid;
    gap: 10px;
    margin: 4px 0 34px;
    padding: 0;
    list-style: none;
}

.senologia-exam-panel__copy li {
    position: relative;
    padding-left: 18px;
    color: #333737;
    font-size: 15px;
    line-height: 1.5;
}

.senologia-exam-panel__copy li::before {
    position: absolute;
    top: .66em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #9f4468;
    content: "";
}

.senologia-exam-panel__copy .button {
    margin-top: 30px;
    background: #9f4468;
}

@media (max-width: 900px) {
    .senologia-exam-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-bottom: 0;
    }

    .senologia-exam-tabs button {
        border: 1px solid rgba(31, 31, 31, .14);
        background: var(--white);
    }

    .senologia-exam-tabs button[aria-selected="true"] {
        border-color: #9f4468;
        background: #9f4468;
        color: var(--white);
    }

    .senologia-exam-panel {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .senologia-exam-panel__image,
    .senologia-exam-panel__image img {
        height: 280px;
        min-height: 280px;
    }

    .senologia-exam-panel__copy {
        overflow: visible;
    }

    .senologia-exam-panel__copy {
        padding: 28px 22px 32px;
    }
}

.prestazioni-page--senologia .rm-category-benefits__heading h2 {
    color: var(--white);
}

.prestazioni-page--senologia .rm-category-benefits__heading p {
    color: rgba(255, 255, 255, .86);
}

.prestazioni-page--senologia .rm-category-benefits .eyebrow {
    color: #ffd6e5;
}

.prestazioni-page--senologia .rm-category-benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.prestazioni-page--senologia .rm-category-benefit-card {
    min-height: 188px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 24px;
    border: 1px solid rgba(31, 31, 31, .1);
    border-radius: 30px;
    background: var(--white);
    color: var(--charcoal);
    text-align: center;
    box-shadow: 0 18px 44px rgba(31, 31, 31, .08);
}

.prestazioni-page--senologia .rm-category-benefit-card:hover {
    background: var(--white);
    box-shadow: 0 20px 46px rgba(159, 68, 104, .16);
    transform: none;
}

.prestazioni-page--senologia .rm-category-benefit-card h3 {
    margin-bottom: 0;
    color: var(--charcoal);
    font-size: 22px;
}

.prestazioni-page--senologia .rm-category-benefit-card p {
    color: #55595a;
    font-size: 14px;
    line-height: 1.5;
}


.prestazioni-page--senologia .senologia-benefit-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex: 0 0 56px;
    border-radius: 999px;
    background: #fbf4f7;
    color: #9f4468;
    font-size: 28px;
}
.senologia-benefit-icon,
.prestazioni-page--senologia .rm-specialist-card__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex: 0 0 56px;
    padding: 10px;
    border-radius: 999px;
    background: #fbf4f7;
    object-fit: contain;
    filter: none;
}


.prestazioni-page--senologia .rm-district-guide--senologia .rm-district-tag-group li a:hover,
.prestazioni-page--senologia .rm-district-guide--senologia .rm-district-tag-group li a:focus-visible,
.prestazioni-page--senologia .rm-specialist-card a {
    color: #9f4468;
}

.prestazioni-page--senologia .rm-district-guide--senologia .rm-district-guide__note .material-symbols-outlined {
    color: #ff9bbf;
}

.prestazioni-page--senologia .rm-district-guide--senologia .button--blue {
    background: #9f4468;
}

.prestazioni-page--senologia .rm-specialist-card-grid--senologia {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prestazioni-page--senologia .rm-category-comfort--senologia {
    background: #9f4468;
}

.prestazioni-page--senologia .rm-category-comfort--senologia .rm-category-comfort__image {
    background-image: url('/img/locandine/senologia.png');
}

.prestazioni-page--senologia .rm-category-prep .eyebrow {
    color: var(--white);
}

@media (max-width: 900px) {
    .prestazioni-page--senologia .rm-category-benefits__grid,
    .prestazioni-page--senologia .rm-specialist-card-grid--senologia {
        grid-template-columns: 1fr;
    }
}

.prestazioni-page--senologia .senologia-controls .rm-category-patient__copy p {
    margin: 18px 0 0;
    color: #55595a;
    font-size: 17px;
    line-height: 1.65;
}

.prestazioni-hero--odontoiatria {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 150px var(--page-pad) 82px;
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url("/img/hero_odontiatria.png") center right / cover no-repeat;
    color: var(--white);
}

.prestazioni-hero--odontoiatria .prestazioni-hero__inner {
    width: min(100%, 980px);
}

.prestazioni-hero--odontoiatria .prestazioni-hero__copy {
    align-self: center;
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: left;
    align-items: flex-start;
    max-width: 900px;
}

.prestazioni-hero--odontoiatria h1 {
    color: var(--white);
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.02;
}

.prestazioni-hero--odontoiatria .prestazioni-hero__lead {
    max-width: 860px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 300;
    line-height: 1.22;
}

.prestazioni-page--odontoiatria .rm-district-guide--odontoiatria,
.prestazioni-page--odontoiatria .senologia-age-section {
    background: var(--white);
}

.prestazioni-page--odontoiatria .rm-category-comfort--odontoiatria .eyebrow,
.prestazioni-page--odontoiatria .rm-category-prep .eyebrow {
    color: var(--white);
}

.prestazioni-page--odontoiatria .rm-category-comfort--odontoiatria {
    background: var(--panel-blue);
}

.prestazioni-page--odontoiatria .rm-category-comfort--odontoiatria .rm-category-comfort__image {
    background-image: url('/img/hero_odontiatria.png');
}

@media (max-width: 900px) {
    .prestazioni-hero--odontoiatria {
        min-height: 520px;
        padding-top: 132px;
        padding-bottom: 60px;
        background:
            linear-gradient(180deg, rgba(26, 28, 28, .88) 0%, rgba(26, 28, 28, .72) 48%, rgba(26, 28, 28, .34) 100%),
            url("/img/hero_odontiatria.png") center / cover no-repeat;
    }

    .prestazioni-hero--odontoiatria .prestazioni-hero__copy {
        max-width: 100%;
    }
}

.senologia-chapter {
    padding: clamp(72px, 8vw, 112px) var(--page-pad);
    background: var(--white);
}

.senologia-chapter__inner,
.senologia-age-section__inner,
.senologia-faq__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
}

.senologia-chapter__inner {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: start;
}

.senologia-chapter__number {
    color: rgba(159, 68, 104, .18);
    font-family: var(--font-display);
    font-size: clamp(82px, 12vw, 168px);
    font-weight: 800;
    line-height: .78;
}

.senologia-chapter__copy h2,
.senologia-age-section h2,
.senologia-faq h2 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.04;
}

.senologia-chapter__copy p,
.senologia-age-section__heading p {
    max-width: 780px;
    margin: 22px 0 0;
    color: #55595a;
    font-size: 18px;
    line-height: 1.7;
}

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

.senologia-number-card {
    min-height: 230px;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 26px;
    border: 1px solid rgba(31, 31, 31, .1);
    background: var(--white);
    box-shadow: 0 18px 44px rgba(31, 31, 31, .08);
}

.senologia-number-card > span {
    color: rgba(159, 68, 104, .28);
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 800;
    line-height: .8;
}

.senologia-number-card h3 {
    margin: 0;
    color: var(--charcoal);
    font-size: 22px;
    line-height: 1.14;
}

.senologia-number-card p {
    margin: 0;
    color: #55595a;
    font-size: 15px;
    line-height: 1.58;
}

.senologia-age-section,
.senologia-faq {
    padding: clamp(72px, 8vw, 112px) var(--page-pad);
}

.senologia-age-section {
    background: var(--white);
}

.senologia-faq {
    background: #f5f5f3;
}

.senologia-age-section__heading,
.senologia-faq__heading {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: clamp(24px, 4vw, 58px);
    align-items: start;
    margin-bottom: 38px;
}

.senologia-age-section__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 42%);
    gap: clamp(28px, 4vw, 58px);
    align-items: stretch;
}

.senologia-age-ribbon {
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--white);
}

.senologia-age-ribbon img {
    width: 112%;
    height: 112%;
    min-height: 112%;
    margin: -6%;
    object-fit: contain;
}

.senologia-age-list {
    display: grid;
    border-top: 1px solid rgba(31, 31, 31, .14);
}

.senologia-age-list article {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(31, 31, 31, .14);
}

.senologia-age-list article > span {
    color: #9f4468;
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 800;
    line-height: .95;
}

.senologia-age-list h3 {
    margin: 0;
    color: var(--charcoal);
    font-size: 22px;
    line-height: 1.16;
}

.senologia-age-list p {
    max-width: 760px;
    margin: 8px 0 0;
    color: #55595a;
    font-size: 16px;
    line-height: 1.62;
}


.senologia-faq__list {
    display: grid;
    gap: 10px;
}

.senologia-faq details {
    border: 1px solid rgba(31, 31, 31, .12);
    background: #f7f7f5;
}

.senologia-faq summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--charcoal);
    font-weight: 800;
    list-style: none;
}

.senologia-faq summary::-webkit-details-marker {
    display: none;
}

.senologia-faq summary::after {
    float: right;
    color: #9f4468;
    content: "+";
}

.senologia-faq details[open] summary::after {
    content: "-";
}

.senologia-faq details p {
    margin: 0;
    padding: 0 20px 20px;
    color: #55595a;
    font-size: 16px;
    line-height: 1.62;
}

@media (max-width: 900px) {
    .senologia-chapter__inner,
    .senologia-age-section__heading,
    .senologia-faq__heading,
    .senologia-age-list article {
        grid-template-columns: 1fr;
    }

    .senologia-number-grid {
        grid-template-columns: 1fr;
    }

    .senologia-age-section__body {
        grid-template-columns: 1fr;
    }

    .senologia-age-ribbon {
        min-height: 280px;
    }

    .senologia-age-ribbon img {
        min-height: 280px;
    }


    .senologia-chapter__number {
        font-size: 78px;
    }
}

.prestazioni-page--senologia .senologia-number-card {
    min-height: 190px;
}

.prestazioni-page--senologia .senologia-age-section__heading,
.prestazioni-page--senologia .senologia-faq__heading {
    grid-template-columns: 1fr;
}

.prestazioni-page--senologia .senologia-age-list--plain article {
    grid-template-columns: 1fr;
}

.prestazioni-page--senologia .senologia-age-list--plain article > div {
    max-width: 820px;
}
.prestazioni-page--odontoiatria .eyebrow,
.prestazioni-page--odontoiatria .rm-district-guide--odontoiatria .eyebrow,
.prestazioni-page--odontoiatria .senologia-exam-tabs-section__heading .eyebrow,
.prestazioni-page--odontoiatria .odontoiatria-faq-modal .eyebrow,
.prestazioni-page--odontoiatria .odontoiatria-faq-modal summary::after {
    color: var(--panel-blue);
}

.prestazioni-hero--odontoiatria .eyebrow {
    color: #c9ddf2;
}

.prestazioni-hero--odontoiatria .prestazioni-hero__lead strong,
.prestazioni-hero--odontoiatria .prestazioni-hero__anchors a:hover span,
.prestazioni-hero--odontoiatria .prestazioni-hero__anchors button:hover span {
    color: #9fc4e8;
}

.prestazioni-page--odontoiatria .senologia-path-group__body a,
.prestazioni-page--odontoiatria .odontoiatria-path-note .material-symbols-outlined {
    color: var(--panel-blue);
}

.prestazioni-page--odontoiatria .odontoiatria-path-note .button--blue,
.prestazioni-page--odontoiatria .odontoiatria-faq-modal .button--blue,
.prestazioni-page--odontoiatria .senologia-exam-panel__copy .button {
    background: var(--panel-blue);
}

.prestazioni-page--odontoiatria .senologia-exam-tabs button[aria-selected="true"] {
    border-bottom-color: var(--panel-blue);
    color: var(--panel-blue);
}

.prestazioni-page--odontoiatria .senologia-exam-panel__copy li::before {
    background: var(--panel-blue);
}

@media (max-width: 900px) {
    .prestazioni-page--odontoiatria .senologia-exam-tabs button[aria-selected="true"] {
        border-color: var(--panel-blue);
        background: var(--panel-blue);
        color: var(--white);
    }
}
.prestazioni-hero--cardiologia {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 150px var(--page-pad) 82px;
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url("/img/hero_cardiologia.png") center right / cover no-repeat;
    color: var(--white);
}

.prestazioni-hero--cardiologia .prestazioni-hero__inner {
    width: min(100%, 980px);
}

.prestazioni-hero--cardiologia .prestazioni-hero__copy {
    align-self: center;
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: left;
    align-items: flex-start;
    max-width: 920px;
}

.prestazioni-hero--cardiologia .eyebrow {
    color: #c9ddf2;
}

.prestazioni-hero--cardiologia h1 {
    color: var(--white);
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.02;
}

.prestazioni-hero--cardiologia .prestazioni-hero__lead {
    max-width: 900px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 300;
    line-height: 1.22;
}

.prestazioni-hero--cardiologia .prestazioni-hero__lead strong,
.prestazioni-hero--cardiologia .prestazioni-hero__anchors a:hover span,
.prestazioni-hero--cardiologia .prestazioni-hero__anchors button:hover span {
    color: #9fc4e8;
}

.prestazioni-page--cardiologia .rm-district-guide--cardiologia,
.prestazioni-page--cardiologia .senologia-age-section {
    background: var(--white);
}

.prestazioni-page--cardiologia .eyebrow,
.prestazioni-page--cardiologia .rm-district-guide--cardiologia .eyebrow,
.prestazioni-page--cardiologia .senologia-exam-tabs-section__heading .eyebrow,
.prestazioni-page--cardiologia .cardiologia-faq-modal .eyebrow,
.prestazioni-page--cardiologia .cardiologia-faq-modal summary::after,
.prestazioni-page--cardiologia .senologia-path-group__body a,
.prestazioni-page--cardiologia .cardiologia-path-note .material-symbols-outlined {
    color: var(--panel-blue);
}

.prestazioni-page--cardiologia .cardiologia-path-note .button--blue,
.prestazioni-page--cardiologia .cardiologia-faq-modal .button--blue,
.prestazioni-page--cardiologia .senologia-exam-panel__copy .button {
    background: var(--panel-blue);
}

.prestazioni-page--cardiologia .rm-district-guide--cardiologia .rm-district-tag-group__icon img {
    filter: brightness(0) saturate(100%) invert(34%) sepia(21%) saturate(1145%) hue-rotate(170deg) brightness(90%) contrast(86%);
}

.prestazioni-page--cardiologia .cardiologia-exam-tabs {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}

.prestazioni-page--cardiologia .cardiologia-exam-tabs button {
    padding-inline: 8px;
    font-size: 12px;
}

.prestazioni-page--cardiologia .senologia-exam-tabs button[aria-selected="true"] {
    border-bottom-color: var(--panel-blue);
    color: var(--panel-blue);
}

.prestazioni-page--cardiologia .senologia-exam-panel__image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prestazioni-page--cardiologia .senologia-exam-panel__copy li::before {
    background: var(--panel-blue);
}

.prestazioni-page--cardiologia .rm-category-comfort--cardiologia {
    background: var(--panel-blue);
}

.prestazioni-page--cardiologia .rm-category-comfort--cardiologia .eyebrow,
.prestazioni-page--cardiologia .rm-category-prep .eyebrow {
    color: var(--white);
}

.prestazioni-page--cardiologia .rm-category-comfort--cardiologia .rm-category-comfort__image {
    background-image: url('/img/cuore3.png');
}

@media (max-width: 900px) {
    .prestazioni-hero--cardiologia {
        min-height: 520px;
        padding-top: 132px;
        padding-bottom: 60px;
        background:
            linear-gradient(180deg, rgba(26, 28, 28, .88) 0%, rgba(26, 28, 28, .72) 48%, rgba(26, 28, 28, .34) 100%),
            url("/img/hero_cardiologia.png") center / cover no-repeat;
    }

    .prestazioni-hero--cardiologia .prestazioni-hero__copy {
        max-width: 100%;
    }

    .prestazioni-page--cardiologia .cardiologia-exam-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prestazioni-page--cardiologia .senologia-exam-tabs button[aria-selected="true"] {
        border-color: var(--panel-blue);
        background: var(--panel-blue);
        color: var(--white);
    }
}
.prestazioni-page--cardiologia .prestazioni-hero--cardiologia .eyebrow {
    color: #c9ddf2;
}
.prestazioni-page--cardiologia .cardiologia-path-rich button,
.prestazioni-page--cardiologia .cardiologia-path-rich a {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    letter-spacing: 0;
    text-align: left;
    text-decoration: none;
    text-transform: none;
}

.prestazioni-page--cardiologia .cardiologia-path-rich button:hover,
.prestazioni-page--cardiologia .cardiologia-path-rich button:focus-visible,
.prestazioni-page--cardiologia .cardiologia-path-rich a:hover,
.prestazioni-page--cardiologia .cardiologia-path-rich a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prestazioni-page--cardiologia .cardiologia-booking-modal .eyebrow {
    color: var(--panel-blue);
}

.cardiologia-booking-modal__exam {
    margin: 22px 0 0;
    padding: 16px 18px;
    border: 1px solid rgba(56, 91, 127, .18);
    background: #f4f8fb;
    color: var(--charcoal);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.cardiologia-booking-modal__actions {
    margin-top: 24px;
}

.prestazioni-page--cardiologia .cardiologia-booking-modal .button--blue {
    background: var(--panel-blue);
}
.prestazioni-hero--gastroenterologia {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 150px var(--page-pad) 82px;
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url("/img/gastro.png") center right / cover no-repeat;
    color: var(--white);
}

.prestazioni-hero--gastroenterologia .prestazioni-hero__inner {
    width: min(100%, 980px);
}

.prestazioni-hero--gastroenterologia .prestazioni-hero__copy {
    align-self: center;
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: left;
    align-items: flex-start;
    max-width: 920px;
}

.prestazioni-hero--gastroenterologia .eyebrow,
.prestazioni-page--gastroenterologia .prestazioni-hero--gastroenterologia .eyebrow {
    color: #c9ddf2;
}

.prestazioni-hero--gastroenterologia h1 {
    color: var(--white);
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.02;
}

.prestazioni-hero--gastroenterologia .prestazioni-hero__lead {
    max-width: 900px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 300;
    line-height: 1.22;
}

.prestazioni-hero--gastroenterologia .prestazioni-hero__lead strong,
.prestazioni-hero--gastroenterologia .prestazioni-hero__anchors a:hover span,
.prestazioni-hero--gastroenterologia .prestazioni-hero__anchors button:hover span {
    color: #9fc4e8;
}

.prestazioni-page--gastroenterologia .rm-district-guide--gastroenterologia {
    background: var(--white);
}

.prestazioni-page--gastroenterologia .eyebrow,
.prestazioni-page--gastroenterologia .rm-district-guide--gastroenterologia .eyebrow,
.prestazioni-page--gastroenterologia .senologia-exam-tabs-section__heading .eyebrow,
.prestazioni-page--gastroenterologia .gastroenterologia-faq-modal .eyebrow,
.prestazioni-page--gastroenterologia .gastroenterologia-faq-modal summary::after,
.prestazioni-page--gastroenterologia .senologia-path-group__body a,
.prestazioni-page--gastroenterologia .gastroenterologia-path-note .material-symbols-outlined {
    color: var(--panel-blue);
}

.prestazioni-page--gastroenterologia .gastroenterologia-path-note .button--blue,
.prestazioni-page--gastroenterologia .gastroenterologia-faq-modal .button--blue,
.prestazioni-page--gastroenterologia .senologia-exam-panel__copy .button {
    background: var(--panel-blue);
}

.prestazioni-page--gastroenterologia .rm-district-guide--gastroenterologia .rm-district-tag-group__icon img {
    filter: brightness(0) saturate(100%) invert(34%) sepia(21%) saturate(1145%) hue-rotate(170deg) brightness(90%) contrast(86%);
}

.prestazioni-page--gastroenterologia .gastroenterologia-exam-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prestazioni-page--gastroenterologia .senologia-exam-tabs button[aria-selected="true"] {
    border-bottom-color: var(--panel-blue);
    color: var(--panel-blue);
}

.prestazioni-page--gastroenterologia .senologia-exam-panel__copy li::before {
    background: var(--panel-blue);
}

.prestazioni-page--gastroenterologia .rm-category-comfort--gastroenterologia {
    background: var(--panel-blue);
}

.prestazioni-page--gastroenterologia .rm-category-comfort--gastroenterologia .eyebrow,
.prestazioni-page--gastroenterologia .rm-category-prep .eyebrow {
    color: var(--white);
}

.prestazioni-page--gastroenterologia .rm-category-comfort--gastroenterologia .rm-category-comfort__image {
    background-image: url('/img/entero.png');
}

@media (max-width: 900px) {
    .prestazioni-hero--gastroenterologia {
        min-height: 520px;
        padding-top: 132px;
        padding-bottom: 60px;
        background:
            linear-gradient(180deg, rgba(26, 28, 28, .88) 0%, rgba(26, 28, 28, .72) 48%, rgba(26, 28, 28, .34) 100%),
            url("/img/gastro.png") center / cover no-repeat;
    }

    .prestazioni-hero--gastroenterologia .prestazioni-hero__copy {
        max-width: 100%;
    }

    .prestazioni-page--gastroenterologia .gastroenterologia-exam-tabs {
        grid-template-columns: 1fr;
    }

    .prestazioni-page--gastroenterologia .senologia-exam-tabs button[aria-selected="true"] {
        border-color: var(--panel-blue);
        background: var(--panel-blue);
        color: var(--white);
    }
}

/* Radiologia tradizionale refinements */
.prestazioni-page--radiologia-tradizionale .prestazioni-hero--radiologia-tradizionale {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 150px var(--page-pad) 82px;
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url('/img/rx.png') center right / cover no-repeat;
    color: var(--white);
}

.prestazioni-page--radiologia-tradizionale .prestazioni-hero--radiologia-tradizionale .prestazioni-hero__inner {
    width: min(100%, 980px);
}

.prestazioni-page--radiologia-tradizionale .prestazioni-hero--radiologia-tradizionale .prestazioni-hero__copy {
    align-self: center;
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 900px;
    align-items: flex-start;
    text-align: left;
}

.prestazioni-page--radiologia-tradizionale .prestazioni-hero--radiologia-tradizionale h1 {
    color: var(--white);
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.02;
}

.prestazioni-page--radiologia-tradizionale .prestazioni-hero--radiologia-tradizionale .eyebrow {
    color: #c9ddf2;
}

.prestazioni-page--radiologia-tradizionale .prestazioni-hero--radiologia-tradizionale .prestazioni-hero__lead {
    max-width: 860px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 300;
    line-height: 1.22;
}

.prestazioni-page--radiologia-tradizionale .prestazioni-hero--radiologia-tradizionale .prestazioni-hero__lead strong,
.prestazioni-page--radiologia-tradizionale .prestazioni-hero--radiologia-tradizionale .prestazioni-hero__anchors a:hover span,
.prestazioni-page--radiologia-tradizionale .prestazioni-hero--radiologia-tradizionale .prestazioni-hero__anchors button:hover span {
    color: #9fc4e8;
}

.prestazioni-page--radiologia-tradizionale .rm-district-guide--radiologia {
    background: var(--white);
}

.prestazioni-page--radiologia-tradizionale .radiologia-exam-tabs-section {
    background: #f5f5f3;
}

.prestazioni-page--radiologia-tradizionale .rm-district-guide--radiologia .eyebrow,
.prestazioni-page--radiologia-tradizionale .senologia-exam-tabs-section__heading .eyebrow,
.prestazioni-page--radiologia-tradizionale .radiologia-faq-modal .eyebrow,
.prestazioni-page--radiologia-tradizionale .radiologia-faq-modal summary::after {
    color: var(--panel-blue);
}

.prestazioni-page--radiologia-tradizionale .radiologia-path-group .rm-district-tag-group__icon img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(19%) saturate(1275%) hue-rotate(168deg) brightness(94%) contrast(92%);
}

.prestazioni-page--radiologia-tradizionale .radiologia-path-group .senologia-path-group__body a,
.prestazioni-page--radiologia-tradizionale .radiologia-path-note .material-symbols-outlined {
    color: var(--panel-blue);
}

.prestazioni-page--radiologia-tradizionale .radiologia-path-note {
    border: 0;
    background: var(--charcoal);
    color: var(--white);
}

.prestazioni-page--radiologia-tradizionale .radiologia-path-note p {
    color: rgba(255, 255, 255, .88);
}

.prestazioni-page--radiologia-tradizionale .radiologia-path-note .button--blue,
.prestazioni-page--radiologia-tradizionale .radiologia-faq-modal .button--blue,
.prestazioni-page--radiologia-tradizionale .senologia-exam-panel__copy .button {
    background: var(--panel-blue);
}

.prestazioni-page--radiologia-tradizionale .radiologia-path-note .button--light {
    background: var(--white);
    color: var(--charcoal);
}

.prestazioni-page--radiologia-tradizionale .radiologia-exam-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prestazioni-page--radiologia-tradizionale .radiologia-exam-tabs button[aria-selected="true"] {
    border-bottom-color: var(--panel-blue);
    background: transparent;
    color: var(--panel-blue);
}

.prestazioni-page--radiologia-tradizionale .senologia-exam-panel__copy li::before {
    background: var(--panel-blue);
}

.prestazioni-page--radiologia-tradizionale .radiologia-exam-panel__image {
    background: #eef2f4;
}

.prestazioni-page--radiologia-tradizionale .radiologia-exam-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prestazioni-page--radiologia-tradizionale .radiologia-patient {
    background: #f5f7f8;
}

.prestazioni-page--radiologia-tradizionale .radiologia-prep {
    background: var(--panel-blue);
}

@media (max-width: 900px) {
    .prestazioni-page--radiologia-tradizionale .prestazioni-hero--radiologia-tradizionale {
        min-height: 520px;
        padding-top: 132px;
        padding-bottom: 60px;
        background:
            linear-gradient(180deg, rgba(26, 28, 28, .88) 0%, rgba(26, 28, 28, .72) 48%, rgba(26, 28, 28, .34) 100%),
            url('/img/rx.png') center / cover no-repeat;
    }

    .prestazioni-page--radiologia-tradizionale .radiologia-exam-tabs {
        grid-template-columns: 1fr;
    }

    .prestazioni-page--radiologia-tradizionale .radiologia-exam-tabs button[aria-selected="true"] {
        border-color: var(--panel-blue);
        background: var(--panel-blue);
        color: var(--white);
    }
}

/* Ecografia and MOC DEXA */
.prestazioni-page--ecografia .prestazioni-hero--ecografia,
.prestazioni-page--moc-dexa .prestazioni-hero--moc-dexa {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 150px var(--page-pad) 82px;
    color: var(--white);
}

.prestazioni-page--ecografia .prestazioni-hero--ecografia {
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url('/img/eco_mammo.png') center right / cover no-repeat;
}

.prestazioni-page--moc-dexa .prestazioni-hero--moc-dexa {
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url('/img/hero_moc.png') center right / cover no-repeat;
}

.prestazioni-page--ecografia .prestazioni-hero__inner,
.prestazioni-page--moc-dexa .prestazioni-hero__inner {
    width: min(100%, 980px);
}

.prestazioni-page--ecografia .prestazioni-hero__copy,
.prestazioni-page--moc-dexa .prestazioni-hero__copy {
    align-self: center;
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 900px;
    align-items: flex-start;
    text-align: left;
}

.prestazioni-page--ecografia .prestazioni-hero h1,
.prestazioni-page--moc-dexa .prestazioni-hero h1 {
    color: var(--white);
    font-size: clamp(38px, 4.8vw, 64px);
    line-height: 1.02;
}

.prestazioni-page--ecografia .prestazioni-hero .eyebrow,
.prestazioni-page--moc-dexa .prestazioni-hero .eyebrow {
    color: #c9ddf2;
}

.prestazioni-page--ecografia .prestazioni-hero__lead,
.prestazioni-page--moc-dexa .prestazioni-hero__lead {
    max-width: 860px;
    margin-top: 28px;
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-display);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 300;
    line-height: 1.22;
}

.prestazioni-page--ecografia .prestazioni-hero__lead strong,
.prestazioni-page--ecografia .prestazioni-hero__anchors a:hover span,
.prestazioni-page--ecografia .prestazioni-hero__anchors button:hover span,
.prestazioni-page--moc-dexa .prestazioni-hero__lead strong,
.prestazioni-page--moc-dexa .prestazioni-hero__anchors a:hover span,
.prestazioni-page--moc-dexa .prestazioni-hero__anchors button:hover span {
    color: #9fc4e8;
}

.prestazioni-page--ecografia .rm-district-guide--ecografia,
.prestazioni-page--moc-dexa .rm-district-guide--moc {
    background: var(--white);
}

.prestazioni-page--ecografia .ecografia-exam-tabs-section,
.prestazioni-page--moc-dexa .moc-exam-tabs-section {
    background: #f5f5f3;
}

.prestazioni-page--ecografia .rm-district-guide--ecografia .eyebrow,
.prestazioni-page--ecografia .senologia-exam-tabs-section__heading .eyebrow,
.prestazioni-page--ecografia .ecografia-faq-modal .eyebrow,
.prestazioni-page--ecografia .ecografia-faq-modal summary::after,
.prestazioni-page--moc-dexa .rm-district-guide--moc .eyebrow,
.prestazioni-page--moc-dexa .senologia-exam-tabs-section__heading .eyebrow,
.prestazioni-page--moc-dexa .moc-faq-modal .eyebrow,
.prestazioni-page--moc-dexa .moc-faq-modal summary::after {
    color: var(--panel-blue);
}

.prestazioni-page--ecografia .ecografia-path-group .rm-district-tag-group__icon img,
.prestazioni-page--moc-dexa .moc-path-group .rm-district-tag-group__icon img {
    filter: brightness(0) saturate(100%) invert(22%) sepia(19%) saturate(1275%) hue-rotate(168deg) brightness(94%) contrast(92%);
}

.prestazioni-page--ecografia .ecografia-path-group .senologia-path-group__body a,
.prestazioni-page--ecografia .ecografia-path-note .material-symbols-outlined,
.prestazioni-page--moc-dexa .moc-path-group .senologia-path-group__body a,
.prestazioni-page--moc-dexa .moc-path-note .material-symbols-outlined {
    color: var(--panel-blue);
}

.prestazioni-page--ecografia .ecografia-path-note,
.prestazioni-page--moc-dexa .moc-path-note {
    border: 0;
    background: var(--charcoal);
    color: var(--white);
}

.prestazioni-page--ecografia .ecografia-path-note p,
.prestazioni-page--moc-dexa .moc-path-note p {
    color: rgba(255, 255, 255, .88);
}

.prestazioni-page--ecografia .ecografia-path-note .button--blue,
.prestazioni-page--ecografia .ecografia-faq-modal .button--blue,
.prestazioni-page--ecografia .senologia-exam-panel__copy .button,
.prestazioni-page--moc-dexa .moc-path-note .button--blue,
.prestazioni-page--moc-dexa .moc-faq-modal .button--blue,
.prestazioni-page--moc-dexa .senologia-exam-panel__copy .button {
    background: var(--panel-blue);
}

.prestazioni-page--ecografia .ecografia-path-note .button--light,
.prestazioni-page--moc-dexa .moc-path-note .button--light {
    background: var(--white);
    color: var(--charcoal);
}

.prestazioni-page--ecografia .ecografia-exam-tabs,
.prestazioni-page--moc-dexa .moc-exam-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prestazioni-page--ecografia .ecografia-exam-tabs button[aria-selected="true"],
.prestazioni-page--moc-dexa .moc-exam-tabs button[aria-selected="true"] {
    border-bottom-color: var(--panel-blue);
    background: transparent;
    color: var(--panel-blue);
}

.prestazioni-page--ecografia .senologia-exam-panel__copy li::before,
.prestazioni-page--moc-dexa .senologia-exam-panel__copy li::before {
    background: var(--panel-blue);
}

.prestazioni-page--ecografia .ecografia-exam-panel__image,
.prestazioni-page--moc-dexa .moc-exam-panel__image {
    background: #eef2f4;
}

.prestazioni-page--ecografia .ecografia-exam-panel__image img,
.prestazioni-page--moc-dexa .moc-exam-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prestazioni-page--ecografia .ecografia-exam-panel__image img[src$=".svg"],
.prestazioni-page--moc-dexa .moc-exam-panel__image img[src$=".svg"] {
    width: 72%;
    height: 72%;
    object-fit: contain;
    margin: 14%;
}

.prestazioni-page--ecografia .ecografia-patient,
.prestazioni-page--moc-dexa .moc-patient {
    background: #f5f7f8;
}

.prestazioni-page--ecografia .ecografia-prep,
.prestazioni-page--moc-dexa .moc-prep {
    background: var(--panel-blue);
}

@media (max-width: 900px) {
    .prestazioni-page--ecografia .prestazioni-hero--ecografia,
    .prestazioni-page--moc-dexa .prestazioni-hero--moc-dexa {
        min-height: 520px;
        padding-top: 132px;
        padding-bottom: 60px;
    }

    .prestazioni-page--ecografia .prestazioni-hero--ecografia {
        background:
            linear-gradient(180deg, rgba(26, 28, 28, .88) 0%, rgba(26, 28, 28, .72) 48%, rgba(26, 28, 28, .34) 100%),
            url('/img/eco_mammo.png') center / cover no-repeat;
    }

    .prestazioni-page--moc-dexa .prestazioni-hero--moc-dexa {
        background:
            linear-gradient(180deg, rgba(26, 28, 28, .88) 0%, rgba(26, 28, 28, .72) 48%, rgba(26, 28, 28, .34) 100%),
            url('/img/hero_moc.png') center / cover no-repeat;
    }

    .prestazioni-page--ecografia .ecografia-exam-tabs,
    .prestazioni-page--moc-dexa .moc-exam-tabs {
        grid-template-columns: 1fr;
    }

    .prestazioni-page--ecografia .ecografia-exam-tabs button[aria-selected="true"],
    .prestazioni-page--moc-dexa .moc-exam-tabs button[aria-selected="true"] {
        border-color: var(--panel-blue);
        background: var(--panel-blue);
        color: var(--white);
    }
}

/* Contacts fullscreen map layout */
.contacts-main--map-layout {
    min-height: calc(100vh - 82px);
    background: var(--white);
}

.contacts-map-section--fullscreen {
    padding: 0;
}

.contacts-map-shell--fullscreen {
    width: 100%;
    min-height: calc(100vh - 82px);
    display: grid;
    grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
    background: var(--white);
    overflow: hidden;
}

.contacts-locations--sidebar {
    order: 1;
    max-height: calc(100vh - 82px);
    padding: clamp(24px, 2.6vw, 38px);
    border-right: 1px solid rgba(31, 31, 31, .12);
    border-left: 0;
    background: rgba(255, 255, 255, .96);
    box-shadow: 18px 0 48px rgba(31, 31, 31, .08);
}

.contacts-locations__heading--main {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.contacts-locations__heading--main h1 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;
    line-height: .96;
}

.contacts-locations__heading--main p {
    max-width: 280px;
    margin: 0;
    color: #55595a;
    font-size: 16px;
    line-height: 1.5;
}

.contacts-location-list--all {
    gap: 12px;
}

.contacts-map--fullscreen {
    order: 2;
    min-height: calc(100vh - 82px);
}

.contacts-map--fullscreen .contacts-map__canvas {
    min-height: calc(100vh - 82px);
}

.contacts-main--map-layout .contacts-location-card {
    min-height: auto;
    border-radius: 18px;
    padding: 18px;
    background: #f5f7f8;
    border-color: rgba(31, 31, 31, .08);
}

.contacts-main--map-layout .contacts-location-card.is-active {
    background: var(--panel-blue);
}

.contacts-main--map-layout .contacts-location-card h3 {
    font-size: clamp(20px, 1.45vw, 25px);
}

.contacts-main--map-layout .contacts-location-card__actions .button {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
}

@media (max-width: 900px) {
    .contacts-map-shell--fullscreen {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .contacts-locations--sidebar {
        max-height: none;
        width: 100%;
        padding: 104px 22px 28px;
        border-right: 0;
        box-shadow: none;
    }

    .contacts-locations__heading--main p {
        max-width: 340px;
    }

    .contacts-main--map-layout .contacts-location-card {
        width: 100%;
        max-width: 100%;
        border-radius: 18px;
    }

    .contacts-map--fullscreen,
    .contacts-map--fullscreen .contacts-map__canvas {
        min-height: 560px;
    }
}

/* Contacts sidebar sizing adjustment */
.contacts-map-shell--fullscreen {
    grid-template-columns: minmax(420px, 34vw) minmax(0, 1fr);
}

.contacts-locations--sidebar {
    padding-top: clamp(78px, 8vh, 118px);
}

@media (max-width: 900px) {
    .contacts-map-shell--fullscreen {
        grid-template-columns: 1fr;
    }

    .contacts-locations--sidebar {
        padding-top: 132px;
    }
}

/* Contacts secondary locations spacing */
.contacts-map-shell--fullscreen {
    grid-template-columns: minmax(370px, 29vw) minmax(0, 1fr);
}

.contacts-other-title {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(31, 31, 31, .12);
}

.contacts-other-title .eyebrow {
    color: var(--panel-blue);
}

@media (max-width: 900px) {
    .contacts-map-shell--fullscreen {
        grid-template-columns: 1fr;
    }

    .contacts-other-title {
        margin-top: 26px;
    }
}

/* Contacts sidebar final width */
.contacts-map-shell--fullscreen {
    grid-template-columns: minmax(340px, 26vw) minmax(0, 1fr);
}

@media (max-width: 900px) {
    .contacts-map-shell--fullscreen {
        grid-template-columns: 1fr;
    }
}

/* Contacts directions overlay */
.contacts-map-shell--fullscreen {
    grid-template-columns: minmax(285px, 22vw) minmax(0, 1fr);
}

.contacts-directions-panel {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    width: min(430px, calc(100% - 48px));
    max-height: calc(100vh - 130px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    background: rgba(17, 20, 22, .94);
    color: var(--white);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    backdrop-filter: blur(10px);
}

.contacts-directions-panel summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    cursor: pointer;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    list-style: none;
    text-transform: uppercase;
}

.contacts-directions-panel summary::-webkit-details-marker {
    display: none;
}

.contacts-directions-panel summary::after {
    content: "-";
    color: #9fc4e8;
    font-size: 24px;
    line-height: 1;
}

.contacts-directions-panel:not([open]) summary::after {
    content: "+";
}

.contacts-directions-panel__body {
    max-height: calc(100vh - 206px);
    padding: 0 20px 20px;
    overflow-y: auto;
    color: rgba(255, 255, 255, .86);
}

.contacts-directions-panel__body h2 {
    margin: 20px 0 8px;
    color: #9fc4e8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contacts-directions-panel__body p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    line-height: 1.55;
}

.contacts-directions-panel__body strong {
    color: var(--white);
}

@media (max-width: 900px) {
    .contacts-map-shell--fullscreen {
        grid-template-columns: 1fr;
    }

    .contacts-directions-panel {
        top: 14px;
        right: 14px;
        left: 14px;
        width: auto;
        max-height: 420px;
    }

    .contacts-directions-panel__body {
        max-height: 340px;
    }
}

/* Contacts directions compact FAQ */
.contacts-directions-panel {
    width: min(380px, calc(100% - 48px));
    max-height: min(520px, calc(100vh - 130px));
}

.contacts-directions-panel__body {
    max-height: min(438px, calc(100vh - 206px));
}

.contacts-directions-panel__body > p {
    margin-bottom: 14px;
}

.contacts-directions-item {
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.contacts-directions-item summary {
    padding: 14px 0;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    list-style: none;
    text-transform: uppercase;
}

.contacts-directions-item summary::-webkit-details-marker {
    display: none;
}

.contacts-directions-item summary::after {
    float: right;
    color: #9fc4e8;
    content: "+";
    font-size: 20px;
    line-height: 1;
}

.contacts-directions-item[open] summary::after {
    content: "-";
}

.contacts-directions-item div {
    padding: 0 0 12px;
}

.contacts-directions-item p {
    font-size: 13px;
    line-height: 1.5;
}

.contacts-directions-panel__body h2 {
    display: none;
}

@media (max-width: 900px) {
    .contacts-directions-panel {
        max-height: 360px;
    }

    .contacts-directions-panel__body {
        max-height: 278px;
    }
}

/* Contacts directions smaller panel */
.contacts-directions-panel {
    top: 18px;
    right: 18px;
    width: min(330px, calc(100% - 36px));
    max-height: 300px;
}

.contacts-directions-panel summary {
    padding: 14px 16px;
    font-size: 13px;
}

.contacts-directions-panel__body {
    max-height: 226px;
    padding: 0 16px 16px;
}

.contacts-directions-panel__body > p,
.contacts-directions-item p {
    font-size: 12px;
    line-height: 1.42;
}

.contacts-directions-item summary {
    padding: 10px 0;
    font-size: 12px;
}

@media (max-width: 900px) {
    .contacts-directions-panel {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        max-height: 260px;
    }

    .contacts-directions-panel__body {
        max-height: 190px;
    }
}

/* Contacts directions bottom placement */
.contacts-directions-panel {
    top: auto;
    right: 18px;
    bottom: 18px;
}

@media (max-width: 900px) {
    .contacts-directions-panel {
        top: auto;
        right: 10px;
        bottom: 10px;
        left: 10px;
    }
}

/* Contacts directions upward expansion and dark scrollbar */
.contacts-directions-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contacts-directions-panel__body {
    scrollbar-color: rgba(159, 196, 232, .55) rgba(255, 255, 255, .08);
    scrollbar-width: thin;
}

.contacts-directions-panel__body::-webkit-scrollbar,
.contacts-directions-item div::-webkit-scrollbar {
    width: 9px;
}

.contacts-directions-panel__body::-webkit-scrollbar-track,
.contacts-directions-item div::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
}

.contacts-directions-panel__body::-webkit-scrollbar-thumb,
.contacts-directions-item div::-webkit-scrollbar-thumb {
    background: rgba(159, 196, 232, .58);
    border: 2px solid rgba(17, 20, 22, .94);
    border-radius: 999px;
}

.contacts-directions-panel__body::-webkit-scrollbar-thumb:hover,
.contacts-directions-item div::-webkit-scrollbar-thumb:hover {
    background: rgba(159, 196, 232, .82);
}

.contacts-directions-item div {
    max-height: 154px;
    overflow-y: auto;
    scrollbar-color: rgba(159, 196, 232, .55) rgba(255, 255, 255, .08);
    scrollbar-width: thin;
}

/* Contacts directions expanded reading height */
.contacts-directions-panel {
    max-height: min(720px, calc(100vh - 120px));
}

.contacts-directions-panel__body {
    max-height: min(638px, calc(100vh - 196px));
}

.contacts-directions-item div {
    max-height: none;
    overflow-y: visible;
}

@media (max-width: 900px) {
    .contacts-directions-panel {
        max-height: min(620px, calc(100vh - 84px));
    }

    .contacts-directions-panel__body {
        max-height: min(538px, calc(100vh - 158px));
    }
}

/* Contacts cards compact contact row */
.contacts-main--map-layout .contacts-location-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.contacts-main--map-layout .contacts-location-card {
    padding: 16px;
}

.contacts-main--map-layout .contacts-location-card p {
    margin-bottom: 8px;
}

.contacts-main--map-layout .contacts-location-card__actions {
    margin-top: 10px;
}

@media (max-width: 420px) {
    .contacts-main--map-layout .contacts-location-card dl {
        grid-template-columns: 1fr;
    }
}

/* Contacts cards inline phone email */
.contacts-main--map-layout .contacts-location-card dl {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: baseline;
}

.contacts-main--map-layout .contacts-location-card dl div {
    display: inline-flex;
    min-width: 0;
    gap: 6px;
    align-items: baseline;
}

.contacts-main--map-layout .contacts-location-card dt {
    margin: 0;
    flex: 0 0 auto;
}

.contacts-main--map-layout .contacts-location-card dd {
    min-width: 0;
}

@media (max-width: 420px) {
    .contacts-main--map-layout .contacts-location-card dl,
    .contacts-main--map-layout .contacts-location-card dl div {
        display: grid;
        gap: 4px;
    }
}

/* Contacts card action spacing */
.contacts-main--map-layout .contacts-location-card__actions {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(31, 31, 31, .1);
}

.contacts-main--map-layout .contacts-location-card.is-active .contacts-location-card__actions {
    border-top-color: rgba(255, 255, 255, .18);
}

.contacts-directions-panel[hidden] {
    display: none !important;
}

/* Footer legal information */
.site-footer__legal {
    width: min(460px, 100%);
    display: grid;
    gap: 5px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-style: normal;
    font-size: 11px;
    line-height: 1.42;
}

.site-footer__legal strong {
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.site-footer__legal span,
.site-footer__legal small {
    display: block;
}

.site-footer__legal small {
    max-width: 520px;
    color: rgba(255, 255, 255, .54);
    font-size: 10px;
    line-height: 1.45;
}

.site-footer__brand p {
    display: none;
}

/* Footer legal fine tuning */
.site-footer__legal small {
    font-size: 10.8px;
    line-height: 1.5;
}


/* Experimental home diagnostics page */
.services-lab-section {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 8vw, 118px) 0;
    background: #f3f6f8;
}

.services-lab-section__inner {
    position: relative;
    z-index: 1;
}

.services-lab-heading {
    max-width: 830px;
    margin-bottom: clamp(30px, 4vw, 54px);
}

.services-lab-heading h2 {
    margin: 10px 0 14px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 68px);
    line-height: .94;
    letter-spacing: 0;
}

.services-lab-heading p {
    margin: 0;
    max-width: 760px;
    color: #4e5a62;
    font-size: clamp(16px, 1.4vw, 19px);
}

.services-lab-layout {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.55fr);
    gap: clamp(20px, 3vw, 34px);
    align-items: stretch;
}

.services-lab-focus {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 8px;
    background: var(--panel-blue);
    color: var(--white);
    box-shadow: 0 22px 48px rgba(19, 47, 73, .18);
}

.services-lab-focus__kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 22px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.services-lab-focus h3 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    letter-spacing: 0;
}

.services-lab-focus p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.services-lab-focus__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 28px 0;
}

.services-lab-focus__stats span {
    min-width: 0;
    padding: 12px 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.2;
}

.services-lab-focus__stats strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1;
}

.services-lab-focus__media {
    margin-top: auto;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 11;
    background: rgba(255, 255, 255, .08);
}

.services-lab-focus__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-lab-groups {
    display: grid;
    gap: 16px;
}

.services-lab-group {
    display: grid;
    grid-template-columns: minmax(210px, .55fr) minmax(0, 1fr);
    gap: clamp(16px, 2vw, 24px);
    padding: clamp(18px, 2.3vw, 26px);
    border: 1px solid rgba(56, 91, 127, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 34px rgba(22, 39, 54, .07);
}

.services-lab-group__head h3 {
    margin: 0 0 10px;
    color: var(--panel-blue);
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.02;
    letter-spacing: 0;
}

.services-lab-group__head p {
    margin: 0;
    color: #5f6970;
    font-size: 14px;
}

.services-lab-list {
    display: grid;
    gap: 10px;
}

.services-lab-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    gap: 13px;
    align-items: center;
    min-height: 84px;
    padding: 12px 14px;
    border: 1px solid rgba(56, 91, 127, .14);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.services-lab-card:hover,
.services-lab-card:focus-visible {
    border-color: rgba(0, 88, 181, .45);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 88, 181, .12);
    outline: none;
}

.services-lab-card__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #edf4fb;
}

.services-lab-card__icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.services-lab-card__copy {
    min-width: 0;
}

.services-lab-card__copy strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.05;
    letter-spacing: 0;
}

.services-lab-card__copy small {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    color: #5f6970;
    font-size: 13px;
    line-height: 1.32;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.services-lab-card > .material-symbols-outlined {
    color: var(--blue);
    font-size: 21px;
}

@media (max-width: 1080px) {
    .services-lab-layout,
    .services-lab-group {
        grid-template-columns: 1fr;
    }

    .services-lab-focus__media {
        max-height: 320px;
    }
}

@media (max-width: 640px) {
    .services-lab-section {
        padding: 64px 0;
    }

    .services-lab-focus__stats {
        grid-template-columns: 1fr;
    }

    .services-lab-card {
        grid-template-columns: 40px minmax(0, 1fr) 22px;
        min-height: 78px;
        padding: 11px 12px;
    }

    .services-lab-card__icon {
        width: 40px;
        height: 40px;
    }

    .services-lab-card__copy strong {
        font-size: 17px;
    }
}


/* Experimental home diagnostics page - gallery version */
.services-lab-section--gallery {
    padding: clamp(78px, 8vw, 118px) 0;
    background: #f4f6f8;
}

.services-lab-section--gallery .services-lab-top {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr);
    gap: clamp(22px, 4vw, 64px);
    align-items: end;
    margin-bottom: clamp(24px, 3vw, 38px);
}

.services-lab-section--gallery .services-lab-heading {
    max-width: 850px;
    margin: 0;
}

.services-lab-section--gallery .services-lab-heading h2 {
    margin: 10px 0 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 82px);
    line-height: .9;
    letter-spacing: 0;
}

.services-lab-section--gallery .services-lab-top > p {
    margin: 0 0 8px;
    color: #53616b;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.45;
}

.services-lab-visual {
    position: relative;
    min-height: clamp(230px, 28vw, 390px);
    margin-bottom: clamp(18px, 2.2vw, 28px);
    overflow: hidden;
    border-radius: 8px;
    background: var(--panel-blue);
    box-shadow: 0 24px 54px rgba(23, 43, 60, .15);
}

.services-lab-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 36, 57, .82), rgba(14, 36, 57, .42) 45%, rgba(14, 36, 57, .08));
}

.services-lab-visual img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
}

.services-lab-visual__content {
    position: absolute;
    left: clamp(22px, 4vw, 54px);
    bottom: clamp(22px, 4vw, 48px);
    z-index: 1;
    max-width: 560px;
    color: var(--white);
}

.services-lab-visual__content span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.services-lab-visual__content strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: .98;
    letter-spacing: 0;
}

.services-lab-section--gallery .services-lab-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.services-lab-section--gallery .services-lab-card {
    position: relative;
    display: flex;
    min-height: 238px;
    padding: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(56, 91, 127, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(23, 43, 60, .07);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.services-lab-section--gallery .services-lab-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 8px 8px 0 0;
    background: var(--panel-blue);
    opacity: .86;
}

.services-lab-section--gallery .services-lab-card:hover,
.services-lab-section--gallery .services-lab-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(0, 88, 181, .45);
    background: var(--white);
    box-shadow: 0 22px 42px rgba(0, 88, 181, .13);
    outline: none;
}

.services-lab-section--gallery .services-lab-card--featured {
    grid-column: span 2;
    min-height: 278px;
    background: #ffffff;
}

.services-lab-card__number {
    margin-left: auto;
    color: rgba(56, 91, 127, .32);
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.services-lab-section--gallery .services-lab-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.services-lab-section--gallery .services-lab-card__icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #edf4fb;
}

.services-lab-section--gallery .services-lab-card__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.services-lab-section--gallery .services-lab-card__head strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1;
    letter-spacing: 0;
}

.services-lab-card__text {
    display: -webkit-box;
    margin-top: 18px;
    overflow: hidden;
    color: #5d6972;
    font-size: 14px;
    line-height: 1.42;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.services-lab-card--featured .services-lab-card__text {
    max-width: 88%;
    font-size: 15px;
    -webkit-line-clamp: 3;
}

.services-lab-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 22px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}

.services-lab-card__action .material-symbols-outlined {
    font-size: 20px;
    transition: transform .2s ease;
}

.services-lab-card:hover .services-lab-card__action .material-symbols-outlined,
.services-lab-card:focus-visible .services-lab-card__action .material-symbols-outlined {
    transform: translateX(4px);
}

@media (max-width: 1180px) {
    .services-lab-section--gallery .services-lab-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .services-lab-section--gallery .services-lab-top {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .services-lab-section--gallery .services-lab-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .services-lab-section--gallery {
        padding: 64px 0;
    }

    .services-lab-visual {
        min-height: 310px;
    }

    .services-lab-visual::after {
        background: linear-gradient(0deg, rgba(14, 36, 57, .88), rgba(14, 36, 57, .2));
    }

    .services-lab-section--gallery .services-lab-grid,
    .services-lab-section--gallery .services-lab-card--featured {
        grid-template-columns: 1fr;
        grid-column: auto;
    }

    .services-lab-section--gallery .services-lab-card {
        min-height: 218px;
        padding: 20px;
    }
}


/* Experimental home diagnostics page - editorial version */
.services-editorial-section {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 8vw, 124px) 0;
    background: #f3f5f6;
}

.services-editorial-section__inner {
    position: relative;
    z-index: 1;
}

.services-editorial-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .52fr);
    gap: clamp(24px, 5vw, 82px);
    align-items: end;
    margin-bottom: clamp(34px, 5vw, 66px);
}

.services-editorial-intro h2 {
    margin: 10px 0 0;
    max-width: 840px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 86px);
    line-height: .9;
    letter-spacing: 0;
}

.services-editorial-intro p {
    margin: 0 0 10px;
    color: #52606a;
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.48;
}

.services-editorial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .75fr);
    gap: clamp(24px, 4vw, 58px);
    align-items: stretch;
}

.services-editorial-list {
    display: grid;
    border-top: 1px solid rgba(56, 91, 127, .24);
}

.services-editorial-block {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: clamp(18px, 3vw, 36px);
    padding: clamp(26px, 3.5vw, 44px) 0;
    border-bottom: 1px solid rgba(56, 91, 127, .18);
}

.services-editorial-block__label {
    color: var(--panel-blue);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.services-editorial-block__copy h3 {
    margin: 0 0 12px;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    line-height: .98;
    letter-spacing: 0;
}

.services-editorial-block__copy p {
    margin: 0;
    max-width: 760px;
    color: #5d6870;
    font-size: 15px;
    line-height: 1.55;
}

.services-editorial-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.services-editorial-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(56, 91, 127, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: var(--ink);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.services-editorial-links a:hover,
.services-editorial-links a:focus-visible {
    border-color: var(--panel-blue);
    background: var(--panel-blue);
    color: var(--white);
    transform: translateY(-1px);
    outline: none;
}

.services-editorial-links img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.services-editorial-links a:hover img,
.services-editorial-links a:focus-visible img {
    filter: brightness(0) invert(1);
}

.services-editorial-media {
    position: sticky;
    top: 96px;
    align-self: start;
    min-height: 620px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--panel-blue);
    box-shadow: 0 24px 54px rgba(23, 43, 60, .16);
}

.services-editorial-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 32, 52, .08), rgba(12, 32, 52, .72));
}

.services-editorial-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
}

.services-editorial-media__caption {
    position: absolute;
    left: clamp(22px, 3vw, 34px);
    right: clamp(22px, 3vw, 34px);
    bottom: clamp(22px, 3vw, 34px);
    z-index: 1;
    color: var(--white);
}

.services-editorial-media__caption span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.services-editorial-media__caption strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 42px);
    line-height: .98;
    letter-spacing: 0;
}

@media (max-width: 1080px) {
    .services-editorial-intro,
    .services-editorial-layout {
        grid-template-columns: 1fr;
    }

    .services-editorial-media {
        position: relative;
        top: auto;
        min-height: 390px;
    }
}

@media (max-width: 640px) {
    .services-editorial-section {
        padding: 64px 0;
    }

    .services-editorial-block {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .services-editorial-block__label {
        font-size: 20px;
    }

    .services-editorial-links a {
        width: 100%;
        justify-content: flex-start;
    }

    .services-editorial-media {
        min-height: 340px;
    }
}


/* Experimental home diagnostics page - refined original grid */
.home-diagnostica-test .services-section--refined {
    padding: clamp(78px, 8vw, 118px) 0;
    background: linear-gradient(180deg, #f4f6f8 0%, #ffffff 100%);
}

.home-diagnostica-test .services-refined-heading {
    max-width: 760px;
    margin-bottom: clamp(30px, 4vw, 52px);
}

.home-diagnostica-test .services-refined-heading h2 {
    margin-bottom: 14px;
}

.home-diagnostica-test .services-refined-heading p {
    margin: 0;
    color: #52606a;
    font-size: clamp(16px, 1.45vw, 20px);
    line-height: 1.48;
}

.home-diagnostica-test .services-grid--refined {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-diagnostica-test .service-card--refined {
    position: relative;
    display: flex;
    min-height: 272px;
    padding: 24px;
    flex-direction: column;
    border: 1px solid rgba(56, 91, 127, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 32px rgba(22, 39, 54, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.home-diagnostica-test .service-card--refined::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: var(--panel-blue);
    opacity: .82;
}

.home-diagnostica-test .service-card--refined:hover,
.home-diagnostica-test .service-card--refined:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(0, 88, 181, .38);
    background: var(--white);
    box-shadow: 0 22px 44px rgba(0, 88, 181, .12);
    outline: none;
}

.home-diagnostica-test .service-card--highlight {
    grid-column: span 2;
    min-height: 294px;
    background: #ffffff;
}

.home-diagnostica-test .service-card__index {
    align-self: flex-end;
    color: rgba(56, 91, 127, .28);
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.home-diagnostica-test .service-card--refined .service-card__heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.home-diagnostica-test .service-card__icon-wrap {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: #edf4fb;
}

.home-diagnostica-test .service-card__icon-wrap img {
    width: 31px;
    height: 31px;
    object-fit: contain;
}

.home-diagnostica-test .service-card--refined h3 {
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1;
}

.home-diagnostica-test .service-card--refined p {
    display: -webkit-box;
    margin-top: 18px;
    overflow: hidden;
    color: #5d6870;
    font-size: 14px;
    line-height: 1.45;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.home-diagnostica-test .service-card--highlight p {
    max-width: 88%;
    font-size: 15px;
    -webkit-line-clamp: 3;
}

.home-diagnostica-test .service-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 22px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
}

.home-diagnostica-test .service-card__cta .material-symbols-outlined {
    font-size: 20px;
    transition: transform .2s ease;
}

.home-diagnostica-test .service-card--refined:hover .service-card__cta .material-symbols-outlined,
.home-diagnostica-test .service-card--refined:focus-visible .service-card__cta .material-symbols-outlined {
    transform: translateX(4px);
}

@media (max-width: 1180px) {
    .home-diagnostica-test .services-grid--refined {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .home-diagnostica-test .services-grid--refined {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-diagnostica-test .service-card--highlight {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .home-diagnostica-test .services-grid--refined {
        grid-template-columns: 1fr;
    }

    .home-diagnostica-test .service-card--refined,
    .home-diagnostica-test .service-card--highlight {
        min-height: 230px;
        padding: 20px;
    }
}


/* Experimental home diagnostics page - original grid with ambient background */
.home-diagnostica-test .services-section--ambient {
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(56, 91, 127, .18) 0%, rgba(244, 247, 249, .98) 32%, rgba(255, 255, 255, .94) 64%, rgba(56, 91, 127, .16) 100%),
        linear-gradient(180deg, #eef3f6 0%, #ffffff 100%);
}

.home-diagnostica-test .services-section--ambient::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(56, 91, 127, .22), rgba(56, 91, 127, 0) 34%),
        radial-gradient(circle at 86% 76%, rgba(0, 88, 181, .14), rgba(0, 88, 181, 0) 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, 0) 44%);
    pointer-events: none;
}

.home-diagnostica-test .services-section--ambient::after {
    display: none;
}

.home-diagnostica-test .services-section--ambient .section-inner {
    z-index: 2;
}

.home-diagnostica-test .services-section--ambient .services-section__mark {
    opacity: .045;
}

.home-diagnostica-test .services-section--ambient .section-heading {
    position: relative;
    max-width: 760px;
}

.home-diagnostica-test .services-section--ambient .section-heading::after {
    content: "";
    display: block;
    width: 112px;
    height: 4px;
    margin-top: 26px;
    background: var(--panel-blue);
}

.home-diagnostica-test .services-section--ambient .services-grid {
    position: relative;
}

.home-diagnostica-test .services-section--ambient .service-card {
    border-color: rgba(56, 91, 127, .26);
}

.home-diagnostica-test .services-section--ambient .service-card:hover {
    border-color: var(--blue);
}

@media (max-width: 900px) {
    .home-diagnostica-test .services-section--ambient {
        background:
            linear-gradient(135deg, rgba(56, 91, 127, .16) 0%, rgba(244, 247, 249, .98) 44%, rgba(255, 255, 255, .96) 100%),
            linear-gradient(180deg, #eef3f6 0%, #ffffff 100%);
    }

}


.home-diagnostica-test .services-section--ambient .service-card:hover h3,
.home-diagnostica-test .services-section--ambient .service-card:focus-visible h3 {
    color: var(--panel-blue);
}


/* Compact spacing for ambient diagnostics test */
.home-diagnostica-test .services-section--ambient {
    padding: clamp(58px, 6.5vw, 88px) 0;
}

.home-diagnostica-test .services-section--ambient .section-heading {
    margin-bottom: clamp(30px, 4vw, 48px);
}

.home-diagnostica-test .services-section--ambient .section-heading::after {
    margin-top: 18px;
}

.home-diagnostica-test .services-section--ambient .services-grid {
    gap: clamp(24px, 3.8vw, 44px) clamp(28px, 4.8vw, 64px);
}

.home-diagnostica-test .services-section--ambient .service-card {
    min-height: 142px;
    padding-top: 20px;
}

.home-diagnostica-test .services-section--ambient .service-card__heading {
    margin-bottom: 10px;
}

.home-diagnostica-test .services-section--ambient .service-card p {
    font-size: 15px;
    line-height: 1.42;
}

@media (max-width: 640px) {
    .home-diagnostica-test .services-section--ambient {
        padding: 52px 0;
    }
}


/* Slightly taller contact cards */
.contacts-main--map-layout .contacts-location-card {
    min-height: 190px;
    padding: 22px 16px;
}

.contacts-main--map-layout .contacts-location-card--secondary {
    min-height: 180px;
}


/* Contacts sidebar slight width reduction */
.contacts-map-shell--fullscreen {
    grid-template-columns: minmax(350px, 435px) minmax(0, 1fr);
}


/* Contacts sidebar title and vertical offset */
.contacts-locations--sidebar {
    padding-top: clamp(90px, 7.5vw, 126px);
}

.contacts-locations__heading--main {
    margin-bottom: 26px;
}

.contacts-locations__heading--main h1 {
    font-size: clamp(32px, 3.2vw, 46px);
}

@media (max-width: 760px) {
    .home-calendar {
        align-items: end;
        padding: 0;
    }

    .home-calendar__panel {
        width: 100%;
        height: 88vh;
        max-height: 88vh;
        border-radius: 22px 22px 0 0;
        padding: 22px;
    }

    .home-calendar__layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(180px, 1fr);
        gap: 18px;
    }

    .home-calendar__header h3 {
        font-size: 24px;
    }

    .home-calendar__day {
        min-height: 42px;
    }

    .home-calendar__times {
        padding: 14px;
    }

    .home-calendar__time {
        min-height: 46px;
    }
}

.preparazioni-page--rm-style .preparazioni-hero {
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url("/img/mri_sola.png") center right / cover no-repeat;
}

.preparazioni-hero__tc-keyword {
    color: #f47b20;
}

.preparazioni-mdc-guide {
    background: linear-gradient(135deg, #ffffff 0%, #f4f8fb 52%, #fff7ef 100%);
}

.preparazioni-mdc-guide .rm-district-guide__inner {
    grid-template-columns: 1fr;
}

.preparazioni-mdc-guide .rm-district-guide__heading {
    max-width: 900px;
}

.preparazioni-mdc-guide .rm-district-guide__grid {
    width: 100%;
    align-items: stretch;
}

.preparazioni-mdc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.preparazione-mdc-card {
    grid-template-columns: 72px minmax(0, 1fr);
    border-radius: 22px;
    overflow: hidden;
    min-height: auto;
    padding: clamp(24px, 2.6vw, 34px);
}

.preparazione-mdc-card h3 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(28px, 2.8vw, 38px);
    font-weight: 300;
    line-height: 1.04;
}

.preparazione-mdc-card p {
    margin: 14px 0 0;
    color: #55595a;
    font-size: 16px;
    line-height: 1.62;
}

.preparazione-mdc-card ul {
    display: grid;
    gap: 10px;
    margin: 4px 0 34px;
    padding: 0;
    list-style: none;
}

.preparazione-mdc-card li {
    position: relative;
    padding-left: 22px;
    color: var(--charcoal);
    font-size: 15px;
    line-height: 1.46;
}

.preparazione-mdc-card li::before {
    position: absolute;
    left: 0;
    top: .58em;
    width: 7px;
    height: 7px;
    background: var(--panel-blue);
    content: "";
}

.preparazione-mdc-card__note {
    display: inline-flex;
    width: fit-content;
    margin-top: 22px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(56, 91, 127, .1);
    color: var(--panel-blue);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
}

.preparazione-mdc-card:nth-child(1) {
    background: #eef6fb;
}

.preparazione-mdc-card:nth-child(2) {
    background: #fff3e8;
}

.preparazione-mdc-card:nth-child(2) h3,
.preparazione-mdc-card:nth-child(2) .eyebrow {
    color: #f47b20;
}

.preparazione-mdc-card:nth-child(2) .rm-district-card__icon img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(92%) saturate(1114%) hue-rotate(354deg) brightness(98%) contrast(95%);
}

.preparazione-mdc-card:nth-child(2) li::before {
    background: #f47b20;
}

.preparazione-mdc-card:nth-child(2) .preparazione-mdc-card__note {
    background: rgba(244, 123, 32, .12);
    color: #bd5514;
}

.preparazione-mdc-card:nth-child(2) .button--blue {
    background: #f47b20;
}

.preparazione-mdc-card .button {
    margin-top: 30px;
}

.preparazioni-patient {
    background: #ffffff;
}

.preparazioni-specialist-section {
    position: relative;
    background:
        linear-gradient(90deg, rgba(245, 245, 243, .98) 0%, rgba(245, 245, 243, .94) 48%, rgba(245, 245, 243, .74) 100%),
        url("/img/3duomo.png") center / cover no-repeat,
        #f5f5f3;
}

.preparazioni-specialist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preparazioni-specialist-grid .rm-specialist-card {
    min-height: 300px;
    border-radius: 22px;
    overflow: hidden;
}

.preparazioni-specialist-grid .rm-specialist-card__icon {
    filter: brightness(0) saturate(100%) invert(33%) sepia(18%) saturate(1345%) hue-rotate(169deg) brightness(92%) contrast(91%);
}

.preparazioni-specialist-grid .rm-specialist-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--panel-blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.preparazioni-specialist-grid .rm-specialist-card a:hover,
.preparazioni-specialist-grid .rm-specialist-card a:focus-visible {
    background: #2f5f8b;
    color: var(--white);
    text-decoration: none;
}

.preparazioni-general-section {
    background: #f5f5f3;
}

.preparazioni-general-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preparazioni-general-grid .rm-specialist-card {
    min-height: 260px;
    border-radius: 22px;
    overflow: hidden;
}

.preparazioni-general-grid .rm-specialist-card__icon {
    filter: brightness(0) saturate(100%) invert(33%) sepia(18%) saturate(1345%) hue-rotate(169deg) brightness(92%) contrast(91%);
}

@media (max-width: 980px) {
    .preparazioni-mdc-grid,
    .preparazioni-specialist-grid,
    .preparazioni-general-grid {
        grid-template-columns: 1fr;
    }

    .preparazione-mdc-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}
.about-redesign {
    background: #f5f5f3;
}

.about-opening {
    padding: clamp(130px, 13vw, 190px) var(--page-pad) clamp(72px, 8vw, 112px);
    background:
        linear-gradient(135deg, rgba(245, 245, 243, .98) 0%, rgba(245, 245, 243, .9) 58%, rgba(232, 240, 246, .9) 100%),
        url("/img/3duomo.png") center / cover no-repeat;
}

.about-opening__inner {
    width: min(100%, 1040px);
    margin: 0 auto;
}

.about-opening h1 {
    max-width: 900px;
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 86px);
    font-weight: 300;
    line-height: .98;
}

.about-opening p {
    max-width: 840px;
    margin: 28px 0 0;
    color: #444748;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.68;
}

.about-opening p strong {
    color: var(--panel-blue);
    font-weight: 800;
}

.about-services,
.about-quality-strip {
    padding: clamp(72px, 8vw, 112px) var(--page-pad);
}

.about-services {
    background: var(--white);
}

.about-services__inner,
.about-quality-strip__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
}

.about-section-heading {
    max-width: 820px;
    margin-bottom: clamp(28px, 4vw, 46px);
}

.about-section-heading h2,
.about-method h2,
.about-group-panel h2,
.about-quality-strip h2 {
    margin: 0;
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: clamp(36px, 4.8vw, 68px);
    font-weight: 300;
    line-height: 1.04;
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-services__grid article {
    min-height: 330px;
    padding: 30px;
    border: 1px solid rgba(31, 31, 31, .1);
    border-radius: 22px;
    background: #f7f7f5;
}

.about-services__grid .material-symbols-outlined {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(56, 91, 127, .12);
    color: var(--panel-blue);
}

.about-services__grid h3 {
    margin: 54px 0 12px;
    color: var(--charcoal);
    font-size: 24px;
    line-height: 1.12;
}

.about-services__grid p,
.about-method p,
.about-group-panel p,
.about-quality-strip p {
    color: #55595a;
    font-size: 17px;
    line-height: 1.68;
}

.about-method {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    min-height: 720px;
    background: #eef3f6;
}

.about-method__image {
    min-height: 520px;
    overflow: hidden;
}

.about-method__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-method__copy {
    padding: clamp(56px, 7vw, 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-method ul {
    display: grid;
    gap: 12px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.about-method li {
    position: relative;
    padding-left: 28px;
    color: var(--charcoal);
    font-size: 17px;
    line-height: 1.55;
}

.about-method li::before {
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--panel-blue);
    content: "";
}

.about-group-panel {
    padding: clamp(78px, 9vw, 124px) var(--page-pad);
    background: var(--panel-blue);
    color: var(--white);
}

.about-group-panel__inner {
    width: min(100%, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
    gap: clamp(42px, 7vw, 110px);
    align-items: end;
}

.about-group-panel .eyebrow,
.about-group-panel h2 {
    color: var(--white);
}

.about-group-panel p {
    max-width: 760px;
    color: rgba(255, 255, 255, .82);
}

.about-group-panel__locations {
    display: grid;
    gap: 10px;
}

.about-group-panel__locations article {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .24);
}

.about-group-panel__locations article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.about-group-panel__locations span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.about-group-panel__locations strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
}

.about-quality-strip {
    background: #ffffff;
}

.about-quality-strip__inner {
    display: grid;
    justify-items: start;
}

.about-quality-strip p {
    max-width: 860px;
    margin: 22px 0 0;
}

.about-quality-strip__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

@media (max-width: 980px) {
    .about-services__grid,
    .about-method,
    .about-group-panel__inner {
        grid-template-columns: 1fr;
    }

    .about-method__copy {
        padding: 44px var(--page-pad);
    }
}

@media (max-width: 640px) {
    .about-opening {
        padding-top: 116px;
    }

    .about-services__grid article {
        min-height: auto;
    }

    .about-quality-strip__actions,
    .about-quality-strip__actions .button {
        width: 100%;
        justify-content: center;
    }
}

/* Home hero/search overlay test */
.home-hero-search-overlay-test .hero {
    height: 100vh;
    min-height: 760px;
}

.home-hero-search-overlay-test .hero__shade {
    background:
        linear-gradient(180deg, rgba(10, 12, 14, .08) 0%, rgba(10, 12, 14, .18) 42%, rgba(10, 12, 14, .42) 72%, rgba(10, 12, 14, .7) 100%),
        linear-gradient(90deg, rgba(31, 31, 31, .82), rgba(31, 31, 31, .42) 52%, rgba(31, 31, 31, .08));
}

.home-hero-search-overlay-test .hero__inner {
    padding-bottom: 300px;
}

.home-hero-search-overlay-test .hero__scroll {
    bottom: 306px;
}

.home-hero-search-overlay-test .quick-booking {
    min-height: 276px;
    margin-top: -276px;
    padding-top: 44px;
    padding-bottom: 40px;
    background: linear-gradient(180deg, rgba(8, 10, 12, 0) 0%, rgba(8, 10, 12, .34) 22%, rgba(8, 10, 12, .78) 62%, #080a0c 100%);
}

.home-hero-search-overlay-test .quick-booking__inner {
    z-index: 2;
}

.home-hero-search-overlay-test .quick-booking::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 40px;
    background: #080a0c;
    content: "";
}

.home-hero-search-overlay-test .quick-booking h2,
.home-hero-search-overlay-test .quick-chips {
    color: var(--white);
}

.home-hero-search-overlay-test .quick-chips {
    width: min(920px, 100%);
    margin: 14px auto 0;
    gap: 7px 13px;
}

.home-hero-search-overlay-test .quick-chips > span {
    display: none;
}

.home-hero-search-overlay-test .quick-chips button {
    padding: 0;
    border-color: transparent;
    background: transparent;
    color: var(--white);
    box-shadow: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.home-hero-search-overlay-test .quick-chips button:hover {
    border-color: transparent;
    background: transparent;
    color: rgba(255, 255, 255, .78);
}

.home-hero-search-overlay-test .search-shell {
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px) saturate(1.08);
}

@media (max-width: 1440px) and (min-width: 961px), (max-height: 920px) and (min-width: 961px) {
    .home-hero-search-overlay-test .hero {
        min-height: 720px;
    }

    .home-hero-search-overlay-test .hero__inner {
        padding-bottom: 286px;
    }

    .home-hero-search-overlay-test .hero__scroll {
        bottom: 292px;
    }
}

@media (max-width: 860px) {
    .home-hero-search-overlay-test .hero {
        min-height: 900px;
    }

    .home-hero-search-overlay-test .hero__inner {
        padding-bottom: 390px;
    }

    .home-hero-search-overlay-test .hero__scroll {
        display: none;
    }

    .home-hero-search-overlay-test .quick-booking {
        min-height: 390px;
        margin-top: -390px;
    }
}

/* Home test 2 - dark diagnostic excellence area */
.home-test-2 .services-section--ambient {
    overflow: hidden;
    background: #1a1c1c !important;
    background-color: #1a1c1c !important;
    background-image: none !important;
    color: var(--white);
}

.home-test-2 .services-section--ambient::before,
.home-test-2 .services-section--ambient::after {
    display: none !important;
    background: none !important;
    content: none !important;
}

.home-test-2 .services-section--ambient .section-inner {
    position: relative;
    z-index: 3;
}

.home-test-2 .services-section--ambient .services-section__mark {
    display: none !important;
}

.home-test-2 .services-section--ambient .section-heading .eyebrow {
    color: var(--panel-blue);
}

.home-test-2 .services-section--ambient .section-heading h2 {
    color: var(--white);
}

.home-test-2 .services-section--ambient .section-heading::after {
    background: var(--panel-blue);
}

.home-test-2 .services-section--ambient .service-card {
    border-color: rgba(255, 255, 255, .16);
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.home-test-2 .services-section--ambient .service-card:hover,
.home-test-2 .services-section--ambient .service-card:focus-visible {
    border-color: rgba(255, 255, 255, .16);
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

.home-test-2 .services-section--ambient .service-card h3,
.home-test-2 .services-section--ambient .service-card:hover h3,
.home-test-2 .services-section--ambient .service-card:focus-visible h3 {
    color: var(--white);
}

.home-test-2 .services-section--ambient .service-card p {
    color: rgba(255, 255, 255, .72);
}

.home-test-2 .services-section--ambient .service-card__heading img {
    filter: brightness(0) invert(1);
    opacity: .86;
}

@media (max-width: 900px) {
    .home-test-2 .services-section--ambient {
        background: #1a1c1c !important;
        background-color: #1a1c1c !important;
        background-image: none !important;
    }
}


/* Hard override for the home-test-2 diagnostic services band */
.home-test-2 .home-test-2-services-black,
.home-test-2 .home-test-2-services-black .services-section,
.home-test-2 .home-test-2-services-black .services-section--ambient,
.home-test-2 .home-test-2-services-black .section-inner,
.home-test-2 .home-test-2-services-black .services-grid {
    background: #1a1c1c !important;
    background-color: #1a1c1c !important;
    background-image: none !important;
}

.home-test-2 #servizi::before {
    display: block !important;
    position: absolute;
    left: clamp(8px, 4vw, 58px);
    bottom: clamp(14px, 4vw, 52px);
    z-index: 1;
    width: clamp(620px, 58vw, 980px);
    aspect-ratio: 1.35;
    background-image: url('/img/cedir_g.png') !important;
    background-repeat: no-repeat !important;
    background-position: left bottom !important;
    background-size: contain !important;
    content: "" !important;
    filter: brightness(0) invert(1);
    opacity: .045;
    pointer-events: none;
}

.home-test-2 .home-test-2-services-black .services-section::after,
.home-test-2 .home-test-2-services-black .services-section--ambient::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

.home-test-2 .home-test-2-services-black .services-section__mark {
    display: none !important;
}

.home-test-2 #servizi .section-inner {
    position: relative;
    z-index: 2;
}

.home-test-2 .home-test-2-services-black .service-card,
.home-test-2 .home-test-2-services-black .service-card:hover,
.home-test-2 .home-test-2-services-black .service-card:focus-visible {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}


.home-test-2 #servizi *:not(img):not(svg):not(path) {
    background-image: none !important;
}

.home-test-2 #servizi {
    background: #1a1c1c !important;
    background-color: #1a1c1c !important;
}




/* Home test 2 - charcoal continuity from hero to services */
.home-test-2 .hero__shade {
    background:
        linear-gradient(180deg, rgba(26, 28, 28, .08) 0%, rgba(26, 28, 28, .2) 42%, rgba(26, 28, 28, .48) 72%, #1a1c1c 100%),
        linear-gradient(90deg, rgba(26, 28, 28, .82), rgba(26, 28, 28, .42) 52%, rgba(26, 28, 28, .08));
}

.home-test-2 .quick-booking {
    background: linear-gradient(180deg, rgba(26, 28, 28, 0) 0%, rgba(26, 28, 28, .34) 22%, rgba(26, 28, 28, .78) 62%, #1a1c1c 100%);
}

.home-test-2 .quick-booking::after {
    background: #1a1c1c;
}

/* Home test 3 - blue hero overlay and services continuity */
.home-test-3 .hero__shade {
    background:
        linear-gradient(180deg, rgba(56, 91, 127, .03) 0%, rgba(56, 91, 127, .08) 38%, rgba(56, 91, 127, .28) 68%, rgba(56, 91, 127, .72) 88%, #385b7f 100%),
        linear-gradient(90deg, rgba(26, 38, 50, .62), rgba(56, 91, 127, .22) 52%, rgba(56, 91, 127, .04));
}

.home-test-3 .quick-booking {
    background: linear-gradient(180deg, rgba(56, 91, 127, 0) 0%, rgba(56, 91, 127, .48) 18%, rgba(56, 91, 127, .86) 48%, #385b7f 78%, #385b7f 100%);
}

.home-test-3 .quick-booking::after {
    background: #385b7f;
}

.home-test-3 .home-test-3-services-blue,
.home-test-3 .home-test-3-services-blue .services-section,
.home-test-3 .home-test-3-services-blue .services-section--ambient,
.home-test-3 .home-test-3-services-blue .section-inner,
.home-test-3 .home-test-3-services-blue .services-grid,
.home-test-3 #servizi {
    background: #385b7f !important;
    background-color: #385b7f !important;
    background-image: none !important;
}

.home-test-3 #servizi::before {
    display: none !important;
    content: none !important;
    background: none !important;
}

.home-test-3 #servizi::after,
.home-test-3 .home-test-3-services-blue .services-section::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

.home-test-3 #servizi *:not(img):not(svg):not(path) {
    background-image: none !important;
}

.home-test-3 #servizi .services-section__mark {
    display: none !important;
}

.home-test-3 #servizi .section-inner {
    position: relative;
    z-index: 2;
}

.home-test-3 #servizi .section-heading .eyebrow,
.home-test-3 #servizi .section-heading h2,
.home-test-3 #servizi .service-card h3,
.home-test-3 #servizi .service-card:hover h3,
.home-test-3 #servizi .service-card:focus-visible h3 {
    color: var(--white);
}

.home-test-3 #servizi .section-heading::after {
    background: rgba(255, 255, 255, .82);
}

.home-test-3 #servizi .service-card,
.home-test-3 #servizi .service-card:hover,
.home-test-3 #servizi .service-card:focus-visible {
    border-color: rgba(255, 255, 255, .26);
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

.home-test-3 #servizi .service-card p {
    color: rgba(255, 255, 255, .76);
}

.home-test-3 #servizi .service-card__heading img {
    filter: brightness(0) invert(1);
    opacity: .9;
}


/* Chi siamo hero aligned to Preparazioni */
.about-page--cedir .about-preparazioni-hero {
    background:
        linear-gradient(90deg, rgba(26, 28, 28, .9) 0%, rgba(26, 28, 28, .76) 42%, rgba(26, 28, 28, .34) 72%, rgba(26, 28, 28, .16) 100%),
        url("/img/mri_sola.png") center right / cover no-repeat;
}

.about-page--cedir .about-preparazioni-hero .prestazioni-hero__lead strong {
    color: #9ed0ff;
}


.about-page--cedir .about-preparazioni-hero {
    min-height: 620px;
    padding: 168px var(--page-pad) 86px;
}

.about-page--cedir .about-preparazioni-hero .prestazioni-hero__copy {
    max-width: 860px;
}



.about-page--cedir #cosa-facciamo,
.about-page--cedir #metodo,
.about-page--cedir #gruppo-cedir {
    scroll-margin-top: 104px;
}

/* Search UX refinement: compact results */
.institutional-search .search-results-show-all {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 22px 0 4px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 88, 181, .22);
    border-radius: 20px;
    background: rgba(239, 246, 255, .78);
    color: #0058b5;
    cursor: pointer;
    font-weight: 700;
    text-align: left;
}

.institutional-search .search-results-show-all:hover {
    border-color: rgba(0, 88, 181, .34);
    background: rgba(219, 234, 254, .86);
}


@media (max-width: 640px) {
    .institutional-search .search-results-show-all {
        align-items: flex-start;
        flex-direction: column;
    }

}

/* Booking panel: earlier availability suggestion */
.institutional-search .home-booking__alternative {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 18px 0 20px;
    padding: 16px 18px;
    border: 1px solid rgba(0, 88, 181, .2);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(239, 246, 255, .92), rgba(255, 255, 255, .86));
    color: #334155;
}

.institutional-search .home-booking__alternative span {
    display: block;
    margin-bottom: 4px;
    color: #0058b5;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.institutional-search .home-booking__alternative strong {
    display: block;
    color: #0f172a;
    font-size: 16px;
    line-height: 1.25;
}

.institutional-search .home-booking__alternative p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 14px;
}

.institutional-search .home-booking__alternative button {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(0, 88, 181, .24);
    border-radius: 999px;
    background: #0058b5;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    font-weight: 700;
}

.institutional-search .home-booking__alternative button:hover {
    background: #0d5cb9;
}

.institutional-search .home-booking__alternative.is-loading {
    display: block;
    border-color: rgba(148, 163, 184, .2);
    background: rgba(248, 250, 252, .8);
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 640px) {
    .institutional-search .home-booking__alternative {
        align-items: flex-start;
        flex-direction: column;
    }

    .institutional-search .home-booking__alternative button {
        width: 100%;
    }
}

/* Mobile header and search cleanup */
@media (max-width: 760px) {
    .site-header__inner {
        min-height: 70px;
        justify-content: center;
        padding: 0 18px;
    }

    .brand {
        position: absolute;
        left: 18px;
    }

    .brand__logo {
        height: 42px;
    }

    .site-header__actions {
        position: static;
        margin: 0;
        padding: 0;
    }

    .site-header__search {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 42px;
        height: 42px;
        justify-content: center;
        padding: 0;
        transform: translate(-50%, -50%);
    }

    .guided-trigger--header {
        display: none;
    }

    .site-header__search input {
        position: absolute;
        inset: 0;
        opacity: 0;
        cursor: pointer;
    }

    .menu-trigger {
        display: inline-flex;
        top: 11px;
        right: 18px;
        left: auto;
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .hero-structure-card,
    .search-location,
    .quick-chips {
        display: none;
    }

    .search-shell {
        grid-template-columns: 1fr auto;
        border-radius: 24px;
    }

    .search-field {
        min-height: 54px;
        border-right: 0;
        border-bottom: 0;
        padding: 0 16px;
    }

    .search-submit {
        width: auto;
        min-height: 54px;
        padding: 0 18px;
        border-radius: 18px;
    }
}
/* Prestazioni index */
.prestazioni-index-section {
    background: #f5f5f3;
}

.prestazioni-index-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.prestazioni-index-card {
    min-height: 360px;
}

.prestazioni-index-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.prestazioni-index-card__links a {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(0, 88, 181, .18);
    border-radius: 999px;
    background: rgba(239, 246, 255, .72);
    color: #0058b5;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}


@media (max-width: 1180px) {
    .prestazioni-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .prestazioni-index-grid {
        grid-template-columns: 1fr;
    }

    .prestazioni-index-card {
        min-height: auto;
    }
}

/* Footer prestazioni split */
.site-footer__column--prestazioni ul {
    column-count: 2;
    column-gap: 28px;
}

.site-footer__column--prestazioni li {
    break-inside: avoid;
}

@media (max-width: 760px) {
    .site-footer__column--prestazioni ul {
        column-count: 1;
    }
}

/* Footer desktop single row */
.site-footer__grid {
    grid-template-columns: minmax(260px, 1.2fr) minmax(260px, .95fr) minmax(140px, .52fr) minmax(150px, .55fr) minmax(180px, .7fr);
    gap: clamp(20px, 2.2vw, 40px);
    align-items: start;
}

@media (max-width: 1180px) {
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
}

/* Footer column title emphasis */
.site-footer__column h3 {
    color: #ffffff;
}

/* Approfondimenti article */
.approfondimento-main {
    background: #f5f5f3;
}

.approfondimento-hero {
    min-height: clamp(500px, 62vh, 650px);
    background-image: linear-gradient(90deg, rgba(7, 10, 12, .9), rgba(7, 10, 12, .58)), url('/img/locandine/senologia.png');
    background-size: cover;
    background-position: center right;
}

.approfondimento-wholebody-page .approfondimento-hero {
    background-image: linear-gradient(90deg, rgba(7, 10, 12, .9), rgba(7, 10, 12, .58)), url('/img/wholebody.jpg');
}

.approfondimento-hero .prestazioni-hero__inner {
    width: min(100%, 1100px);
}

.approfondimento-hero h1 {
    max-width: 980px;
    font-size: clamp(44px, 5.4vw, 76px);
    line-height: .98;
}

.approfondimento-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.approfondimento-meta span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 800;
}

.approfondimento-body {
    padding: clamp(72px, 8vw, 116px) var(--page-pad);
}

.approfondimento-body__inner {
    width: min(100%, 1180px);
    display: grid;
    grid-template-columns: 260px minmax(0, 760px);
    gap: clamp(46px, 7vw, 92px);
    align-items: start;
    margin: 0 auto;
}

.approfondimento-toc {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 12px;
    padding-top: 8px;
}

.approfondimento-toc a {
    color: #333738;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.approfondimento-content {
    color: #202425;
    font-size: clamp(18px, 1.55vw, 21px);
    line-height: 1.72;
}

.approfondimento-content p {
    margin: 0 0 26px;
}

.approfondimento-lead {
    color: #15191a;
    font-size: clamp(22px, 2vw, 29px);
    line-height: 1.45;
}

.approfondimento-content h2 {
    margin: 70px 0 22px;
    color: #15191a;
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.05;
    scroll-margin-top: 100px;
}

.approfondimento-content h3 {
    margin: 38px 0 12px;
    color: #15191a;
    font-size: 24px;
    line-height: 1.2;
}

.approfondimento-content blockquote {
    margin: 46px 0;
    padding: 34px 0 34px 34px;
    border-left: 4px solid #0058b5;
    color: #15191a;
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.18;
}

.approfondimento-content blockquote p {
    margin: 0;
}

.approfondimento-content figure {
    margin: 54px 0;
}

.approfondimento-content figure img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
}

.approfondimento-content figcaption {
    max-width: 620px;
    margin-top: 12px;
    color: #676b6c;
    font-size: 14px;
    line-height: 1.5;
}

.approfondimento-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin: 46px 0;
    padding: 22px;
    border: 1px solid rgba(0, 88, 181, .18);
    border-radius: 8px;
    background: #eef6ff;
}

.approfondimento-note .material-symbols-outlined {
    color: #0058b5;
}

.approfondimento-note p {
    margin: 0;
    color: #1f3f68;
    font-size: 17px;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .approfondimento-body__inner {
        grid-template-columns: 1fr;
    }

    .approfondimento-toc {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 20px;
        border: 1px solid rgba(31, 31, 31, .1);
        border-radius: 8px;
        background: #fff;
    }
}

@media (max-width: 640px) {
    .approfondimento-toc {
        grid-template-columns: 1fr;
    }

    .approfondimento-content {
        font-size: 17px;
    }

    .approfondimento-content blockquote {
        padding-left: 22px;
    }
}

/* Approfondimento senologia refinements */
    background: rgba(232, 93, 155, .14);
    color: #ffd7e8;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}
.approfondimento-senologia-page .approfondimento-hero .eyebrow {
    color: #e85d9b;
}

.approfondimento-faq-modal .eyebrow {
    color: var(--blue);
}

.approfondimento-meta button {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(232, 93, 155, .46);
    border-radius: 999px;
    background: rgba(232, 93, 155, .14);
    color: #e85d9b;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
}

.approfondimento-wholebody-page .approfondimento-meta button {
    border: 1px solid var(--blue);
    background: rgba(0, 88, 181, 0.1);
    color: var(--blue);
}
/* Variante Hero Scura */
.dark-hero-variant .prostate-hero__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .4) 60%, rgba(0, 0, 0, 0) 100%) !important;
}

.dark-hero-variant .prostate-hero__content h1,
.dark-hero-variant .prostate-hero__content p,
.dark-hero-variant .prostate-hero__content .eyebrow {
    color: var(--white) !important;
}

/* Diagnostic hero dark overlay variant */
.dark-hero-variant.cardio-ct-diagonal-page .cardio-ct-diagonal-hero .prostate-hero__shade {
    background:
        linear-gradient(90deg, rgba(7, 10, 12, .92) 0%, rgba(7, 10, 12, .72) 34%, rgba(7, 10, 12, .28) 68%, rgba(7, 10, 12, 0) 100%),
        linear-gradient(180deg, rgba(7, 10, 12, .18), rgba(7, 10, 12, .34));
}

.dark-hero-variant .prostate-hero__content h1,
.dark-hero-variant .prostate-hero__content p,
.dark-hero-variant .prostate-hero__content .eyebrow {
    color: var(--white) !important;
}

.dark-hero-variant .prostate-hero__content p {
    color: rgba(255, 255, 255, .84) !important;
}

.dark-hero-variant .button--outline-dark {
    border-color: rgba(255, 255, 255, .48);
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.dark-hero-variant .button--outline-dark:hover {
    background: var(--white);
    color: var(--charcoal);
}

.cardio-ct-diagonal-hero__image video,
.prostate-gallery__stage video,
.prostate-gallery__thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.prostate-gallery__stage video,
.prostate-gallery__thumb video {
    position: absolute;
    inset: 0;
}
/* Diagnostic gallery fixed frame */
.prostate-exam-page .prostate-gallery__layout,
.cardio-rm-page .prostate-gallery__layout,
.entero-rm-page .prostate-gallery__layout,
.whole-body-rm-page .prostate-gallery__layout,
.cardio-ct-page .prostate-gallery__layout,
.tc-colon-page .prostate-gallery__layout,
.tc-torace-page .prostate-gallery__layout {
    grid-template-rows: minmax(0, 640px);
}

.prostate-exam-page .prostate-gallery__stage,
.cardio-rm-page .prostate-gallery__stage,
.entero-rm-page .prostate-gallery__stage,
.whole-body-rm-page .prostate-gallery__stage,
.cardio-ct-page .prostate-gallery__stage,
.tc-colon-page .prostate-gallery__stage,
.tc-torace-page .prostate-gallery__stage {
    height: 640px;
    min-height: 0;
}

.prostate-exam-page .prostate-gallery__stage img,
.prostate-exam-page .prostate-gallery__stage video,
.cardio-rm-page .prostate-gallery__stage img,
.cardio-rm-page .prostate-gallery__stage video,
.entero-rm-page .prostate-gallery__stage img,
.entero-rm-page .prostate-gallery__stage video,
.whole-body-rm-page .prostate-gallery__stage img,
.whole-body-rm-page .prostate-gallery__stage video,
.cardio-ct-page .prostate-gallery__stage img,
.cardio-ct-page .prostate-gallery__stage video,
.tc-colon-page .prostate-gallery__stage img,
.tc-colon-page .prostate-gallery__stage video,
.tc-torace-page .prostate-gallery__stage img,
.tc-torace-page .prostate-gallery__stage video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prostate-exam-page .prostate-gallery__thumbs,
.cardio-rm-page .prostate-gallery__thumbs,
.entero-rm-page .prostate-gallery__thumbs,
.whole-body-rm-page .prostate-gallery__thumbs,
.cardio-ct-page .prostate-gallery__thumbs,
.tc-colon-page .prostate-gallery__thumbs,
.tc-torace-page .prostate-gallery__thumbs {
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.prostate-exam-page .prostate-gallery__thumb,
.cardio-rm-page .prostate-gallery__thumb,
.entero-rm-page .prostate-gallery__thumb,
.whole-body-rm-page .prostate-gallery__thumb,
.cardio-ct-page .prostate-gallery__thumb,
.tc-colon-page .prostate-gallery__thumb,
.tc-torace-page .prostate-gallery__thumb {
    height: 100%;
    aspect-ratio: auto;
}

.prostate-exam-page .prostate-gallery__thumb img,
.prostate-exam-page .prostate-gallery__thumb video,
.cardio-rm-page .prostate-gallery__thumb img,
.cardio-rm-page .prostate-gallery__thumb video,
.entero-rm-page .prostate-gallery__thumb img,
.entero-rm-page .prostate-gallery__thumb video,
.whole-body-rm-page .prostate-gallery__thumb img,
.whole-body-rm-page .prostate-gallery__thumb video,
.cardio-ct-page .prostate-gallery__thumb img,
.cardio-ct-page .prostate-gallery__thumb video,
.tc-colon-page .prostate-gallery__thumb img,
.tc-colon-page .prostate-gallery__thumb video,
.tc-torace-page .prostate-gallery__thumb img,
.tc-torace-page .prostate-gallery__thumb video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 980px) {
    .prostate-exam-page .prostate-gallery__layout,
    .cardio-rm-page .prostate-gallery__layout,
    .entero-rm-page .prostate-gallery__layout,
    .whole-body-rm-page .prostate-gallery__layout,
    .cardio-ct-page .prostate-gallery__layout,
    .tc-colon-page .prostate-gallery__layout,
    .tc-torace-page .prostate-gallery__layout {
        grid-template-rows: auto;
    }

    .prostate-exam-page .prostate-gallery__stage,
    .cardio-rm-page .prostate-gallery__stage,
    .entero-rm-page .prostate-gallery__stage,
    .whole-body-rm-page .prostate-gallery__stage,
    .cardio-ct-page .prostate-gallery__stage,
    .tc-colon-page .prostate-gallery__stage,
    .tc-torace-page .prostate-gallery__stage {
        height: min(68vh, 560px);
        min-height: 420px;
    }

    .prostate-exam-page .prostate-gallery__thumbs,
    .cardio-rm-page .prostate-gallery__thumbs,
    .entero-rm-page .prostate-gallery__thumbs,
    .whole-body-rm-page .prostate-gallery__thumbs,
    .cardio-ct-page .prostate-gallery__thumbs,
    .tc-colon-page .prostate-gallery__thumbs,
    .tc-torace-page .prostate-gallery__thumbs {
        grid-template-rows: none;
    }

    .prostate-exam-page .prostate-gallery__thumb,
    .cardio-rm-page .prostate-gallery__thumb,
    .entero-rm-page .prostate-gallery__thumb,
    .whole-body-rm-page .prostate-gallery__thumb,
    .cardio-ct-page .prostate-gallery__thumb,
    .tc-colon-page .prostate-gallery__thumb,
    .tc-torace-page .prostate-gallery__thumb {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
/* Home hero senologia slide */
.hero--senologia .hero__actions .button--dark {
    border-color: #9f4468;
    background: #9f4468;
    color: #ffffff;
}

.hero--senologia .hero__actions .button--dark:hover {
    border-color: #873756;
    background: #873756;
    color: #ffffff;
}

.hero-structure-card__senologia[hidden],
.hero-structure-card__default[hidden] {
    display: none;
}

.hero-structure-card__senologia .hero-structure-card__eyebrow {
    color: #9f4468;
}

.hero-structure-card__senologia h2 {
    margin-bottom: 28px;
}

.hero-senologia-paths {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

.hero-senologia-path {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding-top: 18px;
    border-top: 1px solid rgba(31, 31, 31, .08);
}

.hero-senologia-path:first-child {
    padding-top: 0;
    border-top: 0;
}

.hero-senologia-path img {
    width: 38px;
    height: 38px;
    padding: 8px;
    border-radius: 999px;
    background: rgba(159, 68, 104, .12);
}

.hero-senologia-path h3 {
    margin: 0 0 7px;
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1.18;
    text-transform: uppercase;
}

.hero-senologia-path p {
    margin: 0;
    color: #55595a;
    font-size: 12px;
    line-height: 1.45;
}

/* Guided wizard MVP */
body.guided-wizard-open {
    overflow: hidden;
}

.guided-trigger--header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 8px;
    padding: 0 30px;
    border: 1px solid rgba(0, 88, 181, .28);
    background: rgba(255, 255, 255, .74);
    color: var(--blue);
    box-shadow: 0 12px 28px rgba(0, 88, 181, .12);
    backdrop-filter: blur(12px);
}

.guided-trigger--header::before,
.guided-trigger--menu::before {
    font-family: "Material Symbols Outlined";
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    content: "auto_awesome";
}

.guided-trigger--header::before {
    flex: 0 0 auto;
}

.guided-trigger--header:hover {
    border-color: rgba(0, 88, 181, .46);
    background: rgba(0, 88, 181, .08);
    color: var(--panel-blue);
}

.guided-trigger--menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.guided-trigger--menu:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .14);
}

@media (max-width: 1919.98px) {
    .guided-trigger--header {
        width: 48px;
        min-height: 48px;
        padding: 0;
        border-radius: 999px;
    }

    .guided-trigger--header .guided-trigger__label {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}

.guided-wizard[aria-hidden="true"] {
    pointer-events: none;
}

.guided-wizard {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: grid;
    place-items: stretch;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.guided-wizard.is-open {
    opacity: 1;
    visibility: visible;
}

.guided-wizard__scrim {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(230, 238, 248, .72);
    cursor: pointer;
    backdrop-filter: blur(20px);
}

.guided-wizard__panel {
    --guided-bg: #f7fbff;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background:
        radial-gradient(circle at 15% 12%, rgba(0, 88, 181, .08), transparent 30%),
        var(--guided-bg);
    color: #0f172a;
    transform: scale(.985);
    transition: transform .32s cubic-bezier(.16, 1, .3, 1);
}

.guided-wizard.is-open .guided-wizard__panel {
    transform: scale(1);
}

.guided-wizard__brand {
    position: absolute;
    left: clamp(22px, 4vw, 56px);
    top: clamp(20px, 3vw, 36px);
    z-index: 2;
}

.guided-wizard__brand img {
    width: 150px;
    height: auto;
}

.guided-wizard__close {
    position: absolute;
    top: clamp(18px, 3vw, 34px);
    right: clamp(18px, 3vw, 42px);
    z-index: 4;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    color: #0f172a;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
}

.guided-wizard__close:hover {
    border-color: rgba(0, 88, 181, .22);
    color: var(--blue);
}

.guided-wizard__content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 48px));
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    margin: 0 auto;
    padding: clamp(92px, 10vh, 132px) 0 clamp(26px, 5vh, 54px);
}

.guided-wizard__topbar {
    min-height: 44px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    margin-bottom: clamp(28px, 4vh, 52px);
}

.guided-wizard__topbar--simple {
    justify-content: center;
}


.guided-wizard__kicker,
.guided-wizard__step-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.guided-wizard__kicker .material-symbols-outlined {
    color: var(--blue);
    font-size: 20px;
}

.guided-wizard__step-count {
    justify-self: end;
    color: #64748b;
}

.guided-wizard__progress {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.guided-wizard__progress-dot {
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: #dbe7f5;
    transition: background .25s ease, width .25s ease;
}

.guided-wizard__progress-dot.is-active {
    background: var(--blue);
}

.guided-wizard__step {
    min-height: 0;
    animation: guided-step-in .28s cubic-bezier(.16, 1, .3, 1);
}

.guided-intro {
    position: relative;
    min-height: min(650px, calc(100vh - 230px));
    display: grid;
    grid-template-columns: minmax(360px, 520px) minmax(420px, 1fr);
    gap: clamp(42px, 6vw, 82px);
    align-items: center;
}

.guided-intro__side {
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
    display: grid;
    align-content: center;
    gap: 18px;
    transform: translateY(-18px);
}

.guided-intro__copy {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    max-width: 520px;
    justify-self: start;
}


.guided-wizard__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.guided-intro h2,
.guided-choice__heading h2 {
    margin: 0;
    color: #0f172a;
    font-family: var(--font-display);
    font-size: clamp(54px, 6.4vw, 92px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: .96;
}

.guided-intro p,
.guided-choice__heading p {
    margin: 24px 0 0;
    color: #475569;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.58;
}

.guided-intro__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.guided-wizard__primary {
    min-height: 50px;
    padding: 0 26px;
    background: var(--blue);
    color: #ffffff;
}

.guided-wizard__primary:disabled {
    background: #cbd5e1;
    color: #ffffff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.guided-wizard__text-button,
.guided-wizard__secondary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .74);
    color: #334155;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
}

.guided-wizard__text-button:hover,
.guided-wizard__secondary:hover {
    border-color: rgba(0, 88, 181, .22);
    color: var(--blue);
}

.guided-intro__can {
    margin-top: 26px;
    color: #334155;
    font-size: 16px;
    line-height: 1.55;
}

.guided-intro__can span {
    display: block;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 800;
}

.guided-intro__can ul,
.guided-intro__how-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.guided-intro__can li,
.guided-intro__how-panel li {
    position: relative;
    padding-left: 20px;
}

.guided-intro__can li + li,
.guided-intro__how-panel li + li {
    margin-top: 7px;
}

.guided-intro__can li::before,
.guided-intro__how-panel li::before {
    position: absolute;
    left: 0;
    top: .7em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--blue);
    content: "";
}

.guided-intro__statement {
    grid-column: 1 / -1;
    grid-row: 2;
    width: min(980px, 100%);
    max-width: none;
    margin: clamp(6px, 1.5vh, 18px) auto 0 !important;
    color: #334155 !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
    text-align: left;
}

.guided-intro__how {
    position: relative;
    z-index: 6;
    display: inline-flex;
    justify-content: center;
    justify-self: center;
    margin-top: 0;
}

.guided-intro__how-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--blue);
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.guided-intro__how-toggle .material-symbols-outlined {
    font-size: 20px;
    transition: transform .2s ease;
}

.guided-intro__how-toggle[aria-expanded="true"] .material-symbols-outlined {
    transform: rotate(180deg);
}

.guided-intro__how-panel {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%);
    z-index: 7;
    width: min(440px, calc(100vw - 48px));
    max-width: 440px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 88, 181, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .16);
    backdrop-filter: blur(14px);
}

.guided-intro__how-panel[hidden] {
    display: none;
}

.guided-intro__visual {
    position: relative;
    z-index: 1;
    min-height: clamp(470px, 58vh, 610px);
    overflow: hidden;
    border-radius: 0;
    background: transparent;
}

.guided-intro__visual::before,
.guided-intro__visual::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
}

.guided-intro__visual::before {
    background:
        linear-gradient(90deg, var(--guided-bg) 0%, rgba(247, 251, 255, .72) 12%, rgba(247, 251, 255, 0) 34%, rgba(247, 251, 255, 0) 72%, rgba(247, 251, 255, .76) 92%, var(--guided-bg) 100%),
        linear-gradient(180deg, var(--guided-bg) 0%, rgba(247, 251, 255, .82) 9%, rgba(247, 251, 255, 0) 25%, rgba(247, 251, 255, 0) 74%, rgba(247, 251, 255, .84) 92%, var(--guided-bg) 100%);
}

.guided-intro__visual::after {
    inset: -2px;
    background: radial-gradient(ellipse at center, rgba(247, 251, 255, 0) 48%, rgba(247, 251, 255, .42) 82%, var(--guided-bg) 100%);
}

.guided-intro__visual img {
    width: 100%;
    height: 100%;
    min-height: clamp(470px, 58vh, 610px);
    object-fit: cover;
    object-position: center;
    filter: saturate(.97) contrast(.97);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-composite: intersect;
}

.guided-choice {
    display: grid;
    gap: clamp(32px, 5vh, 54px);
}

.guided-choice__heading {
    width: min(780px, 100%);
    margin: 0 auto;
    text-align: center;
}

.guided-choice__heading h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
}

.guided-choice__heading p {
    font-size: 18px;
}

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

.guided-choice-card {
    position: relative;
    min-height: 188px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 20px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 12px;
    background: rgba(255, 255, 255, .82);
    color: #0f172a;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .06);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.guided-choice-card:hover {
    border-color: rgba(0, 88, 181, .28);
    background: #ffffff;
    box-shadow: 0 24px 58px rgba(15, 23, 42, .1);
    transform: translateY(-3px);
}

.guided-choice-card.is-selected {
    border-color: rgba(0, 88, 181, .62);
    background: #eff6ff;
    box-shadow: 0 24px 64px rgba(0, 88, 181, .14);
}



.guided-choice-card__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(0, 88, 181, .08);
    color: var(--blue);
    font-size: 28px;
}

.guided-choice-card__icon img,
.guided-list-option__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(35%) sepia(21%) saturate(1195%) hue-rotate(169deg) brightness(88%) contrast(88%);
}


.guided-choice-card strong {
    max-width: 220px;
    color: #0f172a;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.22;
}

.guided-choice-card small {
    max-width: 250px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.42;
}

.guided-choice-card__check {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--blue);
    color: #ffffff;
    font-size: 17px;
    opacity: 0;
    transform: scale(.86);
    transition: opacity .2s ease, transform .2s ease;
}

.guided-choice-card.is-selected .guided-choice-card__check {
    opacity: 1;
    transform: scale(1);
}

.guided-choice__grid--compact .guided-choice-card {
    min-height: 166px;
    padding: 22px 18px;
}

.guided-choice__list {
    width: min(820px, 100%);
    display: grid;
    gap: 14px;
    margin: 0 auto;
}

.guided-list-option {
    width: 100%;
    min-height: 92px;
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 14px;
    background: rgba(255, 255, 255, .84);
    color: #0f172a;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .055);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.guided-list-option:hover,
.guided-list-option.is-selected {
    border-color: rgba(0, 88, 181, .48);
    background: #eff6ff;
    box-shadow: 0 22px 56px rgba(0, 88, 181, .12);
    transform: translateY(-2px);
}

.guided-list-option__icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(0, 88, 181, .08);
    color: var(--blue);
    font-size: 27px;
}

.guided-list-option strong,
.guided-list-option small {
    display: block;
}

.guided-list-option strong {
    color: #0f172a;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.guided-list-option small {
    margin-top: 5px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.45;
}

.guided-list-option__arrow {
    color: #94a3b8;
    font-size: 24px;
}


.guided-locations {
    display: grid;
    gap: clamp(24px, 4vh, 38px);
}

.guided-locations__heading {
    width: min(900px, 100%);
}

.guided-locations__layout {
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.guided-locations__list {
    display: grid;
    gap: 12px;
}

.guided-location-card {
    min-height: 136px;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    color: #0f172a;
    cursor: pointer;
    text-align: left;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .055);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.guided-location-card:hover,
.guided-location-card.is-active {
    border-color: rgba(0, 88, 181, .5);
    background: #eff6ff;
    box-shadow: 0 22px 58px rgba(0, 88, 181, .12);
    transform: translateY(-2px);
}

.guided-location-card__pin {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(0, 88, 181, .08);
    color: var(--blue);
    font-size: 26px;
}

.guided-location-card__body {
    align-self: center;
}

.guided-location-card__body strong,
.guided-location-card__body small,
.guided-location-card__body em {
    display: block;
}

.guided-location-card__body strong {
    font-size: 17px;
    font-weight: 850;
    line-height: 1.2;
}

.guided-location-card__body small {
    margin-top: 5px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.guided-location-card__body em {
    margin-top: 10px;
    color: #64748b;
    font-size: 14px;
    font-style: normal;
    line-height: 1.45;
}

.guided-location-map {
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 28px 72px rgba(15, 23, 42, .08);
}

.guided-location-map__frame {
    height: 260px;
    background: #eaf2fb;
}

.guided-location-map__canvas {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: grid;
    place-items: center;
    color: #64748b;
    font-size: 13px;
    font-weight: 800;
}

.guided-location-map__canvas .leaflet-control-attribution {
    font-size: 10px;
}

.guided-location-map__details {
    padding: 22px;
}

.guided-location-map__details > span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.guided-location-map__details h3 {
    margin: 8px 0 0;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.15;
}

.guided-location-map__details p {
    margin: 12px 0 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.5;
}

.guided-location-map__details dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 0;
}

.guided-location-map__details dt {
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.guided-location-map__details dd {
    margin: 5px 0 0;
    min-width: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.guided-location-map__details a {
    color: inherit;
    text-decoration: none;
}

.guided-location-map__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.guided-location-map__actions .button--blue,
.guided-location-map__actions .guided-wizard__primary {
    color: #ffffff;
}


.guided-prep-summary {
    --guided-prep-accent: #0f4c81;
    --guided-prep-accent-rgb: 15, 76, 129;
    width: min(1120px, 100%);
    display: grid;
    gap: 28px;
    margin: 0 auto;
}

.guided-prep-summary--tc {
    --guided-prep-accent: #f97316;
    --guided-prep-accent-rgb: 249, 115, 22;
}

.guided-prep-summary__heading {
    width: min(780px, 100%);
    margin: 0 auto 4px;
    text-align: center;
}

.guided-prep-summary__heading h2 {
    margin: 0;
    color: #101828;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.02;
}

.guided-prep-summary__heading p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.55;
}

.guided-prep-summary__card {
    display: grid;
    grid-template-columns: minmax(190px, 260px) minmax(0, 1fr) minmax(180px, 220px);
    gap: clamp(26px, 4vw, 44px);
    align-items: center;
    padding: clamp(30px, 5vw, 56px);
    border: 1px solid rgba(15, 76, 129, .12);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 251, 255, .92)),
        #ffffff;
    box-shadow: 0 28px 80px rgba(16, 24, 40, .10);
}

.guided-prep-summary__pdf {
    min-height: 230px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 30%, rgba(var(--guided-prep-accent-rgb), .14), rgba(var(--guided-prep-accent-rgb), .035) 60%, transparent 72%),
        linear-gradient(180deg, rgba(248, 251, 255, .95), rgba(239, 246, 255, .82));
}

.guided-prep-summary__pdf-page {
    position: relative;
    width: 132px;
    height: 174px;
    padding: 22px 18px;
    border: 1px solid rgba(15, 76, 129, .13);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 54px rgba(16, 24, 40, .18);
    transform: rotate(-3deg);
}

.guided-prep-summary__pdf-page::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 38px;
    height: 38px;
    border-bottom-left-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--guided-prep-accent-rgb), .18), rgba(var(--guided-prep-accent-rgb), .06));
    content: "";
}

.guided-prep-summary__pdf-page span {
    display: inline-flex;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(var(--guided-prep-accent-rgb), .1);
    color: var(--guided-prep-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.guided-prep-summary__pdf-page strong,
.guided-prep-summary__pdf-page em,
.guided-prep-summary__pdf-page i {
    display: block;
    height: 8px;
    margin-top: 18px;
    border-radius: 999px;
    background: #e5edf6;
}

.guided-prep-summary__pdf-page em {
    width: 72%;
    margin-top: 12px;
}

.guided-prep-summary__pdf-page i {
    width: 52%;
    margin-top: 12px;
}

.guided-prep-summary__document-label {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(var(--guided-prep-accent-rgb), .08);
    color: var(--guided-prep-accent);
    font-size: 12px;
    font-weight: 860;
    letter-spacing: .04em;
    line-height: 1.2;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.guided-prep-summary__copy h3,
.guided-prep-summary__info h3,
.guided-prep-summary__support h3 {
    margin: 0;
    color: #101828;
    font-size: 24px;
    font-weight: 760;
    line-height: 1.15;
}

.guided-prep-summary__copy p,
.guided-prep-summary__info p,
.guided-prep-summary__support p {
    margin: 14px 0 0;
    color: #667085;
    font-size: 16px;
    line-height: 1.58;
}

.guided-prep-summary__actions {
    display: grid;
    gap: 12px;
}

.guided-prep-summary__actions .button--blue {
    background: var(--guided-prep-accent);
}

.guided-prep-summary__info {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px 24px;
    border: 1px solid rgba(15, 76, 129, .10);
    border-radius: 24px;
    background: rgba(248, 251, 255, .72);
}

.guided-prep-summary__info > .material-symbols-outlined {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(var(--guided-prep-accent-rgb), .09);
    color: var(--guided-prep-accent);
    font-size: 24px;
}

.guided-prep-summary__support {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 54px rgba(16, 24, 40, .07);
}

.guided-prep-summary__support-copy {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: center;
}

.guided-prep-summary__support-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #f2f4f7;
    color: #475467;
    font-size: 27px;
}

.guided-prep-summary__restart {
    justify-self: center;
    border: 0;
    background: transparent;
    color: #475467;
    cursor: pointer;
    font-size: 15px;
    font-weight: 760;
    text-decoration: underline;
    text-underline-offset: 4px;
}


.guided-support-summary {
    --guided-support-accent: #0f4c81;
    --guided-support-accent-rgb: 15, 76, 129;
    width: min(1040px, 100%);
    display: grid;
    gap: 28px;
    margin: 0 auto;
}

.guided-support-summary__heading {
    width: min(760px, 100%);
    margin: 0 auto 4px;
    text-align: center;
}

.guided-support-summary__heading h2 {
    margin: 8px 0 0;
    color: #101828;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.02;
}

.guided-support-summary__heading p {
    max-width: 720px;
    margin: 18px auto 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.55;
}

.guided-support-summary__card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) minmax(180px, 230px);
    gap: clamp(24px, 4vw, 40px);
    align-items: center;
    padding: clamp(30px, 5vw, 52px);
    border: 1px solid rgba(15, 76, 129, .12);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(248, 251, 255, .92)),
        #ffffff;
    box-shadow: 0 28px 80px rgba(16, 24, 40, .10);
}

.guided-support-summary__icon {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 42%, rgba(var(--guided-support-accent-rgb), .14), rgba(var(--guided-support-accent-rgb), .035) 62%, transparent 74%),
        #f8fbff;
}

.guided-support-summary__icon .material-symbols-outlined {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: #ffffff;
    color: var(--guided-support-accent);
    font-size: 36px;
    box-shadow: 0 18px 46px rgba(16, 24, 40, .12);
}

.guided-support-summary__content h3 {
    margin: 0;
    color: #101828;
    font-size: 24px;
    font-weight: 760;
    line-height: 1.15;
}

.guided-support-summary__items {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.guided-support-summary__item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    color: #667085;
    font-size: 15px;
    line-height: 1.48;
}

.guided-support-summary__item .material-symbols-outlined {
    color: var(--guided-support-accent);
    font-size: 16px;
    line-height: 1.5;
}

.guided-support-summary__actions {
    display: grid;
    gap: 12px;
}

.guided-support-summary__actions .button--blue {
    background: var(--guided-support-accent);
}

.guided-support-summary__restart {
    justify-self: center;
    border: 0;
    background: transparent;
    color: #475467;
    cursor: pointer;
    font-size: 15px;
    font-weight: 760;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.guided-wizard__scroll-hint {
    position: sticky;
    left: 50%;
    bottom: 18px;
    z-index: 8;
    width: fit-content;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(0, 88, 181, .9);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .2s ease;
}

.guided-wizard__scroll-hint::before {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 76px;
    background: radial-gradient(ellipse 340px 76px at 50% 100%, var(--guided-bg) 0%, rgba(247, 251, 255, .88) 42%, rgba(247, 251, 255, 0) 78%);
    content: "";
    pointer-events: none;
}

.guided-wizard__scroll-hint.is-visible {
    opacity: 1;
    pointer-events: auto;
    animation: guided-scroll-bob 1.7s ease-in-out infinite;
}

.guided-wizard__scroll-hint .material-symbols-outlined {
    font-size: 23px;
}

@keyframes guided-scroll-bob {
    0%,
    100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 8px);
    }
}

.guided-wizard__nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: clamp(24px, 4vh, 44px);
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, .16);
}

.guided-wizard__nav--single {
    justify-content: flex-start;
}

@keyframes guided-step-in {
    from {
        opacity: 0;
        transform: translateX(14px);
    }

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

@media (prefers-reduced-motion: reduce) {
    .guided-wizard,
    .guided-wizard__panel,
    .guided-wizard__step,
    .guided-choice-card,
    .guided-choice-card__check {
        animation: none;
        transition: none;
    }
}

@media (max-width: 1120px) {
    .guided-trigger--header {
        display: none;
    }
}

@media (max-width: 1180px) {
    .guided-choice__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .guided-wizard__brand {
        left: 22px;
        top: 20px;
    }

    .guided-wizard__brand img {
        width: 124px;
    }

    .guided-wizard__content {
        width: min(100% - 32px, 640px);
        min-height: auto;
        padding: 88px 0 32px;
    }

    .guided-wizard__topbar {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
        padding-right: 56px;
    }

    .guided-wizard__step-count {
        justify-self: start;
    }

    .guided-wizard__progress {
        order: 3;
    }

    .guided-wizard__progress-dot {
        width: 38px;
    }

    .guided-intro {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .guided-intro__copy {
        grid-column: 1;
        grid-row: 1;
        max-width: none;
        justify-self: stretch;
    }

    .guided-intro__side {
        grid-column: 1;
        grid-row: 2;
        gap: 14px;
        transform: none;
    }

    .guided-intro__statement {
        grid-column: 1;
        grid-row: 3;
        text-align: left;
    }


    .guided-intro h2,
    .guided-choice__heading h2 {
        font-size: 46px;
    }

    .guided-intro p,
    .guided-choice__heading p {
        font-size: 17px;
    }

    .guided-intro__actions,
    .guided-wizard__nav,
    .guided-result__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .guided-wizard__text-button,
    .guided-wizard__secondary,
    .guided-wizard__primary {
        width: 100%;
    }

    .guided-intro__how {
        display: flex;
        justify-content: flex-start;
        justify-self: stretch;
    }

    .guided-intro__how-panel {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 10px;
    }

    .guided-intro__visual {
        grid-column: 1;
        grid-row: 2;
        min-height: 300px;
    }

    .guided-intro__visual img {
        min-height: 300px;
    }

    .guided-locations__layout,

    .guided-location-map__frame {
        height: 220px;
    }

    .guided-location-map__details dl {
        grid-template-columns: 1fr;
    }

    .guided-choice__heading {
        text-align: left;
    }

    .guided-choice__grid {
        grid-template-columns: 1fr;
    }

    .guided-choice {
        gap: 24px;
    }

    .guided-choice__heading p {
        margin-top: 14px;
    }

    .guided-choice-card {
        min-height: 118px;
        padding: 18px;
        gap: 12px;
    }

    .guided-choice-card__icon {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }

    .guided-choice-card__icon img,
    .guided-list-option__icon img {
        width: 26px;
        height: 26px;
    }

    .guided-choice-card strong {
        max-width: none;
        font-size: 16px;
    }

    .guided-choice-card small {
        max-width: none;
        font-size: 13px;
    }

    .guided-list-option {
        grid-template-columns: 46px 1fr;
        gap: 14px;
        padding: 16px;
    }

    .guided-list-option__icon {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }

    .guided-list-option__arrow {
        display: none;
    }

    .guided-prep-summary {
        gap: 22px;
    }

    .guided-prep-summary__heading,
    .guided-support-summary__heading {
        text-align: left;
    }

    .guided-prep-summary__heading h2,
    .guided-support-summary__heading h2 {
        font-size: 42px;
    }

    .guided-prep-summary__heading p,
    .guided-support-summary__heading p {
        margin-left: 0;
        font-size: 16px;
    }

    .guided-prep-summary__card,
    .guided-prep-summary__support,
    .guided-support-summary__card {
        grid-template-columns: 1fr;
    }

    .guided-prep-summary__card,
    .guided-support-summary__card {
        padding: 24px;
        border-radius: 20px;
    }

    .guided-prep-summary__pdf {
        min-height: 190px;
    }

    .guided-prep-summary__actions,
    .guided-prep-summary__support,
    .guided-support-summary__actions {
        align-items: stretch;
    }

    .guided-prep-summary__info,
    .guided-prep-summary__support-copy {
        grid-template-columns: 44px 1fr;
    }
}