:root {
    --navy: #003261;
    --navy-deep: #071f3d;
    --blue: #38c1f7;
    --blue-soft: #dff6ff;
    --green: #1fbe7a;
    --green-soft: #dff8ec;
    --ink: #102236;
    --muted: #617186;
    --line: #d9e7ef;
    --paper: #ffffff;
    --mist: #f5f9fb;
    --warm: #ffbe64;
    --shadow: 0 24px 70px rgba(0, 50, 97, 0.18);
    --glass-surface: rgba(255, 255, 255, 0.68);
    --glass-surface-strong: rgba(255, 255, 255, 0.82);
    --glass-border: rgba(255, 255, 255, 0.66);
    --glass-highlight: rgba(255, 255, 255, 0.58);
    --glass-shadow: 0 28px 80px rgba(0, 50, 97, 0.16);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

#care,
#services,
#experience,
#partners,
#stories,
#faqs,
#contact {
    scroll-margin-top: 112px;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #ffffff 0%, #f6fbfd 42%, #ffffff 100%);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    line-height: 1.6;
    letter-spacing: 0;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

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

a,
button {
    -webkit-tap-highlight-color: rgba(56, 193, 247, 0.22);
}

button,
input,
select,
textarea {
    font: inherit;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 100;
    top: 14px;
    left: 14px;
    width: auto;
    height: auto;
    padding: 12px 14px;
    clip: auto;
    color: var(--paper);
    background: var(--navy);
    border-radius: 6px;
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
    transition: padding 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    padding: 10px 16px;
}

.header-inner {
    width: min(100%, var(--max));
    min-height: 64px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 10px 12px 10px 16px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 50, 97, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 50%;
    background: var(--paper);
    box-shadow: 0 8px 24px rgba(0, 50, 97, 0.12);
}

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

.brand-text {
    display: grid;
    gap: 0;
    min-width: 0;
}

.brand-text .brand-name,
.brand-text strong {
    font-size: 1.06rem;
    line-height: 1.05;
}

.brand-text span {
    max-width: 180px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.2;
}

.primary-nav {
    justify-self: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    color: rgba(0, 50, 97, 0.82);
    border-radius: 999px;
    font-size: 0.92rem;
    transition: color 180ms ease, background 180ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
    color: var(--navy);
    background: rgba(56, 193, 247, 0.14);
}

.header-actions {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.header-login {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(0, 50, 97, 0.12);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
    font-weight: 800;
    white-space: nowrap;
}

.header-call {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 14px;
    color: var(--paper);
    background: var(--navy);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 50, 97, 0.18);
    font-weight: 700;
    white-space: nowrap;
}

.header-call svg,
.button svg,
.carousel-button svg,
.contact-methods svg,
.faq-item svg,
.service-card svg,
.route-card svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 88svh;
    overflow: hidden;
    isolation: isolate;
    display: grid;
    align-items: end;
    padding: 138px 24px 42px;
    color: var(--paper);
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-media {
    background: var(--hero-image) center / cover no-repeat;
    transform: scale(1.02);
    animation: hero-breathe 12s ease-out both;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 30, 60, 0.82) 0%, rgba(0, 50, 97, 0.62) 35%, rgba(0, 50, 97, 0.05) 74%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 50, 97, 0.44) 100%);
}

@keyframes hero-breathe {
    from { transform: scale(1.08); }
    to { transform: scale(1.02); }
}

.hero-content {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding-bottom: 196px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 650px;
    margin: 0;
    font-size: 5rem;
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 630px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.32rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--navy);
    background: var(--paper);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--blue-soft);
}

.button-ghost {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
}

.button-call-signal {
    min-height: 64px;
    padding: 0 16px 0 14px;
    gap: 12px;
}

.button-pulse {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: currentColor;
    box-shadow:
        0 0 0 7px rgba(255, 255, 255, 0.16),
        0 0 0 14px rgba(255, 255, 255, 0.08);
}

.button-label {
    display: grid;
    min-width: 0;
    gap: 2px;
    text-align: left;
    line-height: 1.05;
}

.button-label .button-label-main,
.button-label strong,
.button-label em {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
}

.button-label em {
    font-size: 0.82rem;
    font-style: normal;
    font-weight: 850;
    opacity: 0.84;
}

.button-call-signal .signal-icon,
.button-conversation svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    fill: currentColor;
}

.button-conversation {
    min-height: 64px;
    padding: 0 18px;
}

.button-light {
    color: var(--navy);
    background: var(--paper);
}

.hero-panel {
    position: absolute;
    left: calc(50% - min(50%, var(--max)) + 24px);
    bottom: 30px;
    width: min(380px, calc(100% - 48px));
    padding: 16px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-panel div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-panel p,
.hero-panel span:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-panel .hero-panel-highlight,
.hero-panel strong {
    display: block;
    margin: 6px 0;
    font-size: 2rem;
    line-height: 1;
}

.signal {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 8px rgba(31, 190, 122, 0.16);
}

.trust-strip {
    width: min(calc(100% - 32px), var(--max));
    margin: -22px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--line);
}

.metric {
    min-height: 128px;
    display: grid;
    align-content: center;
    gap: 6px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.96);
}

.metric strong {
    color: var(--navy);
    font-size: 2rem;
    line-height: 1;
}

.metric span {
    color: var(--muted);
}

.section,
.experience,
.daily-support-inner,
.partners-inner,
.stories,
.contact-section,
.content-page {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

.section {
    padding: 104px 0;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.section-heading h2,
.experience h2,
.daily-support-section h2,
.partners-section h2,
.stories h2,
.contact-section h2,
.content-article h1 {
    margin: 0;
    color: var(--navy-deep);
    font-size: 3.35rem;
    line-height: 1.04;
    letter-spacing: 0;
}

.section-heading p,
.intro-copy,
.experience-copy p,
.daily-support-copy p,
.partners-copy p,
.command-copy p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.08rem;
}

.intro-copy p:first-child {
    margin-top: 0;
}

.care-lanes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.lane-card,
.service-card,
.post-card {
    min-height: 245px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lane-card:hover,
.service-card:hover,
.post-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 193, 247, 0.55);
    box-shadow: 0 18px 50px rgba(0, 50, 97, 0.12);
}

.lane-number {
    color: var(--blue);
    font-weight: 900;
}

.lane-card h3,
.service-card h3,
.post-card h2,
.footer-grid h3 {
    margin: 12px 0 8px;
    color: var(--navy);
    font-size: 1.25rem;
}

.lane-card p,
.service-card p,
.post-card p {
    margin: 0;
    color: var(--muted);
}

.daily-support-section {
    padding: 92px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #eef7fb 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.daily-support-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 40px;
    align-items: start;
}

.daily-support-copy {
    position: sticky;
    top: 116px;
}

.daily-support-copy h2 {
    max-width: 620px;
}

.daily-support-copy p:not(.eyebrow) {
    max-width: 540px;
    margin-bottom: 0;
}

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

.daily-card {
    min-height: 210px;
    display: grid;
    align-content: end;
    gap: 14px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(0, 50, 97, 0.12);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 50, 97, 0.08);
}

.daily-card::before {
    content: "";
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: 999px;
}

.daily-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.22rem;
    line-height: 1.15;
}

.daily-card p {
    margin: 0;
    color: #4f6579;
}

.services-section {
    border-top: 1px solid var(--line);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 42px;
}

.service-card {
    min-height: 288px;
    display: flex;
    flex-direction: column;
}

.icon-shell {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--blue-soft);
    border-radius: 8px;
}

