:root {
    --ink: #071824;
    --navy: #071c2f;
    --navy-light: #0c3151;
    --nhs-blue: #005eb8;
    --nhs-blue-deep: #004785;
    --teal: #007f78;
    --teal-deep: #005f5a;
    --red: #d52b1e;
    --yellow: #ffcc00;
    --yellow-strong: #f2bd00;
    --copy: #294052;
    --muted: #566c7e;
    --line: #d7e3eb;
    --paper: #f5f8fa;
    --blue-wash: #e9f4fc;
    --teal-wash: #e5f5f2;
    --white: #ffffff;
    --radius: 8px;
    --container: 1160px;
    --shadow-sm: 0 10px 30px rgba(7, 24, 36, 0.08);
    --shadow-md: 0 24px 60px rgba(7, 24, 36, 0.14);
    --shadow-strong: 0 34px 90px rgba(0, 0, 0, 0.24);
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --font: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    --display: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}

body {
    margin: 0;
    color: var(--copy);
    background: var(--white);
    font-family: var(--font);
    line-height: 1.58;
    text-rendering: optimizeLegibility;
}

::selection {
    color: var(--ink);
    background: var(--yellow);
}

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

a {
    color: inherit;
}

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

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    font-family: var(--display);
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    font-weight: 800;
    line-height: 0.96;
}

h2 {
    font-size: clamp(2rem, 8.5vw, 3.15rem);
    font-weight: 780;
    line-height: 1.03;
}

h3 {
    font-size: 1.12rem;
    font-weight: 760;
    line-height: 1.2;
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 0.7rem;
    left: 0.7rem;
    z-index: 100;
    transform: translateY(-160%);
    padding: 0.72rem 1rem;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(calc(100% - 1.25rem), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(215, 227, 235, 0.9);
    backdrop-filter: blur(18px);
    transition: box-shadow 240ms var(--ease), background-color 240ms var(--ease);
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px;
    width: calc(var(--scroll-progress, 0) * 1%);
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--nhs-blue), var(--teal));
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(7, 24, 36, 0.1);
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.6rem;
    min-height: 64px;
    transition: min-height 240ms var(--ease);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    width: fit-content;
    max-width: 100%;
    min-height: 44px;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(0.82rem, 3.3vw, 1.26rem);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.brand-post {
    padding: 0.17rem 0.25rem 0.2rem;
    color: var(--red);
    background: #fff7f5;
    border: 2px solid var(--red);
    border-radius: 4px;
}

.brand-my {
    color: #111111;
}

.brand-prescription {
    color: var(--teal-deep);
}

.header-nav,
.header-cta {
    display: none;
}

.nhs-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 36px;
    padding: 0.18rem 0.45rem;
    color: var(--white);
    background: var(--nhs-blue);
    border-radius: 3px;
    font-size: 1.02rem;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.hero {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(115deg, transparent 0 64%, rgba(0, 127, 120, 0.2) 64% 79%, transparent 79%),
        linear-gradient(145deg, var(--navy) 0%, #082642 58%, #063f51 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000, transparent 84%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.4rem;
    padding-block: 2.1rem 2rem;
}

.hero-copy,
.journey-shell {
    min-width: 0;
}

.hero-kicker,
.section-kicker,
.guide-topic,
.journey-kicker,
.journey-label,
.article-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--teal-deep);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.085em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-kicker {
    min-height: 34px;
    padding: 0.4rem 0.65rem;
    color: var(--ink);
    background: var(--yellow);
    border: 1px solid var(--yellow-strong);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(255, 204, 0, 0.2);
}

.hero h1 {
    max-width: 13ch;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero h1 span {
    color: var(--yellow);
}

.lead {
    max-width: 37rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 4vw, 1.22rem);
}

.hero-actions {
    display: grid;
    gap: 0.62rem;
    margin-top: 1.25rem;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    overflow: hidden;
    padding: 0.84rem 1rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-size: 0.98rem;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    isolation: isolate;
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background-color 220ms var(--ease), border-color 220ms var(--ease);
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.55) 48%, transparent 74%);
    transform: translateX(-140%);
}

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

.button:hover::before,
.button.is-pulsing::before {
    animation: button-sheen 800ms var(--ease);
}

.button:active {
    transform: translateY(0) scale(0.99);
}

.button-primary {
    color: var(--ink);
    background: var(--yellow);
    border-color: var(--yellow-strong);
    box-shadow: 0 18px 42px rgba(255, 204, 0, 0.24);
}