.service-card a {
    margin-top: auto;
    color: var(--navy);
    font-weight: 800;
}

.experience {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: 36px;
    align-items: stretch;
    padding: 96px 0;
}

.experience-copy {
    min-height: 520px;
    display: grid;
    align-content: center;
    padding: 58px;
    color: var(--paper);
    background:
        linear-gradient(135deg, rgba(0, 50, 97, 0.98), rgba(56, 193, 247, 0.92)),
        var(--navy);
    border-radius: 8px;
}

.experience-copy h2 {
    color: var(--paper);
}

.experience-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
}

.experience-copy .eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

.journey {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--mist);
}

.journey-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 22px;
}

.journey-tab {
    min-height: 44px;
    border: 1px solid var(--line);
    color: var(--navy);
    background: var(--paper);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
}

.journey-tab.active {
    color: var(--paper);
    background: var(--navy);
    border-color: var(--navy);
}

.journey-stage {
    display: none;
    min-height: 404px;
    padding: 46px;
    align-content: end;
    color: var(--paper);
    background:
        linear-gradient(180deg, rgba(7, 31, 61, 0.2), rgba(7, 31, 61, 0.88)),
        linear-gradient(135deg, var(--navy-deep), var(--navy));
    border-radius: 8px;
}

.journey-stage.active {
    display: grid;
    animation: fade-up 280ms ease both;
}

.journey-stage span {
    color: var(--blue);
    font-size: 0.95rem;
    font-weight: 900;
}

.journey-stage h3 {
    max-width: 520px;
    margin: 12px 0;
    font-size: 2.2rem;
    line-height: 1.08;
}

.journey-stage p {
    max-width: 540px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.command-centre {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 44px;
    align-items: center;
}

.command-visual {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(140deg, #f7fcff, #ebf9f0),
        var(--mist);
    border: 1px solid var(--line);
}

.pulse-map {
    position: absolute;
    inset: 36px;
    border: 1px solid rgba(0, 50, 97, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(rgba(0, 50, 97, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 50, 97, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.pulse-map::before,
.pulse-map::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(56, 193, 247, 0.42);
}

.pulse-map::before {
    width: 260px;
    height: 260px;
    top: 18%;
    left: 20%;
}

.pulse-map::after {
    width: 360px;
    height: 360px;
    right: 8%;
    bottom: 8%;
}

.pulse-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(31, 190, 122, 0.35);
    animation: pulse 2.6s ease-out infinite;
}

.dot-one { top: 28%; left: 28%; }
.dot-two { top: 54%; left: 62%; animation-delay: 400ms; }
.dot-three { top: 70%; left: 42%; animation-delay: 800ms; background: var(--blue); }
.dot-four { top: 32%; left: 74%; animation-delay: 1200ms; background: var(--warm); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(31, 190, 122, 0.35); }
    70% { box-shadow: 0 0 0 28px rgba(31, 190, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(31, 190, 122, 0); }
}

.availability-panel {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.availability-panel span {
    color: var(--muted);
}

.availability-panel strong {
    display: block;
    margin: 4px 0 16px;
    color: var(--navy);
    font-size: 2.4rem;
    line-height: 1;
}

.progress-line {
    height: 10px;
    overflow: hidden;
    background: var(--blue-soft);
    border-radius: 999px;
}

.progress-line span {
    display: block;
    width: 84%;
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--blue));
    border-radius: inherit;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 800;
}

.check-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(31, 190, 122, 0.12);
}

.stories {
    padding: 96px 0;
    border-top: 1px solid var(--line);
}

.stories-header {
    max-width: 740px;
    margin-bottom: 36px;
}

.stories-header p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
}

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

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

.feedback-card {
    grid-column: span 4;
    min-height: 250px;
    display: grid;
    align-content: start;
    gap: 13px;
    padding: 26px;
    color: var(--navy);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(223, 246, 255, 0.58));
    border: 1px solid rgba(56, 193, 247, 0.22);
    border-radius: 8px;
    box-shadow: 0 22px 56px rgba(0, 50, 97, 0.12);
}

.feedback-card:nth-child(4),
.feedback-card:nth-child(5) {
    grid-column: span 6;
    min-height: 220px;
}

.feedback-card > span {
    color: var(--blue);
    font-size: 0.92rem;
    font-weight: 950;
}

.feedback-card h3 {
    margin: 0;
    color: var(--navy-deep);
    font-size: 1.34rem;
    line-height: 1.14;
}

.feedback-card p {
    margin: 0;
    color: #4b647d;
}

.feedback-card small {
    align-self: end;
    width: fit-content;
    padding: 7px 10px;
    color: #1d7655;
    background: rgba(32, 183, 122, 0.12);
    border: 1px solid rgba(32, 183, 122, 0.18);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.outcome-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
    gap: 18px;
    align-items: stretch;
}

.outcome-card {
    position: relative;
    min-height: 320px;
    display: grid;
    align-content: end;
    gap: 16px;
    overflow: hidden;
    padding: 34px;
    color: var(--navy);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(223, 246, 255, 0.5));
    border: 1px solid rgba(0, 50, 97, 0.11);
    border-radius: 8px;
    box-shadow: 0 22px 56px rgba(0, 50, 97, 0.1);
}

.outcome-card:first-child {
    color: var(--paper);
    background:
        linear-gradient(135deg, rgba(7, 31, 61, 0.98), rgba(0, 50, 97, 0.94) 58%, rgba(15, 108, 146, 0.9));
}

.outcome-card::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 28px;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(56, 193, 247, 0.34);
    border-radius: 50%;
    box-shadow:
        -26px 28px 0 -18px rgba(31, 190, 122, 0.3),
        0 0 0 14px rgba(56, 193, 247, 0.05);
    pointer-events: none;
}

.outcome-card:first-child::after {
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
        -26px 28px 0 -18px rgba(31, 190, 122, 0.46),
        0 0 0 14px rgba(255, 255, 255, 0.05);
}

.outcome-card > span {
    color: var(--green);
    font-size: 0.86rem;
    font-weight: 950;
}

.outcome-card:first-child > span,
.outcome-card:first-child h3,
.outcome-card:first-child p {
    color: var(--paper);
}

.outcome-card h3 {
    max-width: 420px;
    margin: 0;
    color: var(--navy-deep);
    font-size: 1.58rem;
    line-height: 1.12;
    text-wrap: balance;
}

.outcome-card p {
    max-width: 520px;
    margin: 0;
    color: #4b647d;
}

.outcome-card:first-child p {
    color: rgba(255, 255, 255, 0.82);
}

.question-card {
    min-height: 260px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 26px;
    color: var(--paper);
    background: #003261;
    border-radius: 8px;
    box-shadow: 0 22px 56px rgba(0, 50, 97, 0.14);
}

.question-card:nth-child(2) {
    background: #0d4c68;
}

.question-card:nth-child(3) {
    background: #071f3d;
}

.question-card h3 {
    margin: 0;
    color: var(--paper);
    font-size: 1.45rem;
    line-height: 1.14;
}

.question-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.testimonial-shell {
    display: grid;
    grid-template-columns: 54px 1fr 54px;
    gap: 14px;
    align-items: center;
}

.carousel-button {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--navy);
    background: var(--paper);
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-track {
    min-height: 260px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy);
    color: var(--paper);
}

.testimonial {
    display: none;
    min-height: 260px;
    padding: 48px;
    align-content: center;
}

.testimonial.active {
    display: grid;
    animation: fade-up 260ms ease both;
}