.button-primary:hover {
    background: #ffda35;
    box-shadow: 0 22px 48px rgba(255, 204, 0, 0.32);
}

.button-quiet {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.38);
}

.button-quiet:hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.68);
}

.button-arrow {
    gap: 0.75rem;
}

.button-arrow::after {
    content: "\2192";
    font-size: 1.25em;
    line-height: 1;
    transition: transform 220ms var(--ease);
}

.button-arrow:hover::after {
    transform: translateX(4px);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-trust span {
    color: var(--yellow);
}

.journey-shell {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    display: grid;
    gap: 0;
    overflow: hidden;
    color: var(--copy);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    transition: transform 180ms ease-out, box-shadow 240ms var(--ease);
    touch-action: pan-y;
}

.journey-shell::after {
    content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 24%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
    transform: skewX(-14deg);
    animation: panel-sheen 6.5s var(--ease) 2s infinite;
}

.journey-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
}

.journey-head > div {
    display: grid;
}

.journey-kicker {
    margin-bottom: 0.24rem;
    color: var(--nhs-blue);
}

.journey-head strong {
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.2;
}

.journey-status {
    flex: 0 0 auto;
    max-width: 8.5rem;
    padding: 0.36rem 0.5rem;
    color: var(--teal-deep);
    background: var(--teal-wash);
    border: 1px solid #bfe3dc;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

.journey-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.journey-tab {
    min-width: 0;
    min-height: 56px;
    padding: 0.68rem 0.45rem;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-right: 1px solid var(--line);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.08;
    transition: color 180ms var(--ease), background-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.journey-tab:last-child {
    border-right: 0;
}

.journey-tab:hover {
    color: var(--nhs-blue-deep);
    background: var(--white);
}

.journey-tab.is-active {
    color: var(--ink);
    background: var(--white);
    box-shadow: inset 0 -3px 0 var(--yellow);
}

.journey-panel {
    min-height: 15.4rem;
    padding: 1.1rem;
    background:
        linear-gradient(120deg, transparent 0 72%, rgba(0, 94, 184, 0.06) 72%),
        var(--white);
}

.journey-panel.is-changing > * {
    animation: content-in 380ms var(--ease) both;
}

.journey-panel.is-changing > :nth-child(2) {
    animation-delay: 35ms;
}

.journey-panel.is-changing > :nth-child(3) {
    animation-delay: 70ms;
}

.journey-panel.is-changing > :nth-child(4) {
    animation-delay: 105ms;
}

.journey-label {
    margin-bottom: 0.5rem;
    color: var(--red);
}

.journey-panel h2 {
    max-width: 18ch;
    margin-bottom: 0.55rem;
    font-size: clamp(1.55rem, 6vw, 2.05rem);
}

.journey-panel p {
    max-width: 31rem;
    margin-bottom: 0.9rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.journey-action,
.guide-link,
.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--nhs-blue-deep);
    font-weight: 850;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.22em;
}

.journey-action {
    justify-content: center;
    width: 100%;
    min-height: 72px;
    padding: 1rem 1.2rem;
    color: var(--ink);
    background: var(--yellow);
    border: 2px solid var(--yellow-strong);
    border-radius: var(--radius);
    box-shadow: 0 18px 36px rgba(255, 204, 0, 0.34);
    font-size: 1.12rem;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background-color 220ms var(--ease);
}

.journey-action:hover {
    color: var(--ink);
    background: #ffda35;
    box-shadow: 0 22px 44px rgba(255, 204, 0, 0.4);
    transform: translateY(-2px);
}

.journey-shell[data-active-mode="track"] .journey-action {
    color: var(--white);
    background: var(--nhs-blue);
    border-color: var(--nhs-blue-deep);
    box-shadow: 0 18px 36px rgba(0, 94, 184, 0.26);
}

.journey-shell[data-active-mode="track"] .journey-action:hover {
    color: var(--white);
    background: var(--nhs-blue-deep);
    box-shadow: 0 22px 44px rgba(0, 94, 184, 0.34);
}

.journey-action::after,
.guide-link::after,
.text-link::after {
    content: "\2192";
    margin-left: 0.45rem;
    text-decoration: none;
    transition: transform 180ms var(--ease);
}

.journey-action:hover::after,
.guide-link:hover::after,
.text-link:hover::after {
    transform: translateX(4px);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.journey-steps li {
    position: relative;
    display: grid;
    gap: 0.12rem;
    min-height: 70px;
    padding: 0.68rem;
    color: var(--muted);
    background: var(--paper);
    border-right: 1px solid var(--line);
    transition: color 220ms var(--ease), background-color 220ms var(--ease);
}

.journey-steps li:last-child {
    border-right: 0;
}

.journey-steps span {
    font-size: 0.65rem;
    font-weight: 850;
}

.journey-steps strong {
    overflow-wrap: anywhere;
    font-size: 0.76rem;
}

.journey-steps li.is-active {
    color: var(--ink);
    background: var(--yellow);
}

.journey-steps li.is-complete {
    color: var(--teal-deep);
    background: var(--teal-wash);
}

.proof-strip {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.proof-grid {
    display: grid;
    gap: 0;
}

.proof-item {
    display: grid;
    grid-template-columns: 2.1rem minmax(0, 1fr);
    align-items: center;
    gap: 0.6rem;
    min-height: 76px;
    padding: 0.75rem 0.2rem;
    border-bottom: 1px solid var(--line);
}

.proof-item:last-child {
    border-bottom: 0;
}

.proof-item > span {
    color: var(--nhs-blue);
    font-size: 0.72rem;
    font-weight: 850;
}

.proof-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
}

.proof-item strong {
    color: var(--ink);
    font-size: 0.91rem;
}

.section {
    padding-block: clamp(3rem, 6vw, 5rem);
}

.section-heading,
.section-copy {
    margin-bottom: 2rem;
}

.section-heading h2,
.section-copy h2,
.trust-intro h2 {
    max-width: 15ch;
    margin-bottom: 0.8rem;
}

.section-heading p,
.section-copy p,
.trust-intro p {
    max-width: 37rem;
    margin-bottom: 0;
    color: var(--muted);
}

.process-section {
    background: var(--white);
}

.process-track {
    position: relative;
    display: grid;
    gap: 0;
    padding-left: 1.2rem;
}

.process-line {
    position: absolute;
    top: 1rem;
    bottom: 1rem;
    left: 0.25rem;
    width: 3px;
    overflow: hidden;
    background: var(--line);
}

.process-line span {
    display: block;
    width: 100%;
    height: calc(var(--process-progress, 0) * 1%);
    background: linear-gradient(180deg, var(--yellow), var(--teal), var(--nhs-blue));
    transition: height 600ms var(--ease);
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 0.65rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.process-step:last-child {
    border-bottom: 0;
}

.process-step::before {
    content: "";
    position: absolute;
    top: 1.45rem;
    left: -1.36rem;
    width: 0.68rem;
    height: 0.68rem;
    background: var(--white);
    border: 2px solid #a9bdca;
    border-radius: 50%;
    transition: background-color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.process-step.is-current::before,
.process-step.is-complete::before {
    background: var(--yellow);
    border-color: var(--yellow-strong);
    transform: scale(1.12);
}

.step-index {
    color: var(--nhs-blue);
    font-size: 0.76rem;
    font-weight: 850;
}

.process-step h3 {
    margin-bottom: 0.28rem;
}

.process-step p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.section-cta {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
    padding: 1.1rem;
    color: var(--ink);
    background: var(--yellow);
    border: 1px solid var(--yellow-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.section-cta p {
    display: grid;
    margin-bottom: 0;
}

.section-cta p span {
    color: #584800;
    font-size: 0.82rem;
}

.section-cta .button {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
    box-shadow: none;
}

.benefits-section {
    background: var(--paper);
    border-block: 1px solid var(--line);
}

.feature-list {
    border-top: 1px solid var(--line);
}

.feature-row {
    display: grid;
    grid-template-columns: 2.6rem minmax(0, 1fr);
    gap: 0.75rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
}

.feature-row > span {
    color: var(--red);
    font-size: 0.74rem;
    font-weight: 850;
}

.feature-row h3 {
    margin-bottom: 0.35rem;
}

.feature-row p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.trust-section {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.76);
    background:
        linear-gradient(118deg, transparent 0 70%, rgba(255, 204, 0, 0.09) 70%),
        var(--teal-deep);
}

.trust-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 100% 44px;
}

.trust-layout {
    position: relative;
    z-index: 1;
}

.trust-intro {
    margin-bottom: 2rem;
}

.trust-intro .section-kicker {
    color: var(--yellow);
}

.trust-intro h2 {
    color: var(--white);
}

.trust-intro p {
    color: rgba(255, 255, 255, 0.7);
}

.trust-intro .text-link {
    margin-top: 0.7rem;
    color: var(--white);
}

.trust-details {
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-details div {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-details dt {
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-details dd {
    margin: 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: 720;
}

.guides-section {
    background: var(--white);
}

.guide-grid {
    display: grid;
    gap: 0.8rem;
}

.guide-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 17rem;
    padding: 1.15rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 0 transparent;
    transition: transform 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease), background-color 240ms var(--ease);
}

.guide-card:nth-child(2) {
    background: var(--blue-wash);
}

.guide-card:nth-child(3) {
    background: var(--teal-wash);
}

.guide-card:hover {
    z-index: 1;
    transform: translateY(-5px);
    background: var(--white);
    border-color: #a7c4d8;
    box-shadow: var(--shadow-md);
}

.guide-topic {
    color: var(--nhs-blue);
}

.guide-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.32rem;
}

.guide-card h3 a {
    text-decoration: none;
}

.guide-card h3 a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.guide-card p {
    margin-bottom: 1rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.guide-link {
    position: relative;
    z-index: 1;
    margin-top: auto;
    width: fit-content;
}

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

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 68px;
    padding: 0.75rem 0;
    color: var(--ink);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

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

.faq-item summary::after {
    content: "+";
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    color: var(--nhs-blue-deep);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform 220ms var(--ease), background-color 220ms var(--ease);
}

.faq-item[open] summary::after {
    background: var(--yellow);
    border-color: var(--yellow-strong);
    transform: rotate(45deg);
}

.faq-item p {
    max-width: 44rem;
    margin-bottom: 0;
    padding: 0 2.8rem 1rem 0;
    color: var(--muted);
}

.final-cta {
    color: var(--white);
    background: var(--nhs-blue);
}

.final-cta-inner {
    display: grid;
    gap: 1.25rem;
    padding-block: clamp(2.6rem, 8vw, 4.5rem);
}

.final-cta span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.final-cta h2 {
    margin-bottom: 0;
    color: var(--white);
}

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    gap: 0.65rem;
    padding-block: 2rem;
}

.footer-brand {
    margin-bottom: 0.5rem;
}

.brand-footer {
    padding: 0.35rem 0.45rem;
    background: var(--white);
    border-radius: 5px;
}

.footer-brand p {
    max-width: 20rem;
    margin: 0.7rem 0 0;
    font-size: 0.88rem;
}

.footer-group {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    color: var(--white);
    cursor: pointer;
    font-weight: 780;
    list-style: none;
}

.footer-group summary::-webkit-details-marker {
    display: none;
}

.footer-group summary::after {
    content: "+";
    font-size: 1.2rem;
}

.footer-group[open] summary::after {
    transform: rotate(45deg);
}

.footer-group ul,
.footer-group address {
    margin: 0;
    padding: 0 0 1rem;
}

.footer-group ul {
    list-style: none;
}

.footer-group li + li {
    margin-top: 0.25rem;
}

.footer-group a {
    display: inline-flex;
    align-items: center;
    min-width: 44px;
    min-height: 40px;
    color: rgba(255, 255, 255, 0.75);
    text-underline-offset: 0.2em;
}

.footer-group a:hover {
    color: var(--yellow);
}

address {
    color: rgba(255, 255, 255, 0.72);
    font-style: normal;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.footer-bottom {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    text-align: center;
}

.mobile-cta {
    position: fixed;
    inset: auto 0 0;
    z-index: 45;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.68rem 0.72rem calc(0.68rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -15px 40px rgba(7, 24, 36, 0.16);
    backdrop-filter: blur(16px);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms var(--ease);
}

.mobile-cta.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 8px));
}

.mobile-cta .button {
    min-height: 66px;
    padding-inline: 1.2rem;
    font-size: 1.08rem;
}

.mobile-track {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    min-height: 66px;
    color: var(--nhs-blue-deep);
    font-size: 0.85rem;
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

/* Guide and article pages */
.page-hero,
.article-hero {
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(118deg, transparent 0 70%, rgba(0, 127, 120, 0.2) 70%),
        var(--navy);
}

.page-hero-inner,
.article-hero-inner {
    padding-block: clamp(2.8rem, 9vw, 5.5rem);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
}

.breadcrumb a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    text-underline-offset: 0.2em;
}

.page-hero h1,
.article-hero h1 {
    max-width: 16ch;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero p,
.article-hero p {
    max-width: 43rem;
    margin-bottom: 0;
    font-size: clamp(1rem, 3.7vw, 1.2rem);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    margin-top: 1.1rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.8rem;
    font-weight: 700;
}

.guides-index {
    background: var(--paper);
}

.guides-index .guide-grid {
    margin-bottom: 2rem;
}

.guide-note {
    padding: 1rem 0;
    border-block: 1px solid var(--line);
    color: var(--muted);
}

.article-section {
    padding-block: clamp(2.6rem, 8vw, 5rem);
}

.article-layout {
    display: grid;
    gap: 2rem;
}

.article-body {
    min-width: 0;
}

.article-body > p:first-of-type {
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 620;
}

.article-body h2 {
    max-width: 20ch;
    margin: 2.5rem 0 0.8rem;
    font-size: clamp(1.65rem, 6.5vw, 2.25rem);
}

.article-body h3 {
    margin: 1.8rem 0 0.55rem;
}

.article-body p,
.article-body li {
    max-width: 45rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.25rem;
}

.article-body li + li {
    margin-top: 0.55rem;
}

.article-body a {
    color: var(--nhs-blue-deep);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
}

.article-callout {
    margin-block: 1.8rem;
    padding: 1rem;
    color: var(--ink);
    background: var(--yellow);
    border-left: 5px solid var(--red);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-callout p:last-child {
    margin-bottom: 0;
}

.source-list {
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

.article-aside {
    align-self: start;
    padding: 1.1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.article-aside h2 {
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
}

.article-aside p {
    color: var(--muted);
    font-size: 0.9rem;
}

.article-aside .button {
    width: 100%;
}

.related-guides {
    padding-block: 3rem;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.related-guides h2 {
    margin-bottom: 1.4rem;
    font-size: clamp(1.75rem, 6vw, 2.35rem);
}

.hero-enter {
    animation: hero-in 680ms var(--ease) both;
}

.hero h1.hero-enter {
    animation: none;
}

.hero-copy .hero-enter:nth-child(2) {
    animation-delay: 70ms;
}

.hero-copy .hero-enter:nth-child(3) {
    animation-delay: 130ms;
}

.hero-copy .hero-enter:nth-child(4) {
    animation-delay: 190ms;
}

.hero-copy .hero-enter:nth-child(5) {
    animation-delay: 250ms;
}

.journey-shell.hero-enter {
    animation-delay: 170ms;
}

.motion-ready .reveal {
    transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

.motion-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: translateY(16px);
}

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

@keyframes hero-in {
    from {
        opacity: 1;
        transform: translateY(16px);
    }

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

@keyframes content-in {
    from {
        opacity: 0.35;
        transform: translateY(8px);
    }

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

@keyframes button-sheen {
    from { transform: translateX(-140%); }
    to { transform: translateX(140%); }
}

@keyframes panel-sheen {
    0%, 58% { left: -35%; }
    82%, 100% { left: 125%; }
}

@media (min-width: 420px) {
    .hero-actions {
        grid-template-columns: 1.15fr 0.85fr;
    }

    .section-cta {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .section-cta .button {
        min-width: 10rem;
    }
}

@media (min-width: 640px) {
    .container {
        width: min(calc(100% - 2rem), var(--container));
    }

    .proof-grid,
    .guide-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .proof-item {
        padding-inline: 1rem;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .proof-item:last-child {
        border-right: 0;
    }

    .final-cta-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .final-cta .button {
        min-width: 13rem;
    }
}

@media (min-width: 780px) {
    body {
        padding-bottom: 0;
    }

    .header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto auto;
        min-height: 76px;
    }

    .site-header.is-scrolled .header-inner {
        min-height: 66px;
    }

    .header-nav {
        display: flex;
        justify-content: flex-end;
        gap: clamp(0.6rem, 1.7vw, 1.25rem);
    }

    .header-nav a {
        display: inline-flex;
        align-items: center;
        min-width: 44px;
        min-height: 44px;
        color: var(--muted);
        font-size: 0.86rem;
        font-weight: 780;
        text-decoration: none;
    }

    .header-nav a:hover {
        color: var(--nhs-blue-deep);
    }

    .header-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 56px;
        padding: 0.8rem 1.15rem;
        color: var(--ink);
        background: var(--yellow);
        border: 2px solid var(--yellow-strong);
        border-radius: var(--radius);
        box-shadow: 0 12px 26px rgba(255, 204, 0, 0.2);
        font-size: 0.96rem;
        font-weight: 850;
        text-decoration: none;
        transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
    }

    .header-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(255, 204, 0, 0.28);
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
        align-items: center;
        gap: clamp(2.2rem, 6vw, 5.5rem);
        min-height: min(640px, calc(100vh - 76px));
        padding-block: clamp(3rem, 6vw, 5rem);
    }

    .hero h1 {
        font-size: clamp(3.7rem, 6.4vw, 5.9rem);
    }

    .hero-actions {
        width: fit-content;
        min-width: 430px;
    }

    .journey-shell {
        min-height: 22rem;
        align-content: center;
    }

    .journey-head,
    .journey-panel {
        padding: 1.25rem;
    }

    .journey-panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 13.5rem;
    }

    .section-heading {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
        align-items: end;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .section-heading > div h2 {
        margin-bottom: 0;
    }

    .section-heading > p,
    .section-heading > .text-link {
        justify-self: end;
    }

    .process-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0;
    }

    .process-line {
        top: 1.42rem;
        right: 1.5rem;
        bottom: auto;
        left: 1.5rem;
        width: auto;
        height: 3px;
    }

    .process-line span {
        width: calc(var(--process-progress, 0) * 1%);
        height: 100%;
        background: linear-gradient(90deg, var(--yellow), var(--teal), var(--nhs-blue));
        transition: width 600ms var(--ease);
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        min-height: 15rem;
        padding: 0 1rem;
        border-bottom: 0;
        border-right: 1px solid var(--line);
    }

    .process-step:last-child {
        border-right: 0;
    }

    .process-step::before {
        top: 1.08rem;
        left: 1.1rem;
        width: 0.78rem;
        height: 0.78rem;
    }

    .step-index {
        min-height: 2.8rem;
        padding-left: 1.4rem;
    }

    .section-cta {
        margin-top: 2.2rem;
        padding: 1.25rem 1.4rem;
    }

    .split-layout,
    .trust-layout,
    .faq-layout {
        display: grid;
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        align-items: start;
        gap: clamp(3rem, 8vw, 7rem);
    }

    .section-copy,
    .trust-intro {
        position: sticky;
        top: 7rem;
        margin-bottom: 0;
    }

    .feature-row {
        min-height: 9rem;
        padding: 1.6rem 0;
    }

    .trust-details {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-details div {
        min-height: 10rem;
        padding: 1.2rem;
    }

    .trust-details div:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .guide-card {
        min-height: 16rem;
        padding: 1.35rem;
    }

    .footer-grid {
        grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
        align-items: start;
        gap: 2rem;
        padding-block: 3rem;
    }

    .footer-group {
        border-top: 0;
    }

    .footer-group summary {
        min-height: 44px;
        cursor: default;
    }

    .footer-group summary::after {
        display: none;
    }

    .mobile-cta {
        display: none;
    }

    .article-layout {
        grid-template-columns: minmax(0, 1fr) minmax(15rem, 19rem);
        align-items: start;
        gap: clamp(3rem, 7vw, 6rem);
    }

    .article-aside {
        position: sticky;
        top: 7rem;
    }
}

@media (max-width: 779px) {
    body {
        padding-bottom: 94px;
    }

    .header-inner {
        min-height: 58px;
    }

    .brand {
        font-size: clamp(0.78rem, 3.4vw, 1rem);
    }

    .nhs-mark {
        min-width: 52px;
        min-height: 32px;
        font-size: 0.94rem;
    }

    .hero-grid {
        gap: 0.8rem;
        padding-block: 1.15rem 1rem;
    }

    .hero-kicker {
        min-height: 29px;
        margin-bottom: 0.65rem;
        padding: 0.32rem 0.56rem;
        font-size: 0.66rem;
    }

    .hero h1 {
        max-width: 14ch;
        margin-bottom: 0.58rem;
        font-size: clamp(2.2rem, 10.8vw, 3.05rem);
        line-height: 0.96;
    }

    .lead {
        max-width: 31rem;
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .hero-actions,
    .hero-actions:first-child {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.45rem;
        margin-top: 0.85rem;
    }

    .hero-actions .button {
        min-width: 0;
        min-height: 50px;
        padding: 0.72rem 0.75rem;
        font-size: 0.9rem;
    }

    .hero-actions .button-quiet {
        width: 106px;
        padding-inline: 0.55rem;
    }

    .hero-trust {
        gap: 0.28rem 0.5rem;
        margin-top: 0.62rem;
        font-size: 0.7rem;
    }

    .journey-head {
        display: none;
    }

    .journey-tabs {
        position: relative;
        z-index: 2;
    }

    .journey-tab {
        min-height: 56px;
        padding: 0.68rem 0.45rem;
        font-size: 0.82rem;
    }

    .journey-panel {
        min-height: 10.8rem;
        padding: 0.9rem 0.95rem 1rem;
    }

    .journey-label {
        margin-bottom: 0.28rem;
        font-size: 0.64rem;
    }

    .journey-panel h2 {
        max-width: 21ch;
        margin-bottom: 0.3rem;
        font-size: 1.35rem;
        line-height: 1.05;
    }

    .journey-panel p {
        margin-bottom: 0.5rem;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .journey-action::after {
        margin-left: 0.35rem;
    }

    .journey-steps li {
        min-height: 52px;
        padding: 0.46rem 0.55rem;
    }

    .journey-steps span {
        font-size: 0.58rem;
    }

    .journey-steps strong {
        font-size: 0.68rem;
    }

    .proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .proof-item {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 0.2rem;
        min-height: 76px;
        padding: 0.55rem 0.45rem;
        border-right: 1px solid var(--line);
        border-bottom: 0;
    }

    .proof-item:last-child {
        border-right: 0;
    }

    .proof-item > span {
        font-size: 0.6rem;
    }

    .proof-item p {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .proof-item strong {
        font-size: 0.74rem;
    }

    .section {
        padding-block: 2.8rem;
    }

    .section-heading,
    .section-copy {
        margin-bottom: 1.45rem;
    }

    .section-heading h2,
    .section-copy h2,
    .trust-intro h2 {
        margin-bottom: 0.58rem;
        font-size: clamp(1.9rem, 8vw, 2.35rem);
    }

    .section-heading p,
    .section-copy p,
    .trust-intro p {
        font-size: 0.92rem;
    }

    .process-step {
        padding: 0.78rem 0;
    }

    .process-step p,
    .feature-row p {
        font-size: 0.86rem;
    }

    .section-cta {
        gap: 0.75rem;
        margin-top: 1.25rem;
        padding: 0.9rem;
    }

    .feature-row {
        min-height: 0;
        padding: 1rem 0;
    }

    .trust-intro {
        margin-bottom: 1.4rem;
    }

    .trust-details div {
        padding: 0.82rem 0;
    }

    .guide-grid {
        grid-auto-flow: column;
        grid-auto-columns: minmax(82%, 1fr);
        grid-template-columns: none;
        gap: 0.65rem;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding: 0 0.08rem 0.7rem;
        scroll-padding-inline: 0.08rem;
        scroll-snap-type: inline mandatory;
        scrollbar-width: thin;
    }

    .guide-card {
        min-height: 14.5rem;
        padding: 1rem;
        scroll-snap-align: start;
    }

    .faq-item summary {
        min-height: 60px;
        font-size: 0.92rem;
    }

    .final-cta-inner {
        gap: 0.9rem;
        padding-block: 2.2rem;
    }

    .page-hero-inner,
    .article-hero-inner {
        padding-block: 2.25rem;
    }

    .page-hero h1,
    .article-hero h1 {
        font-size: clamp(2.25rem, 10vw, 3rem);
    }

    .article-section {
        padding-block: 2.35rem;
    }

    .article-body h2 {
        margin-top: 2rem;
    }
}

@media (max-width: 359px) {
    .container {
        width: min(calc(100% - 1rem), var(--container));
    }

    .brand {
        font-size: 0.74rem;
    }

    .nhs-mark {
        min-width: 50px;
        min-height: 32px;
        font-size: 0.94rem;
    }

    h1 {
        font-size: 2.42rem;
    }

    .journey-head {
        display: none;
    }

    .journey-status {
        max-width: none;
        width: fit-content;
    }

    .journey-tab {
        min-height: 54px;
        font-size: 0.69rem;
    }

    .mobile-track {
        min-width: 84px;
    }
}

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

    .journey-shell {
        transform: none !important;
    }

    .motion-ready .reveal:not(.is-visible) {
        opacity: 1;
        transform: none;
    }
}