.testimonial p {
    max-width: 820px;
    margin: 0 0 22px;
    font-size: 1.7rem;
    line-height: 1.25;
}

.testimonial span {
    color: var(--blue);
    font-weight: 800;
}

.faqs {
    padding-top: 40px;
}

.faq-list {
    max-width: 860px;
    margin: 36px 0 0 auto;
    border-top: 1px solid var(--line);
}

.faq-item {
    width: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-weight: 850;
}

.faq-item svg {
    flex: 0 0 auto;
    transition: transform 180ms ease;
}

.faq-item.active svg {
    transform: rotate(180deg);
}

.faq-panel {
    display: none;
    padding: 0 0 24px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
}

.faq-panel.open {
    display: block;
}

.faq-panel p {
    max-width: 720px;
    margin: 0;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
    padding: 96px 0 112px;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-methods a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    color: var(--navy);
    font-weight: 850;
}

.contact-methods svg {
    width: 24px;
    height: 24px;
    color: var(--blue);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--mist);
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-weight: 800;
}

.spam-check-field {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.contact-alert,
.contact-guard-message {
    margin: 0;
    padding: 13px 14px;
    color: var(--navy);
    background: rgba(223, 246, 255, 0.72);
    border: 1px solid rgba(56, 193, 247, 0.28);
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.45;
}

.contact-alert-success {
    background: rgba(225, 249, 238, 0.88);
    border-color: rgba(31, 160, 96, 0.24);
}

.contact-alert-warning,
.contact-guard-message.is-error {
    background: rgba(255, 244, 226, 0.9);
    border-color: rgba(203, 119, 28, 0.3);
}

.contact-guard-message:empty {
    display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid #cfe0ea;
    border-radius: 6px;
    padding: 11px 12px;
    color: var(--ink);
    background: var(--paper);
}

@supports (-webkit-touch-callout: none) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: max(1rem, 16px);
    }
}

.contact-form textarea {
    min-height: 124px;
    resize: vertical;
}

.contact-form .button-primary.care-note-button {
    width: 100%;
    min-height: 74px;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 10px 10px 18px;
    color: var(--paper);
    background:
        linear-gradient(135deg, rgba(0, 50, 97, 0.98), rgba(15, 108, 146, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 18px 44px rgba(0, 50, 97, 0.22);
}

.care-note-copy {
    display: grid;
    min-width: 0;
    gap: 3px;
    text-align: left;
    line-height: 1.05;
}

.care-note-copy .care-note-main,
.care-note-copy strong,
.care-note-copy em {
    display: block;
}

.care-note-copy .care-note-main,
.care-note-copy strong {
    font-size: 1.08rem;
}

.care-note-copy em {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-style: normal;
    font-weight: 800;
}

.care-note-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--navy);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(223, 246, 255, 0.72));
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.care-note-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.journey-tab:focus-visible,
.carousel-button:focus-visible,
.button:focus-visible,
.faq-item:focus-visible,
.nav-toggle:focus-visible,
.header-call:focus-visible,
.header-login:focus-visible,
.footer-phone:focus-visible,
.footer-email:focus-visible,
.footer-social-link:focus-visible,
.footer-cta-button:focus-visible,
.footer-newsletter input:focus,
.footer-newsletter button:focus-visible {
    outline: 3px solid rgba(56, 193, 247, 0.45);
    outline-offset: 3px;
}

.site-footer {
    color: var(--paper);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 8%, rgba(56, 193, 247, 0.32), transparent 30%),
        radial-gradient(circle at 82% 4%, rgba(31, 190, 122, 0.24), transparent 28%),
        linear-gradient(135deg, #071f3d 0%, #003261 48%, #0f6c92 100%);
    isolation: isolate;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
    opacity: 0.42;
}

.footer-cta,
.footer-grid,
.footer-directory,
.footer-bottom {
    width: min(calc(100% - 40px), var(--max));
    margin: 0 auto;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.42fr);
    align-items: center;
    gap: 34px;
    padding: 72px 0 44px;
}

.footer-cta h2 {
    margin: 0;
    max-width: 780px;
    font-size: 3rem;
    line-height: 1.03;
    text-wrap: balance;
}

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

.footer-area-chips,
.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.footer-area-chips span,
.footer-trust-row span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 850;
}

.footer-contact-card {
    display: grid;
    gap: 12px;
    padding: 24px;
    color: var(--navy);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(223, 246, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 28px 70px rgba(0, 20, 42, 0.26);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.footer-card-label {
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 1.86rem;
    font-weight: 900;
    line-height: 1;
}

.footer-phone svg {
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    fill: currentColor;
}

.footer-email {
    width: fit-content;
    color: #0b5f89;
    border-bottom: 2px solid rgba(56, 193, 247, 0.72);
    font-weight: 850;
}

.footer-cta .footer-contact-card p {
    margin: 0;
    color: #52687d;
}

.footer-cta-button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    justify-self: end;
    padding: 0 20px;
    color: var(--navy);
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(0, 20, 42, 0.18);
    font-weight: 900;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-cta-button:hover,
.footer-cta-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(0, 20, 42, 0.24);
}

.footer-cta-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-directory {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 18px;
    padding: 72px 0 42px;
}

.footer-directory-card {
    display: grid;
    align-content: start;
    gap: 15px;
    min-width: 0;
    padding: 24px;
    color: var(--navy);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(223, 246, 255, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 20px 58px rgba(0, 20, 42, 0.18);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.footer-directory-card h3 {
    margin: 0;
    color: var(--green);
    font-size: 1rem;
    font-weight: 900;
    text-transform: none;
}

.footer-directory-card p,
.footer-directory-card address {
    margin: 0;
    color: #52687d;
    font-size: 0.98rem;
    line-height: 1.55;
}

.footer-directory-card address {
    font-style: normal;
    font-weight: 850;
    color: var(--navy);
}

.footer-contact-list {
    display: grid;
    gap: 12px;
}

.footer-directory .footer-phone {
    font-size: clamp(1.3rem, 2.1vw, 1.76rem);
}

.footer-social-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 850;
    text-decoration: none;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    color: #0b5f89;
}

.footer-social-mark {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    color: var(--paper);
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1;
    background: var(--navy);
    border-radius: 50%;
}

.footer-social-mark::before {
    content: "f";
}

.footer-directory .footer-links {
    gap: 10px;
}

.footer-directory .footer-links a {
    color: var(--navy);
    font-weight: 850;
}

.footer-directory .footer-links a:hover,
.footer-directory .footer-links a:focus-visible {
    color: #0b5f89;
    border-bottom-color: var(--blue);
}

.footer-newsletter {
    display: grid;
    gap: 10px;
}

.footer-newsletter label {
    display: grid;
    gap: 6px;
}

.footer-newsletter label span {
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 900;
}

.footer-newsletter input {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #cfe0ea;
    border-radius: 6px;
}

.footer-newsletter button {
    min-height: 46px;
    color: var(--paper);
    background: var(--navy);
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.footer-bottom-v2 {
    align-items: center;
}

.footer-bottom-v2 .footer-summary {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    min-width: 0;
}

.footer-bottom-v2 .footer-brand {
    flex: 0 0 auto;
}

.footer-bottom-v2 .footer-trust-row {
    margin-top: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 18px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(190px, 0.46fr) minmax(190px, 0.46fr);
    gap: 36px;
    padding: 38px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-summary p {
    max-width: 520px;
}

.footer-grid p,
.footer-links a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid h3 {
    margin: 0 0 14px;
    color: var(--paper);
    font-size: 1rem;
    text-transform: uppercase;
}

.footer-brand .brand-text span {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    width: fit-content;
    transition: color 180ms ease, border-color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--paper);
    border-bottom: 2px solid var(--blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    font-size: 0.92rem;
}

.content-page {
    padding: 142px 0 96px;
}

.content-article {
    max-width: 860px;
    margin: 0 auto;
}

.entry-content {
    color: var(--muted);
}

.entry-content a,
.post-card a {
    color: var(--navy);
    font-weight: 800;
}

.post-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

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

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

/* A-plus healthcare design pass */
body {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 46%, #ffffff 100%);
    font-size: 17px;
}

.site-header {
    padding: 14px 18px;
}

.header-inner {
    min-height: 72px;
    grid-template-columns: auto minmax(360px, 1fr) auto;
    gap: 22px;
    padding: 11px 14px 11px 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(0, 50, 97, 0.1);
    box-shadow: 0 16px 44px rgba(0, 50, 97, 0.12);
}

.brand-mark {
    width: 48px;
    height: 48px;
}

.brand-text .brand-name,
.brand-text strong {
    font-size: 1.12rem;
    white-space: nowrap;
}

.nav-list {
    gap: 6px;
}

.nav-list a {
    min-height: 42px;
    padding: 0 11px;
    color: #1d3a59;
    font-weight: 750;
}

.header-call {
    min-height: 48px;
    padding: 0 18px;
    color: var(--navy);
    background: rgba(223, 246, 255, 0.76);
    border: 1px solid rgba(56, 193, 247, 0.32);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 28px rgba(0, 50, 97, 0.1);
}

.header-login {
    min-height: 48px;
    padding: 0 18px;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(0, 50, 97, 0.12);
}

.header-call svg {
    color: #0b6d95;
}

.hero-v2 {
    min-height: 92svh;
    align-items: center;
    padding: 132px 24px 88px;
}

.hero-v2 .hero-media {
    background-position: center right;
    filter: saturate(0.98) contrast(1.04);
}

.hero-v2 .hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 35, 67, 0.92) 0%, rgba(0, 50, 97, 0.78) 34%, rgba(0, 50, 97, 0.24) 66%, rgba(0, 50, 97, 0.1) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(0, 50, 97, 0.18) 100%);
}

.hero-v2 .hero-content {
    padding-bottom: 0;
}

.hero-v2 h1 {
    max-width: 760px;
    font-size: 4.75rem;
    line-height: 1;
    text-wrap: balance;
}

.hero-v2 .hero-copy {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 1.28rem;
    line-height: 1.55;
}

.hero-v2 .eyebrow {
    color: #8be2ff;
}

.hero-v2 .button-primary {
    color: var(--paper);
    background: var(--green);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.hero-v2 .button-primary:hover,
.hero-v2 .button-primary:focus-visible {
    background: #20aa70;
}

.hero-v2 .button-call-signal {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 22px 54px rgba(0, 20, 42, 0.22);
}

.hero-v2 .button-ghost {
    border-color: rgba(255, 255, 255, 0.5);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 18px 44px rgba(0, 20, 42, 0.18);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-proof span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-care-card {
    left: auto;
    right: calc(50% - min(50%, var(--max)) + 24px);
    bottom: 76px;
    width: min(360px, calc(100% - 48px));
    padding: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.78);
}

.hero-care-card p {
    margin: 0 0 8px;
    color: var(--muted);
    font-weight: 800;
}

.hero-care-card .hero-panel-highlight,
.hero-care-card strong {
    font-size: 2rem;
    letter-spacing: 0;
}

.hero-care-card span:last-child {
    display: block;
    margin-top: 8px;
    color: #34516d;
}

.decision-strip {
    width: min(calc(100% - 40px), var(--max));
    margin: -44px auto 0;
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.care-signal-board {
    grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 28px 80px rgba(0, 50, 97, 0.16);
}

.care-compass-board {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 247, 251, 0.78)),
        rgba(255, 255, 255, 0.9);
}

.care-signal-intro {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 30px;
    background:
        radial-gradient(circle at 18% 12%, rgba(32, 183, 122, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(223, 246, 255, 0.74), rgba(255, 255, 255, 0.44));
}

.care-compass-board .care-signal-intro::after {
    content: "";
    position: absolute;
    right: -62px;
    bottom: -66px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(0, 50, 97, 0.12);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 32px rgba(56, 193, 247, 0.07),
        inset 0 0 0 64px rgba(31, 190, 122, 0.06);
    pointer-events: none;
}

.care-signal-intro span {
    color: var(--green);
    font-size: 0.84rem;
    font-weight: 900;
}

.care-signal-intro h2 {
    margin: 0;
    color: var(--navy-deep);
    font-size: 2.1rem;
    line-height: 1.05;
    text-wrap: balance;
}

.care-signal-intro p {
    margin: 0;
    color: #35536f;
}

.care-signal-list {
    display: grid;
    border-left: 1px solid rgba(0, 50, 97, 0.1);
}

.care-signal-row {
    display: grid;
    grid-template-columns: 90px 30px minmax(0, 1fr) max-content;
    align-items: center;
    gap: 16px;
    min-width: 0;
    min-height: 132px;
    padding: 24px 26px;
    color: var(--navy);
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease;
}

.care-signal-row + .care-signal-row {
    border-top: 1px solid rgba(0, 50, 97, 0.1);
}

.care-signal-row:hover,
.care-signal-row:focus-visible {
    color: var(--navy-deep);
    background:
        linear-gradient(90deg, rgba(32, 183, 122, 0.12), rgba(223, 246, 255, 0.34));
}

.signal-word {
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 950;
}

.signal-dot {
    position: relative;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--green);
    box-shadow:
        0 0 0 8px rgba(32, 183, 122, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.7);
}

.signal-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, rgba(32, 183, 122, 0.65), rgba(56, 193, 247, 0));
    transform: translateY(-50%);
}

.signal-copy {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.signal-copy .signal-heading,
.signal-copy strong {
    color: var(--navy-deep);
    font-size: 1.1rem;
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.signal-copy small {
    color: #4b6680;
    font-size: 0.96rem;
    line-height: 1.48;
    overflow-wrap: anywhere;
}

.signal-action {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(56, 193, 247, 0.3);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
    font-weight: 900;
    white-space: nowrap;
}

.decision-card {
    min-height: 236px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 26px;
    background: var(--paper);
    border: 1px solid rgba(0, 50, 97, 0.12);
    border-radius: 8px;
    box-shadow: 0 22px 60px rgba(0, 50, 97, 0.12);
}

.decision-card span,
.route-card-head h3,
.standards-top span {
    color: var(--navy);
}

.decision-card > span {
    color: var(--green);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.decision-card h2 {
    margin: 0;
    color: var(--navy-deep);
    font-size: 1.45rem;
    line-height: 1.16;
}

.decision-card p {
    margin: 0;
    color: var(--muted);
}

.decision-card a,
.route-link {
    align-self: end;
    color: var(--navy);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(56, 193, 247, 0.55);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.section {
    padding: 112px 0;
}

.section-kicker,
.eyebrow {
    color: var(--green);
}

.section-heading h2,
.experience h2,
.partners-section h2,
.stories h2,
.contact-section h2,
.content-article h1 {
    max-width: 850px;
    font-size: 3.45rem;
    line-height: 1.03;
    text-wrap: balance;
}

.section-heading p {
    max-width: 640px;
}

.intro-copy {
    color: #455d75;
    font-size: 1.12rem;
}

.assurance-list,
.stage-list,
.route-list {
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.assurance-list {
    display: grid;
    gap: 12px;
}

.assurance-list li,
.route-list li,
.stage-list li {
    position: relative;
    padding-left: 28px;
}

.assurance-list li::before,
.route-list li::before,
.stage-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(31, 190, 122, 0.12);
}

.care-lanes {
    gap: 18px;
}

.lane-card {
    min-height: 224px;
    border-color: rgba(0, 50, 97, 0.12);
    box-shadow: 0 12px 34px rgba(0, 50, 97, 0.07);
}

.services-section {
    width: auto;
    max-width: none;
    padding: 84px max(20px, calc((100vw - var(--max)) / 2)) 96px;
    background: #eef7fb;
    border-top: 1px solid #d6e8f0;
    border-bottom: 1px solid #d6e8f0;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.route-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    background: var(--paper);
    border: 1px solid rgba(0, 50, 97, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 50, 97, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.route-card:hover,
.route-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(56, 193, 247, 0.65);
    box-shadow: 0 24px 58px rgba(0, 50, 97, 0.14);
}

.route-card-head {
    display: flex;
    align-items: center;
    gap: 18px;
}

.route-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.32rem;
    line-height: 1.15;
}

.route-card p {
    margin: 0;
    color: #4f6579;
}

.route-card-wide {
    grid-column: 1 / -1;
    min-height: 230px;
}

.route-card-wide .route-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-list {
    display: grid;
    gap: 8px;
    color: var(--ink);
}

.route-link {
    margin-top: auto;
}

.icon-shell {
    width: 50px;
    height: 50px;
    color: var(--navy);
    background: linear-gradient(180deg, #ecfbff, #dff6ff);
    border: 1px solid rgba(56, 193, 247, 0.25);
}

.route-card .icon-shell svg {
    width: 26px;
    height: 26px;
}

.experience {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding: 110px 0;
}

.experience-copy {
    min-height: 560px;
    padding: 62px;
    background: #003261;
    box-shadow: 0 24px 70px rgba(0, 50, 97, 0.16);
}

.journey-v2 {
    padding: 28px;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(0, 50, 97, 0.08);
}

.journey-stage {
    min-height: 424px;
    align-content: start;
    color: var(--ink);
    background:
        linear-gradient(180deg, #ffffff 0%, #eef8fd 100%);
    border: 1px solid #d6e8f0;
}

.journey-stage span {
    color: var(--green);
}

.journey-stage h3 {
    color: var(--navy-deep);
}

.journey-stage p {
    color: #455d75;
}

.stage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stage-list li {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px 0 30px;
    color: var(--navy);
    background: var(--paper);
    border: 1px solid #d6e8f0;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
}

.stage-list li::before {
    left: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: translateY(-50%);
    box-shadow: none;
}

.partners-section {
    padding: 104px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #f2fafc 100%);
    border-top: 1px solid #d6e8f0;
    border-bottom: 1px solid #d6e8f0;
}

.partners-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 48px;
    align-items: start;
}

.partners-copy {
    position: sticky;
    top: 116px;
}

.partners-copy p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 0;
}

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

.partner-card {
    min-height: 248px;
    display: grid;
    gap: 18px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 50, 97, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(0, 50, 97, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.partner-card:hover,
.partner-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(56, 193, 247, 0.62);
    box-shadow: 0 24px 58px rgba(0, 50, 97, 0.13);
}

.partner-card-featured {
    min-height: 260px;
    grid-column: 1 / -1;
    grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1fr);
    align-items: center;
    padding: 24px;
}

.partner-logo {
    min-height: 118px;
    display: grid;
    place-items: center;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #d9e7ef;
    border-radius: 8px;
}

.partner-card-featured .partner-logo {
    min-height: 172px;
}

.partner-logo img {
    width: auto;
    max-width: min(100%, 240px);
    max-height: 84px;
    object-fit: contain;
}

.partner-card-featured .partner-logo img {
    max-width: min(100%, 340px);
    max-height: 138px;
}

.partner-text-mark {
    width: min(100%, 240px);
    min-height: 84px;
    display: grid;
    place-items: center;
    gap: 3px;
    padding: 14px;
    color: var(--paper);
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 50, 97, 0.98), rgba(56, 193, 247, 0.78)),
        var(--navy);
    border-radius: 8px;
}

.partner-text-mark .partner-text-main,
.partner-text-mark strong {
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0;
}

.partner-text-mark span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.partner-card-copy span {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.partner-card-copy h3 {
    margin: 8px 0 8px;
    color: var(--navy);
    font-size: 1.3rem;
    line-height: 1.15;
}

.partner-card-copy p {
    margin: 0;
    color: #4f6579;
}

.partner-rating-panel {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 16px;
    background: linear-gradient(180deg, #f3fbf7 0%, #ffffff 100%);
    border: 1px solid rgba(31, 190, 122, 0.24);
    border-radius: 8px;
}

.partner-rating-score {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.partner-rating-score span {
    color: #2b5c4b;
}

.partner-rating-score .partner-rating-value,
.partner-rating-score strong {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    color: var(--paper);
    background: var(--green);
    border-radius: 999px;
    font-size: 1.05rem;
    line-height: 1;
}

.partner-rating-panel p {
    color: #435d55;
    font-size: 0.98rem;
}

.partner-rating-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    justify-self: start;
    padding: 0 14px;
    color: var(--paper);
    background: var(--navy);
    border-radius: 999px;
    font-weight: 850;
    transition: transform 180ms ease, background 180ms ease;
}

.partner-source-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 16px;
    color: var(--navy);
    border-bottom: 2px solid var(--blue);
    font-weight: 850;
}

.partner-rating-link:hover,
.partner-rating-link:focus-visible,
.partner-source-link:hover,
.partner-source-link:focus-visible {
    background: var(--navy-deep);
    transform: translateY(-2px);
}

.partner-source-link:hover,
.partner-source-link:focus-visible {
    color: var(--paper);
    padding: 2px 8px;
    margin-left: -8px;
    background: var(--navy-deep);
    border-bottom-color: transparent;
    border-radius: 999px;
}

.partner-rating-link svg,
.partner-source-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.partner-rating-link span,
.partner-source-link span {
    color: inherit;
    font-size: 0.92rem;
    font-weight: inherit;
    text-transform: none;
}

.stories {
    padding: 106px 0;
}

.testimonial-track {
    background: #003261;
    box-shadow: 0 22px 60px rgba(0, 50, 97, 0.14);
}

.testimonial p {
    font-size: 1.55rem;
    line-height: 1.32;
}

.contact-section {
    padding-top: 112px;
}

.contact-form {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 50, 97, 0.1);
}

.contact-form .button-primary {
    color: var(--paper);
    background: var(--navy);
}

/* Liquid glass material layer */
.header-inner,
.hero-care-card,
.care-signal-board,
.decision-card,
.lane-card,
.daily-card,
.feedback-card,
.outcome-card,
.route-card,
.experience-copy,
.journey,
.partner-card,
.footer-contact-card,
.contact-form {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.header-inner {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
        var(--glass-surface);
    border-color: var(--glass-border);
    box-shadow:
        inset 0 1px 0 var(--glass-highlight),
        0 16px 48px rgba(0, 50, 97, 0.12);
    backdrop-filter: blur(30px) saturate(165%);
    -webkit-backdrop-filter: blur(30px) saturate(165%);
}

.header-inner::before,
.hero-care-card::after,
.care-signal-board::before,
.decision-card::before,
.lane-card::after,
.daily-card::after,
.feedback-card::before,
.outcome-card::before,
.route-card::before,
.experience-copy::before,
.journey::before,
.partner-card::before,
.footer-contact-card::before,
.contact-form::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.08) 44%, rgba(56, 193, 247, 0.1) 100%);
    opacity: 0.72;
    pointer-events: none;
}

.header-inner::before {
    inset: 1px 1px auto 1px;
    height: 46%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.header-inner > *,
.hero-care-card > *,
.care-signal-board > *,
.decision-card > *,
.lane-card > *,
.daily-card > *,
.feedback-card > *,
.outcome-card > *,
.route-card > *,
.experience-copy > *,
.journey > *,
.partner-card > *,
.footer-contact-card > *,
.contact-form > * {
    position: relative;
    z-index: 1;
}

.brand-mark {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(223, 246, 255, 0.72));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 8px 24px rgba(0, 50, 97, 0.12);
}

.contact-form .button-primary {
    background:
        linear-gradient(135deg, rgba(0, 50, 97, 0.96), rgba(0, 86, 132, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 12px 30px rgba(0, 50, 97, 0.18);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.header-call {
    color: var(--navy);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(223, 246, 255, 0.72));
    border: 1px solid rgba(56, 193, 247, 0.34);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 28px rgba(0, 50, 97, 0.1);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.header-login {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(223, 246, 255, 0.5));
    border: 1px solid rgba(0, 50, 97, 0.14);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 10px 24px rgba(0, 50, 97, 0.08);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.nav-list a:hover,
.nav-list a:focus-visible {
    background:
        linear-gradient(135deg, rgba(223, 246, 255, 0.9), rgba(255, 255, 255, 0.46));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero-proof span {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        0 12px 34px rgba(0, 20, 42, 0.18);
    backdrop-filter: blur(20px) saturate(170%);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
}

.hero-care-card,
.care-signal-board,
.decision-card,
.lane-card,
.daily-card,
.feedback-card,
.outcome-card,
.route-card,
.journey,
.partner-card,
.footer-contact-card,
.contact-form,
.faq-list {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58)),
        var(--glass-surface);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        var(--glass-shadow);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.hero-care-card {
    position: absolute;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.66)),
        rgba(255, 255, 255, 0.74);
}

.experience-copy {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        0 24px 70px rgba(0, 50, 97, 0.18);
}

.experience-copy::before {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02) 46%, rgba(139, 226, 255, 0.18) 100%);
    opacity: 0.82;
}

.journey-tab,
.contact-form input,
.contact-form select,
.contact-form textarea,
.partner-logo,
.icon-shell {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(223, 246, 255, 0.48));
    border-color: rgba(56, 193, 247, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px) saturate(145%);
    -webkit-backdrop-filter: blur(14px) saturate(145%);
}

.journey-stage {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(56, 193, 247, 0.16);
}

.partner-rating-panel {
    background:
        linear-gradient(145deg, rgba(243, 251, 247, 0.88), rgba(255, 255, 255, 0.64));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.faq-list {
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
}

/* Compatibility and device-quality fallbacks */
.section,
.split,
.hero-content,
.hero-panel,
.care-signal-board,
.decision-card,
.lane-card,
.daily-card,
.feedback-card,
.outcome-card,
.route-card,
.experience-copy,
.journey,
.journey-stage,
.partner-card,
.partner-card-copy,
.partner-rating-panel,
.contact-copy,
.contact-form,
.footer-cta-copy,
.footer-contact-card,
.footer-summary,
.footer-link-group {
    min-width: 0;
}

.contact-methods a span,
.partner-rating-link span,
.partner-source-link span,
.footer-email,
.footer-links a,
.footer-bottom span {
    overflow-wrap: anywhere;
}

.footer-phone span {
    white-space: nowrap;
}

.site-header {
    padding-top: max(14px, env(safe-area-inset-top));
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
}

.site-header.is-scrolled {
    padding-top: max(10px, env(safe-area-inset-top));
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
}

@supports (min-height: 100dvh) {
    .hero-v2 {
        min-height: 92dvh;
    }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .header-inner,
    .hero-care-card,
    .care-signal-board,
    .decision-card,
    .lane-card,
    .daily-card,
        .feedback-card,
        .route-card,
        .journey,
        .partner-card,
        .footer-contact-card,
        .footer-directory-card,
        .contact-form,
        .faq-list {
        background: rgba(255, 255, 255, 0.97);
        border-color: rgba(0, 50, 97, 0.14);
        box-shadow: 0 18px 48px rgba(0, 50, 97, 0.12);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .experience-copy {
        background:
            linear-gradient(135deg, #003261, #136f9a);
        border-color: rgba(255, 255, 255, 0.24);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header-inner::before,
    .hero-care-card::after,
    .care-signal-board::before,
    .decision-card::before,
    .lane-card::after,
    .daily-card::after,
    .feedback-card::before,
    .route-card::before,
    .experience-copy::before,
        .journey::before,
        .partner-card::before,
        .footer-contact-card::before,
        .contact-form::before {
        opacity: 0;
    }

    .hero-proof span {
        background: rgba(0, 50, 97, 0.68);
        border-color: rgba(255, 255, 255, 0.38);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header-call,
    .header-login,
    .contact-form .button-primary {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .journey-tab,
    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .partner-logo,
    .icon-shell,
    .availability-panel,
    .partner-rating-panel {
        background: #ffffff;
        border-color: #d1e1ea;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

html.no-backdrop-test .header-inner,
html.no-backdrop-test .hero-care-card,
html.no-backdrop-test .care-signal-board,
html.no-backdrop-test .decision-card,
html.no-backdrop-test .lane-card,
html.no-backdrop-test .daily-card,
html.no-backdrop-test .feedback-card,
html.no-backdrop-test .outcome-card,
html.no-backdrop-test .route-card,
html.no-backdrop-test .journey,
html.no-backdrop-test .partner-card,
html.no-backdrop-test .footer-contact-card,
html.no-backdrop-test .footer-directory-card,
html.no-backdrop-test .contact-form,
html.no-backdrop-test .faq-list {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(0, 50, 97, 0.14);
    box-shadow: 0 18px 48px rgba(0, 50, 97, 0.12);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

html.no-backdrop-test .experience-copy {
    background:
        linear-gradient(135deg, #003261, #136f9a);
    border-color: rgba(255, 255, 255, 0.24);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

html.no-backdrop-test .header-inner::before,
html.no-backdrop-test .hero-care-card::after,
html.no-backdrop-test .care-signal-board::before,
html.no-backdrop-test .decision-card::before,
html.no-backdrop-test .lane-card::after,
html.no-backdrop-test .daily-card::after,
html.no-backdrop-test .feedback-card::before,
html.no-backdrop-test .outcome-card::before,
html.no-backdrop-test .route-card::before,
html.no-backdrop-test .experience-copy::before,
html.no-backdrop-test .journey::before,
html.no-backdrop-test .partner-card::before,
html.no-backdrop-test .footer-contact-card::before,
html.no-backdrop-test .contact-form::before {
    opacity: 0;
}

html.no-backdrop-test .hero-proof span {
    background: rgba(0, 50, 97, 0.68);
    border-color: rgba(255, 255, 255, 0.38);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

html.no-backdrop-test .header-call,
html.no-backdrop-test .header-login,
html.no-backdrop-test .contact-form .button-primary,
html.no-backdrop-test .journey-tab,
html.no-backdrop-test .contact-form input,
html.no-backdrop-test .contact-form select,
html.no-backdrop-test .contact-form textarea,
html.no-backdrop-test .partner-logo,
html.no-backdrop-test .icon-shell,
html.no-backdrop-test .footer-contact-card,
html.no-backdrop-test .footer-directory-card,
html.no-backdrop-test .availability-panel,
html.no-backdrop-test .partner-rating-panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

html.no-backdrop-test .journey-tab,
html.no-backdrop-test .contact-form input,
html.no-backdrop-test .contact-form select,
html.no-backdrop-test .contact-form textarea,
html.no-backdrop-test .partner-logo,
html.no-backdrop-test .icon-shell,
html.no-backdrop-test .footer-contact-card,
html.no-backdrop-test .footer-directory-card,
html.no-backdrop-test .availability-panel,
html.no-backdrop-test .partner-rating-panel {
    background: #ffffff;
    border-color: #d1e1ea;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

@media (hover: none), (pointer: coarse) {
    .button:hover,
    .care-signal-row:hover,
    .lane-card:hover,
    .service-card:hover,
    .post-card:hover,
    .route-card:hover,
    .partner-card:hover,
    .partner-rating-link:hover {
        transform: none;
    }

    .partner-source-link:hover,
    .partner-source-link:focus-visible {
        margin-left: 0;
        padding: 0;
        color: var(--navy);
        background: transparent;
        border-bottom-color: var(--blue);
        border-radius: 0;
        transform: none;
    }
}

@media (prefers-contrast: more) {
    :root {
        --muted: #344b62;
        --line: #aebfcb;
    }

    .hero-v2 .hero-overlay {
        background:
            linear-gradient(90deg, rgba(0, 28, 55, 0.96) 0%, rgba(0, 50, 97, 0.86) 45%, rgba(0, 50, 97, 0.35) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 50, 97, 0.28));
    }

    .hero-v2 .hero-copy,
    .question-card p,
    .experience-copy p:not(.eyebrow),
    .testimonial p,
    .footer-cta p:not(.eyebrow),
    .footer-grid p,
    .footer-links a,
    .footer-bottom {
        color: rgba(255, 255, 255, 0.96);
    }

    .header-inner,
    .care-signal-board,
    .decision-card,
    .lane-card,
    .daily-card,
    .feedback-card,
    .outcome-card,
    .route-card,
    .journey,
    .partner-card,
    .footer-contact-card,
    .contact-form,
    .faq-list {
        border-color: rgba(0, 50, 97, 0.32);
    }
}

@media (forced-colors: active) {
    .site-header,
    .header-inner,
    .hero,
    .hero-care-card,
    .care-signal-board,
    .care-signal-row,
    .signal-action,
    .decision-card,
    .lane-card,
    .daily-card,
    .feedback-card,
    .outcome-card,
    .route-card,
    .experience-copy,
    .journey,
    .journey-stage,
    .partner-card,
    .partner-logo,
    .partner-rating-panel,
    .footer-contact-card,
    .footer-directory-card,
    .question-card,
    .testimonial-track,
    .testimonial,
    .contact-form,
    .faq-list,
    .site-footer {
        color: CanvasText;
        background: Canvas;
        border: 1px solid CanvasText;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-media,
    .hero-overlay,
    .header-inner::before,
    .hero-care-card::after,
    .care-signal-board::before,
    .decision-card::before,
    .lane-card::after,
    .daily-card::after,
    .feedback-card::before,
    .outcome-card::before,
    .route-card::before,
    .experience-copy::before,
    .journey::before,
    .partner-card::before,
    .footer-contact-card::before,
    .contact-form::before {
        display: none;
    }

    .hero-copy,
    .hero-v2 .hero-copy,
    .care-signal-intro,
    .care-signal-intro p,
    .signal-word,
    .signal-copy .signal-heading,
    .signal-copy strong,
    .signal-copy small,
    .signal-action,
    .feedback-card,
    .feedback-card p,
    .feedback-card small,
    .outcome-card,
    .outcome-card p,
    .experience-copy p:not(.eyebrow),
    .question-card p,
    .journey-stage p,
    .testimonial p,
    .footer-cta p:not(.eyebrow),
    .footer-contact-card,
    .footer-contact-card p,
    .footer-directory-card,
    .footer-directory-card p,
    .footer-directory-card address,
    .footer-phone,
    .footer-email,
    .footer-social-link,
    .footer-area-chips span,
    .footer-trust-row span,
    .footer-grid p,
    .footer-links a,
    .footer-bottom {
        color: CanvasText;
    }

    .button,
    .header-call,
    .header-login,
    .signal-action,
    .journey-tab,
    .journey-tab.active,
    .partner-rating-link,
    .partner-source-link,
    .footer-phone,
    .footer-email,
    .footer-social-link,
    .partner-rating-score .partner-rating-value,
    .partner-rating-score strong {
        color: ButtonText;
        background: ButtonFace;
        border: 1px solid ButtonText;
        box-shadow: none;
    }

    .button:focus-visible,
    .care-signal-row:focus-visible,
    .nav-toggle:focus-visible,
    .header-call:focus-visible,
    .header-login:focus-visible,
    .journey-tab:focus-visible,
    .faq-item:focus-visible,
    .partner-rating-link:focus-visible,
    .partner-source-link:focus-visible,
    .footer-phone:focus-visible,
    .footer-email:focus-visible {
        outline: 3px solid Highlight;
        outline-offset: 3px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: auto 1fr auto auto;
    }

    .services-section {
        padding-right: 28px;
        padding-left: 28px;
    }

    .footer-cta,
    .footer-grid,
    .footer-directory {
        grid-template-columns: 1fr;
    }

    .footer-directory {
        padding-bottom: 34px;
    }

    .footer-contact-card {
        max-width: none;
    }

    .primary-nav {
        justify-self: end;
    }

    .service-grid,
    .route-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-feedback-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .feedback-card,
    .feedback-card:nth-child(4),
    .feedback-card:nth-child(5) {
        grid-column: auto;
        min-height: 0;
    }

    .experience,
    .command-centre,
    .daily-support-inner,
    .partners-inner,
    .contact-section,
    .split {
        grid-template-columns: 1fr;
    }

    .experience-copy {
        min-height: 0;
    }

    .partners-copy {
        position: static;
    }

    .daily-support-copy {
        position: static;
    }

    .hero-care-card {
        right: 24px;
    }
}

@media (max-width: 980px) {
    .site-header {
        padding-top: env(safe-area-inset-top);
        padding-left: max(10px, env(safe-area-inset-left));
        padding-right: max(10px, env(safe-area-inset-right));
        padding-bottom: 10px;
        background: linear-gradient(180deg, #f5f9fb 0%, #f5f9fb 76%, rgba(245, 249, 251, 0));
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 10px;
        padding: 10px 10px 10px 12px;
        border-radius: 0 0 8px 8px;
    }

    .primary-nav {
        position: fixed;
        top: calc(82px + env(safe-area-inset-top));
        left: max(10px, env(safe-area-inset-left));
        right: max(10px, env(safe-area-inset-right));
        width: auto;
        justify-self: auto;
        display: none;
        padding: 14px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: block;
    }

    .nav-list {
        display: grid;
        gap: 4px;
    }

    .nav-list a {
        min-height: 46px;
        justify-content: center;
    }

    .nav-toggle {
        display: block;
    }

    .header-call span {
        display: none;
    }

    .header-actions {
        gap: 6px;
    }

    .header-login {
        min-height: 44px;
        padding: 0 13px;
    }

    .header-call {
        min-width: 44px;
        min-height: 44px;
        padding: 0 13px;
    }

    .hero {
        min-height: 86svh;
        padding: 116px 18px 36px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-copy {
        font-size: 1.12rem;
    }

    .hero-content {
        padding-bottom: 150px;
    }

    .hero-v2 .hero-content {
        padding-bottom: 0;
    }

    .hero-care-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: min(100%, 520px);
        margin: 28px 0 0;
    }

    .trust-strip,
    .decision-strip,
    .care-lanes,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip,
    .decision-strip {
        margin-top: 0;
    }

    .care-signal-board {
        grid-template-columns: 1fr;
    }

    .care-signal-intro {
        padding: 28px;
    }

    .care-signal-list {
        border-top: 1px solid rgba(0, 50, 97, 0.1);
        border-left: 0;
    }

    .care-signal-row {
        grid-template-columns: 76px 24px minmax(0, 1fr) max-content;
        min-height: 118px;
        padding: 22px 24px;
    }

    .decision-card {
        min-height: 0;
    }

    .metric {
        min-height: 104px;
    }

    .section,
    .services-section,
    .daily-support-section,
    .experience,
    .partners-section,
    .stories,
    .contact-section {
        padding: 72px 0;
    }

    .services-section {
        padding: 72px 28px;
    }

    .section-heading h2,
    .experience h2,
    .daily-support-section h2,
    .partners-section h2,
    .stories h2,
    .contact-section h2,
    .content-article h1 {
        font-size: 2.45rem;
    }

    .journey-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-stage,
    .testimonial {
        padding: 30px;
    }

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

    .route-card {
        min-height: 0;
    }

    .route-card-wide .route-list {
        grid-template-columns: 1fr;
    }

    .daily-grid,
    .family-question-grid,
    .client-feedback-grid,
    .outcome-grid {
        grid-template-columns: 1fr;
    }

    .daily-card,
    .feedback-card,
    .outcome-card,
    .question-card {
        min-height: 0;
    }

    .partner-card-featured {
        grid-template-columns: 1fr;
    }

    .footer-cta,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-cta {
        padding-top: 58px;
    }

    .footer-cta h2 {
        font-size: 2.35rem;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-phone {
        font-size: 1.72rem;
    }
}

@media (max-width: 620px) {
    #care,
    #services,
    #experience,
    #partners,
    #stories,
    #faqs,
    #contact {
        scroll-margin-top: 98px;
    }

    .brand-text span {
        display: none;
    }

    .hero {
        min-height: 92svh;
    }

    .hero-v2 {
        padding: 116px 18px 36px;
    }

    .hero h1,
    .hero-v2 h1 {
        font-size: 2.65rem;
    }

    .hero-v2 .hero-copy {
        font-size: 1.04rem;
        line-height: 1.45;
    }

    .footer-cta,
    .footer-grid,
    .footer-directory,
    .footer-bottom {
        width: min(calc(100% - 32px), var(--max));
    }

    .footer-cta {
        padding: 50px 0 32px;
    }

    .footer-cta h2 {
        font-size: 2.05rem;
    }

    .footer-contact-card {
        width: 100%;
        padding: 20px;
    }

    .footer-directory-card {
        padding: 20px;
    }

    .footer-phone {
        font-size: 1.48rem;
    }

    .footer-area-chips span,
    .footer-trust-row span {
        min-height: 34px;
        font-size: 0.82rem;
    }

    .services-section {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .button-call-signal,
    .button-conversation {
        justify-content: space-between;
    }

    .care-signal-board {
        width: min(calc(100% - 32px), var(--max));
    }

    .care-signal-intro {
        padding: 24px;
    }

    .care-signal-intro h2 {
        font-size: 1.7rem;
    }

    .care-signal-row {
        grid-template-columns: 66px 20px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
        padding: 20px;
    }

    .signal-action {
        grid-column: 3;
        justify-self: start;
        margin-top: 2px;
        white-space: normal;
    }

    .hero-panel {
        left: 18px;
        right: auto;
        bottom: 22px;
        width: calc(100% - 36px);
    }

    .hero-proof {
        display: none;
    }

    .hero-care-card {
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 20px;
        padding: 18px;
    }

    .hero-care-card .hero-panel-highlight,
    .hero-care-card strong {
        font-size: 1.7rem;
    }

    .service-grid,
    .route-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .experience h2,
    .daily-support-section h2,
    .partners-section h2,
    .stories h2,
    .contact-section h2,
    .content-article h1 {
        font-size: 2.2rem;
    }

    .experience-copy,
    .journey-stage,
    .contact-form,
    .route-card,
    .decision-card,
    .daily-card,
    .feedback-card,
    .outcome-card,
    .question-card,
    .partner-card,
    .partner-card-featured {
        padding: 24px;
    }

    .testimonial-shell {
        grid-template-columns: 1fr 1fr;
    }

    .testimonial-track {
        grid-column: 1 / -1;
        order: -1;
    }

    .testimonial p {
        font-size: 1.25rem;
    }

    .command-visual {
        min-height: 420px;
    }

    .availability-panel {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 370px) {
    .site-header {
        padding-left: max(8px, env(safe-area-inset-left));
        padding-right: max(8px, env(safe-area-inset-right));
        padding-bottom: 8px;
    }

    .header-inner {
        min-height: 62px;
        gap: 10px;
        padding: 9px 10px 9px 12px;
    }

    .brand {
        gap: 9px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-text .brand-name,
    .brand-text strong {
        font-size: 0.98rem;
    }

    .header-call,
    .nav-toggle {
        width: 42px;
        min-height: 42px;
        height: 42px;
        padding: 0;
    }

    .primary-nav {
        top: calc(74px + env(safe-area-inset-top));
        left: max(8px, env(safe-area-inset-left));
        right: max(8px, env(safe-area-inset-right));
    }

    .hero-v2 {
        padding: 104px 14px 32px;
    }

    .hero h1,
    .hero-v2 h1 {
        font-size: 2.28rem;
        line-height: 1.03;
    }

    .hero-v2 .hero-copy {
        font-size: 1rem;
    }

    .hero-care-card,
    .care-signal-intro,
    .care-signal-row,
    .decision-card,
    .lane-card,
    .daily-card,
    .feedback-card,
    .outcome-card,
    .question-card,
    .route-card,
    .experience-copy,
    .journey,
    .journey-stage,
    .partner-card,
    .partner-card-featured,
    .contact-form {
        padding: 20px;
    }

    .decision-strip,
    .section,
    .experience,
    .daily-support-inner,
    .partners-inner,
    .stories,
    .contact-section,
    .content-page {
        width: min(calc(100% - 28px), var(--max));
    }

    .care-signal-intro {
        padding: 20px;
    }

    .care-signal-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px;
    }

    .signal-dot {
        display: none;
    }

    .signal-action {
        grid-column: auto;
    }

    .services-section {
        padding-right: 14px;
        padding-left: 14px;
    }

    .footer-cta,
    .footer-grid,
    .footer-directory,
    .footer-bottom {
        width: min(calc(100% - 28px), var(--max));
    }

    .footer-cta h2 {
        font-size: 1.82rem;
    }

    .footer-phone {
        font-size: 1.28rem;
    }

    .footer-phone svg {
        width: 20px;
        height: 20px;
    }

    .section-heading h2,
    .experience h2,
    .daily-support-section h2,
    .partners-section h2,
    .stories h2,
    .contact-section h2,
    .content-article h1 {
        font-size: 1.95rem;
    }

    .journey-tabs {
        grid-template-columns: 1fr;
    }

    .partner-rating-link,
    .partner-source-link {
        width: 100%;
        justify-content: center;
    }
}
