:root {
    --bg: #f4f7fb;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --surface-muted: #f8fafc;
    --surface-dark: #10243b;
    --text: #132235;
    --muted: #617084;
    --muted-strong: #465365;
    --line: rgba(19, 34, 53, 0.1);
    --line-strong: rgba(19, 34, 53, 0.18);
    --accent: #13698B;
    --accent-strong: #0B2545;
    --accent-soft: rgba(19, 105, 139, 0.12);
    --teal: #13698B;
    --gold: #1A936F;
    --shadow-lg: 0 28px 70px rgba(16, 36, 59, 0.12);
    --shadow-md: 0 18px 40px rgba(16, 36, 59, 0.08);
    --shadow-sm: 0 10px 24px rgba(16, 36, 59, 0.06);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --font-sans: "Inter", "Segoe UI", sans-serif;
    --font-serif: "Inter", "Segoe UI", sans-serif;
    --container: min(1120px, calc(100% - 2rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(26, 147, 111, 0.22), transparent 30%),
        radial-gradient(circle at top right, rgba(37, 83, 100, 0.1), transparent 24%),
        linear-gradient(180deg, #f6f8fb 0%, #eef3f8 52%, #f8fafc 100%);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.site-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.52)),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 119px,
            rgba(19, 34, 53, 0.03) 119px,
            rgba(19, 34, 53, 0.03) 120px
        );
    opacity: 0.35;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0.9rem 0 0;
    backdrop-filter: blur(16px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.95rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 50px rgba(16, 36, 59, 0.09);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-sans);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand img {
    width: 2.6rem;
    height: 2.6rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.site-nav a {
    position: relative;
    padding-bottom: 0.2rem;
    transition: color 0.25s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.site-nav a.is-active {
    color: var(--text);
}

.site-nav a.is-active::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 0.92rem 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease;
    cursor: pointer;
}

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

.button--nav,
.button--secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
}

.button--primary {
    background: linear-gradient(135deg, #12304d 0%, #204e6a 100%);
    color: #f6f9fc;
    box-shadow: 0 18px 32px rgba(18, 48, 77, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
    box-shadow: 0 20px 38px rgba(18, 48, 77, 0.28);
}

.button--secondary:hover,
.button--secondary:focus-visible,
.button--nav:hover,
.button--nav:focus-visible {
    border-color: var(--line-strong);
    background: #f5fbfc;
}

.button--on-dark {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #f4f7fb;
}

.button--on-dark:hover,
.button--on-dark:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
}

.button--full {
    width: 100%;
}

.eyebrow {
    margin: 0 0 0.9rem;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow--soft {
    color: var(--teal);
}

.eyebrow--light {
    color: rgba(228, 244, 240, 0.8);
}

.hero-section {
    padding: 4.5rem 0 1.4rem;
}

.page-hero {
    padding: 4.5rem 0 1.5rem;
}

.page-hero--inner {
    padding-top: 5.5rem;
}

.page-hero__content {
    max-width: 60rem;
    animation: fade-up 0.8s ease both;
}

.page-hero__content h1 {
    margin: 0;
    max-width: 14ch;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.page-hero__text {
    max-width: 60ch;
    margin: 1.2rem 0 0;
    color: var(--muted-strong);
    font-size: 1.05rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    animation: fade-up 0.8s ease both;
}

.hero-copy h1,
.section-title {
    margin: 0;
    font-family: var(--font-serif);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(3.2rem, 5vw, 5.7rem);
}

.hero-text,
.section-text,
.contact-highlights span,
.service-card p,
.process-card p,
.reason-card p,
.faq-item p,
.site-footer p {
    color: var(--muted-strong);
}

.hero-text {
    max-width: 58ch;
    margin: 1.4rem 0 0;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 2.2rem;
}

.stat-card {
    padding: 1.2rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-md);
}

.stat-card strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.25rem;
    color: var(--surface-dark);
}

.stat-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-visual {
    animation: fade-up 0.95s ease 0.1s both;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    padding: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(26, 147, 111, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.94));
    box-shadow: var(--shadow-lg);
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-panel::before {
    top: -5rem;
    right: -4rem;
    width: 13rem;
    height: 13rem;
    background: rgba(31, 108, 123, 0.12);
}

.hero-panel::after {
    bottom: -5rem;
    left: -4rem;
    width: 12rem;
    height: 12rem;
    background: rgba(198, 103, 62, 0.12);
}

.hero-panel__top {
    position: relative;
    z-index: 1;
}

.hero-panel__top h2 {
    margin: 0;
    max-width: 16ch;
    font-family: var(--font-serif);
    font-size: clamp(1.95rem, 2.8vw, 2.55rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
}

.mini-checklist {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.8rem;
    margin: 1.5rem 0 1.4rem;
    padding: 1.15rem;
    border: 1px solid rgba(19, 34, 53, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
}

.mini-checklist div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mini-checklist p {
    margin: 0;
    color: var(--text);
    font-weight: 600;
}

.mini-checklist__dot {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #bb8551);
    box-shadow: 0 0 0 0.35rem rgba(19, 105, 139, 0.12);
}

.hero-illustration {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: min(100%, 430px);
    animation: float 6s ease-in-out infinite;
}

.value-strip {
    padding: 1.6rem 0 0.6rem;
}

.value-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.value-chip {
    padding: 1rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.section-block {
    padding: 5.8rem 0;
}

.section-block--compact {
    padding-top: 1rem;
    padding-bottom: 5.5rem;
}

.section-block--warm {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(242, 246, 250, 0.98));
}

.section-block--accent {
    background:
        radial-gradient(circle at top left, rgba(26, 147, 111, 0.12), transparent 24%),
        linear-gradient(135deg, #10243b 0%, #153451 100%);
    color: #f6f8fb;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.section-heading {
    margin-bottom: 2.3rem;
}

.section-title {
    font-size: clamp(2.2rem, 3vw, 3.45rem);
}

.section-title--light,
.section-block--accent .reason-card h3 {
    color: #f2faf8;
}

.section-text {
    margin: 1rem 0 0;
    max-width: 62ch;
}

.section-text--narrow {
    max-width: 56ch;
}

.info-card,
.service-card,
.process-card,
.reason-card,
.contact-card,
.faq-item,
.flash-message {
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.info-card {
    padding: 1.7rem;
    border-radius: var(--radius-xl);
}

.info-list {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
    color: var(--text);
}

.info-list li + li {
    margin-top: 0.6rem;
}

.service-grid,
.process-grid,
.reason-grid {
    display: grid;
    gap: 1.2rem;
}

.overview-grid,
.feature-grid,
.service-detail-grid,
.testimonial-grid {
    display: grid;
    gap: 1.2rem;
}

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

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

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

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

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

.service-card,
.reason-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    animation: fade-up 0.75s ease both;
}

.overview-card,
.feature-card,
.service-detail-card,
.testimonial-card {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.overview-card {
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.overview-card:hover,
.overview-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card:nth-child(2),
.service-card:nth-child(5),
.reason-card:nth-child(2) {
    animation-delay: 0.08s;
}

.service-card:nth-child(3),
.service-card:nth-child(6),
.reason-card:nth-child(3) {
    animation-delay: 0.16s;
}

.service-card h3,
.process-card h3,
.reason-card h3,
.contact-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.overview-card h3,
.feature-card h3,
.service-detail-card h3,
.testimonial-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.service-card p,
.reason-card p,
.process-card p,
.faq-item p {
    margin: 0;
}

.overview-card p,
.feature-card p,
.service-detail-card p,
.testimonial-card p,
.testimonial-card__role,
.testimonial-card__note {
    margin: 0;
    color: var(--muted);
}

.overview-card span {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--accent-strong);
    font-weight: 700;
}

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

.process-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.process-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-weight: 800;
}

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

.reason-card--light {
    background: rgba(255, 253, 247, 0.92);
}

.info-card--accent {
    background: linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(248, 238, 221, 0.92));
}

.info-list--plain {
    margin: 0;
}

.detail-list {
    margin: 1rem 0 0;
    padding-left: 1.15rem;
    color: var(--text);
}

.detail-list li + li {
    margin-top: 0.5rem;
}

.section-block--accent .reason-card {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.section-block--accent .reason-card p {
    color: rgba(241, 246, 252, 0.78);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
}

.faq-layout--wide {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border-radius: var(--radius-md);
    padding: 0.3rem 1.2rem;
    background: rgba(255, 255, 255, 0.94);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.9rem 1rem 0;
    font-weight: 700;
    position: relative;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-strong);
    font-size: 1.4rem;
    font-weight: 500;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 0 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
}

.process-timeline {
    display: grid;
    gap: 1.25rem;
}

.timeline-card {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 1.1rem;
    align-items: start;
    padding: 1.55rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.timeline-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(19, 105, 139, 0.16), rgba(26, 147, 111, 0.24));
    color: var(--accent-strong);
    font-size: 1.1rem;
    font-weight: 800;
}

.timeline-card__body h3 {
    margin: 0 0 0.55rem;
    font-size: 1.35rem;
}

.timeline-card__body p {
    margin: 0;
    color: var(--muted);
}

.testimonial-card {
    display: grid;
    gap: 1rem;
}

.testimonial-card__head {
    display: grid;
    gap: 0.45rem;
}

.testimonial-card__role {
    font-weight: 600;
}

.testimonial-card__note {
    font-size: 0.93rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-highlights div {
    padding: 1.05rem 1.15rem;
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    background: rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.contact-highlights strong,
.contact-highlights span {
    display: block;
}

.contact-highlights strong {
    margin-bottom: 0.15rem;
}

.contact-card {
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    background: var(--surface-strong);
}

.contact-note {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.95rem 1rem;
    background: #fbfcfe;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(32, 78, 106, 0.45);
    box-shadow: 0 0 0 4px rgba(32, 78, 106, 0.08);
}

.site-footer {
    padding: 2.4rem 0 3.2rem;
}

.footer-shell {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 0 0;
    border-top: 1px solid var(--line);
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.3rem;
    color: var(--muted);
    font-weight: 600;
}

.flash-stack {
    position: fixed;
    top: 6rem;
    right: 1rem;
    z-index: 30;
    display: grid;
    gap: 0.75rem;
    width: min(28rem, calc(100% - 2rem));
}

.flash-message {
    padding: 0.95rem 1rem;
    border-radius: var(--radius-md);
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(26, 147, 111, 0.12), transparent 32%),
        linear-gradient(135deg, #10243b 0%, #17415d 100%);
    color: #f6f8fb;
    box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
    margin: 0;
    max-width: 18ch;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.cta-banner p {
    max-width: 58ch;
    margin: 0.9rem 0 0;
    color: rgba(241, 246, 252, 0.78);
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

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

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .split-section,
    .faq-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .service-grid,
    .reason-grid,
    .value-strip__grid,
    .overview-grid,
    .feature-grid,
    .service-detail-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-copy h1 {
        max-width: 14ch;
    }

    .site-nav {
        display: none;
    }

    .nav-shell {
        padding-inline: 1rem;
    }

    .cta-banner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .site-header {
        padding-top: 0.75rem;
    }

    .nav-shell {
        border-radius: 24px;
    }

    .brand span {
        font-size: 1.05rem;
    }

    .button--nav {
        display: none;
    }

    .hero-section {
        padding-top: 3.25rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.5rem, 13vw, 3.8rem);
    }

    .page-hero__content h1 {
        font-size: clamp(2.3rem, 12vw, 3.8rem);
    }

    .hero-stats,
    .service-grid,
    .process-grid,
    .reason-grid,
    .value-strip__grid,
    .overview-grid,
    .feature-grid,
    .service-detail-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

    .section-block {
        padding: 4rem 0;
    }

    .footer-shell {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Admissions Atlas refresh */
:root {
    --atlas-ink: #10243b;
    --atlas-paper: #f5fbfc;
    --atlas-mist: #eef3f8;
    --atlas-copper: #13698B;
    --atlas-sand: #c8eadf;
}

.site-body::after {
    content: "";
    position: fixed;
    right: -10rem;
    bottom: -12rem;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 105, 139, 0.12) 0%, rgba(19, 105, 139, 0) 68%);
    pointer-events: none;
    z-index: -1;
}

.nav-shell {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
}

.brand-copy {
    display: grid;
    gap: 0.05rem;
}

.brand-copy strong {
    font-size: 1.02rem;
    line-height: 1.05;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav-note {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted-strong);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav-note__dot {
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--atlas-copper), var(--gold));
    box-shadow: 0 0 0 0.28rem rgba(19, 105, 139, 0.12);
}

.page-hero {
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 1.3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 36, 59, 0.15), transparent);
}

.page-hero__content {
    position: relative;
    padding: 2rem 2.2rem;
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 252, 0.88)),
        linear-gradient(90deg, rgba(200, 234, 223, 0.12), transparent 36%);
    box-shadow: var(--shadow-md);
}

.page-hero__content::after {
    content: "";
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 18px;
    border: 1px dashed rgba(16, 36, 59, 0.14);
    opacity: 0.8;
}

.page-hero--home {
    padding-top: 5.4rem;
}

.hero-grid--atlas {
    gap: 3rem;
    align-items: stretch;
}

.hero-copy {
    justify-content: center;
}

.hero-preamble {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: fit-content;
    margin-bottom: 1.25rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted-strong);
    font-size: 0.77rem;
    font-weight: 700;
}

.hero-preamble__label {
    color: var(--accent-strong);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-preamble__divider {
    width: 1.6rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(16, 36, 59, 0.18), rgba(16, 36, 59, 0.04));
}

.hero-annotation {
    display: grid;
    gap: 0.2rem;
    max-width: 33rem;
    margin-top: 1.3rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-left: 4px solid var(--atlas-copper);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 251, 0.92));
    box-shadow: var(--shadow-sm);
}

.hero-annotation strong {
    color: var(--surface-dark);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.hero-visual--atlas {
    display: flex;
}

.hero-panel--atlas {
    display: grid;
    gap: 1rem;
    width: 100%;
    min-height: 100%;
}

.hero-route-panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.9rem;
}

.hero-route-panel__head h2 {
    margin: 0;
    max-width: 14ch;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero-route-card {
    position: relative;
    padding: 1.1rem 1.15rem 1.1rem 4rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
}

.hero-route-card--primary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 231, 0.92));
}

.hero-route-card__index {
    position: absolute;
    left: 1rem;
    top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 12px;
    background: var(--atlas-ink);
    color: #f8fafc;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-route-card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.22rem;
    line-height: 1.28;
}

.hero-route-card p {
    margin: 0;
    color: var(--muted-strong);
}

.hero-route-list {
    display: grid;
    gap: 0.85rem;
}

.hero-illustration--atlas {
    width: min(100%, 330px);
    justify-self: end;
    margin-top: 0.2rem;
    filter: drop-shadow(0 18px 28px rgba(16, 36, 59, 0.12));
}

.signal-strip {
    padding: 0.35rem 0 1rem;
}

.signal-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    border-radius: 22px;
    background: linear-gradient(135deg, #10243b 0%, #173654 58%, #215271 100%);
    box-shadow: var(--shadow-lg);
}

.signal-strip__inner span {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #f6f8fb;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 1.5rem;
    align-items: end;
}

.section-note {
    padding: 1.1rem 1.2rem;
    border: 1px dashed var(--line-strong);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
}

.section-note--light {
    background: rgba(255, 255, 255, 0.6);
}

.section-note__label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--accent-strong);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-note p {
    margin: 0;
    color: var(--muted-strong);
}

.overview-card--route {
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 248, 252, 0.92));
}

.overview-card--route::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--atlas-copper), var(--gold));
}

.overview-card__number {
    position: absolute;
    left: 1.45rem;
    top: 1.05rem;
    color: rgba(16, 36, 59, 0.1);
    font-size: 2.55rem;
    font-weight: 800;
    line-height: 1;
}

.service-grid--featured .service-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 252, 0.92));
}

.service-grid--featured .service-card:nth-child(1) {
    grid-column: span 2;
}

.service-card__index {
    color: var(--accent-strong);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-card__link {
    margin-top: auto;
    color: var(--surface-dark);
    font-size: 0.88rem;
    font-weight: 700;
}

.reason-card--light {
    position: relative;
    overflow: hidden;
}

.reason-card--light::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--atlas-copper), var(--gold));
}

.manifesto-card {
    padding: 1.6rem 1.8rem;
    border-radius: 28px;
    background: linear-gradient(135deg, #10243b 0%, #163956 100%);
    color: #f6f8fb;
    box-shadow: var(--shadow-lg);
}

.manifesto-card__label {
    display: block;
    margin-bottom: 0.8rem;
    color: rgba(245, 247, 251, 0.76);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.manifesto-card p {
    margin: 0;
    max-width: 52rem;
    font-size: 1.24rem;
    line-height: 1.55;
}

.services-masthead {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 1.4rem;
    align-items: stretch;
}

.services-masthead__lead,
.services-masthead__stats {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-md);
}

.services-masthead__lead {
    padding: 1.5rem 1.6rem;
}

.services-masthead__label {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--accent-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.services-masthead__lead p {
    margin: 0;
    color: var(--muted-strong);
    font-size: 1.02rem;
}

.services-masthead__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
}

.services-masthead__stats div {
    display: grid;
    place-items: center;
    padding: 1.4rem 1rem;
    text-align: center;
}

.services-masthead__stats div + div {
    border-left: 1px solid var(--line);
}

.services-masthead__stats strong {
    color: var(--surface-dark);
    font-size: 1.45rem;
}

.services-masthead__stats span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.service-detail-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92));
}

.service-detail-card:nth-child(3n+2) {
    transform: translateY(1rem);
}

.service-detail-card__index {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.3rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(16, 36, 59, 0.96), rgba(21, 52, 81, 0.94));
    box-shadow: var(--shadow-md);
}

.process-band__lead {
    color: #f2faf8;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.process-band__items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.process-band__items span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(246, 248, 251, 0.9);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.timeline-card {
    position: relative;
}

.timeline-card::before {
    content: "";
    position: absolute;
    left: 2.35rem;
    top: 5.2rem;
    bottom: 1.45rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(16, 36, 59, 0.16), transparent);
}

.timeline-card__number {
    border-radius: 16px;
    width: 4.15rem;
    height: 4.15rem;
}

.contact-dossier {
    margin-top: 1.4rem;
    padding: 1.1rem 1.15rem;
    border: 1px dashed var(--line-strong);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.contact-dossier__label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--accent-strong);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-dossier p {
    margin: 0;
    color: var(--muted-strong);
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 231, 0.78));
}

.testimonial-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--atlas-copper), var(--gold));
}

.faq-item {
    transition: border-left-color 0.2s ease, transform 0.2s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    transform: translateX(4px);
    border-left-color: var(--atlas-copper);
}

.cta-banner {
    position: relative;
    overflow: hidden;
}

.cta-banner::after {
    content: "";
    position: absolute;
    top: -8rem;
    right: -5rem;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.footer-shell {
    align-items: flex-start;
}

.footer-intro {
    max-width: 26rem;
}

.footer-meta {
    display: grid;
    gap: 1rem;
    justify-items: end;
}

.footer-stamp {
    max-width: 30rem;
    padding: 0.85rem 1rem;
    border: 1px dashed var(--line-strong);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--muted-strong);
    font-size: 0.9rem;
    text-align: right;
}

@media (max-width: 1080px) {
    .nav-note {
        display: none;
    }

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

    .section-heading--split,
    .services-masthead {
        grid-template-columns: 1fr;
    }

    .service-grid--featured .service-card:nth-child(1) {
        grid-column: auto;
    }

    .service-detail-card:nth-child(3n+2) {
        transform: none;
    }
}

@media (max-width: 980px) {
    .hero-grid--atlas {
        grid-template-columns: 1fr;
    }

    .services-masthead__stats {
        grid-template-columns: 1fr;
    }

    .services-masthead__stats div + div {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .timeline-card::before {
        display: none;
    }

    .footer-meta {
        justify-items: start;
    }

    .footer-stamp {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .page-hero__content {
        padding: 1.5rem;
    }

    .page-hero__content::after {
        width: 4.1rem;
        height: 4.1rem;
    }

    .hero-preamble {
        flex-wrap: wrap;
        border-radius: 18px;
    }

    .hero-route-card {
        padding: 1rem;
    }

    .hero-route-card__index {
        position: static;
        margin-bottom: 0.75rem;
    }

    .signal-strip__inner {
        padding: 0.9rem 1rem;
    }

    .process-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Header refresh */
.site-header {
    padding-top: 0.75rem;
}

.nav-shell--refined {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88)),
        linear-gradient(90deg, rgba(200, 234, 223, 0.1), transparent 36%);
    box-shadow: 0 22px 48px rgba(16, 36, 59, 0.08);
}

.brand--header {
    gap: 0.9rem;
}

.brand--header img {
    width: 2.8rem;
    height: 2.8rem;
}

.site-nav--panel {
    justify-self: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(244, 247, 251, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-nav--panel a {
    padding: 0.68rem 0.9rem;
    border-radius: 12px;
    font-size: 0.9rem;
}

.site-nav--panel a::after {
    display: none;
}

.site-nav--panel a:hover,
.site-nav--panel a:focus-visible {
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
}

.site-nav--panel a.is-active {
    background: linear-gradient(135deg, #10243b 0%, #184160 100%);
    color: #f6f8fb;
    box-shadow: 0 10px 18px rgba(16, 36, 59, 0.18);
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.menu-toggle {
    display: none;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.84);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 1.2rem;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
    display: none;
    margin-top: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.mobile-nav a {
    display: block;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.mobile-nav a:last-child {
    border-bottom: 0;
    border-radius: 0;
}

.mobile-nav a.is-active {
    color: var(--accent-strong);
    background: rgba(19, 105, 139, 0.08);
}

.header-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.52rem 0.82rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.button--nav {
    min-height: 3rem;
    padding-inline: 1.15rem;
}

@media (max-width: 1180px) {
    .header-chip {
        display: none;
    }
}

@media (max-width: 980px) {
    .nav-shell--refined {
        grid-template-columns: auto 1fr auto;
        padding-inline: 1rem;
    }

    .site-nav--panel {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-header__actions {
        display: none;
    }

    .nav-open .mobile-nav {
        display: block;
    }

    .nav-open .menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (max-width: 720px) {
    .nav-shell--refined {
        grid-template-columns: auto auto;
        border-radius: 22px;
    }

    .brand--header {
        justify-self: start;
    }

    .brand--header img {
        width: 2.55rem;
        height: 2.55rem;
    }

    .brand-copy small {
        font-size: 0.64rem;
    }

    .menu-toggle {
        justify-self: end;
    }
}

/* NurseNorth USA refresh */
:root {
    --bg: #f5fbfc;
    --surface: rgba(255, 255, 255, 0.94);
    --surface-strong: #ffffff;
    --surface-muted: #f2faf8;
    --surface-dark: #2d2d2d;
    --text: #2c2c2c;
    --muted: #767676;
    --muted-strong: #5f5f5f;
    --line: rgba(45, 45, 45, 0.09);
    --line-strong: rgba(45, 45, 45, 0.18);
    --accent: #13698B;
    --accent-strong: #0B2545;
    --accent-soft: rgba(19, 105, 139, 0.12);
    --teal: #13698B;
    --gold: #1A936F;
    --shadow-lg: 0 28px 60px rgba(45, 45, 45, 0.1);
    --shadow-md: 0 18px 36px rgba(45, 45, 45, 0.08);
    --shadow-sm: 0 10px 22px rgba(45, 45, 45, 0.05);
}

body {
    background:
        radial-gradient(circle at top left, rgba(19, 105, 139, 0.16), transparent 32%),
        radial-gradient(circle at top right, rgba(26, 147, 111, 0.16), transparent 24%),
        linear-gradient(180deg, #f5fbfc 0%, #f2faf8 50%, #ffffff 100%);
}

.site-body::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.54)),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 119px,
            rgba(19, 105, 139, 0.03) 119px,
            rgba(19, 105, 139, 0.03) 120px
        );
    opacity: 0.24;
}

.site-body::after {
    background: radial-gradient(circle, rgba(19, 105, 139, 0.15) 0%, rgba(19, 105, 139, 0) 68%);
}

.nav-shell--refined {
    border-color: rgba(255, 255, 255, 0.92);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 250, 248, 0.88)),
        linear-gradient(90deg, rgba(26, 147, 111, 0.08), transparent 36%);
    box-shadow: 0 22px 48px rgba(45, 45, 45, 0.08);
}

.brand-copy small,
.hero-preamble__label,
.section-note__label,
.services-masthead__label,
.manifesto-card__label,
.contact-dossier__label,
.service-card__index,
.service-detail-card__index {
    color: var(--accent-strong);
}

.site-nav--panel {
    background: rgba(242, 250, 248, 0.84);
}

.site-nav--panel a:hover,
.site-nav--panel a:focus-visible {
    background: rgba(255, 255, 255, 0.92);
}

.site-nav--panel a.is-active {
    background: linear-gradient(135deg, #13698B 0%, #1A936F 100%);
    color: #fff;
    box-shadow: 0 10px 18px rgba(19, 105, 139, 0.22);
}

.header-chip {
    border-color: rgba(19, 105, 139, 0.16);
    background: rgba(242, 250, 248, 0.84);
    color: var(--accent-strong);
}

.button--primary {
    background: linear-gradient(135deg, #13698B 0%, #1A936F 100%);
    color: #f5fbfc;
    box-shadow: 0 18px 30px rgba(19, 105, 139, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
    box-shadow: 0 20px 36px rgba(19, 105, 139, 0.28);
}

.button--nav,
.button--secondary {
    border-color: rgba(45, 45, 45, 0.08);
    background: rgba(255, 255, 255, 0.94);
}

.button--secondary:hover,
.button--secondary:focus-visible,
.button--nav:hover,
.button--nav:focus-visible {
    background: #f2faf8;
    border-color: rgba(19, 105, 139, 0.16);
}

.eyebrow--soft {
    color: var(--teal);
}

.page-hero__content,
.hero-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 248, 0.9)),
        linear-gradient(90deg, rgba(26, 147, 111, 0.08), transparent 38%);
}

.page-hero__content::after {
    border-color: rgba(19, 105, 139, 0.16);
}

.hero-panel::before {
    background: rgba(19, 105, 139, 0.1);
}

.hero-panel::after {
    background: rgba(26, 147, 111, 0.12);
}

.hero-preamble,
.hero-annotation,
.section-note,
.contact-dossier,
.footer-stamp {
    background: rgba(242, 250, 248, 0.75);
}

.hero-annotation,
.contact-dossier,
.footer-stamp {
    border-color: rgba(19, 105, 139, 0.16);
}

.hero-annotation {
    border-left-color: var(--accent);
}

.hero-route-card__index,
.badge {
    background: linear-gradient(135deg, #13698B 0%, #0B2545 100%);
    color: #fff;
    box-shadow: 0 10px 18px rgba(19, 105, 139, 0.18);
}

.hero-route-card--primary,
.testimonial-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 248, 0.92));
}

.signal-strip__inner,
.manifesto-card,
.process-band,
.cta-banner {
    background: linear-gradient(135deg, #2d2d2d 0%, #4b2d19 48%, #13698B 100%);
}

.value-chip,
.stat-card,
.overview-card,
.feature-card,
.service-detail-card,
.timeline-card,
.faq-item,
.contact-card,
.info-card,
.service-card,
.reason-card {
    border-color: rgba(45, 45, 45, 0.08);
}

.overview-card--route::after,
.testimonial-card::before,
.reason-card--light::before,
.process-card::before {
    background: linear-gradient(90deg, #13698B, #1A936F);
}

.reason-card--light,
.info-card--accent {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 248, 0.9));
}

.section-block--warm {
    background: linear-gradient(180deg, rgba(245, 251, 252, 0.9), rgba(255, 245, 234, 0.96));
}

.timeline-card__number {
    background: linear-gradient(135deg, rgba(19, 105, 139, 0.18), rgba(26, 147, 111, 0.24));
    color: var(--accent-strong);
}

.contact-highlights div {
    border-left-color: var(--accent);
    background: rgba(255, 255, 255, 0.78);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(19, 105, 139, 0.45);
    box-shadow: 0 0 0 4px rgba(19, 105, 139, 0.08);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--accent);
}

/* Home page v2 */
.home-v2-hero {
    padding: 4.7rem 0 1rem;
}

.home-v2-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1.2rem;
    padding: 1rem;
    border-radius: 26px;
    background: linear-gradient(135deg, #1f2937 0%, #2f3f56 48%, #13698B 100%);
    box-shadow: var(--shadow-lg);
}

.home-v2-hero__content,
.home-v2-hero__panel {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.home-v2-hero__content {
    padding: 1.8rem;
    color: #f2faf8;
}

.home-v2-hero__content h1 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(2.15rem, 4.8vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.home-v2-hero__content p {
    max-width: 56ch;
    color: rgba(228, 244, 240, 0.88);
    font-size: 1rem;
}

.home-v2-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.1rem;
}

.home-v2-hero__meta span {
    padding: 0.4rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #f2faf8;
    font-size: 0.84rem;
    font-weight: 700;
}

.home-v2-hero__panel {
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.9);
}

.home-v2-steps {
    display: grid;
    gap: 0.7rem;
}

.home-v2-step {
    display: grid;
    grid-template-columns: 2.1rem 1fr;
    gap: 0.7rem;
    padding: 0.75rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
}

.home-v2-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 9px;
    background: linear-gradient(135deg, #13698B 0%, #1A936F 100%);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
}

.home-v2-step h3 {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
}

.home-v2-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.home-v2-hero__image {
    width: min(100%, 270px);
    margin: 1rem auto 0;
}

.home-v2-stats {
    padding: 1.2rem 0 0.8rem;
}

.home-v2-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.home-v2-stats__card {
    padding: 1.05rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}

.home-v2-stats__card strong {
    display: block;
    color: var(--surface-dark);
    font-size: 1.15rem;
}

.home-v2-stats__card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.home-v2-route-grid,
.home-v2-service-grid,
.home-v2-reason-grid {
    display: grid;
    gap: 1rem;
}

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

.home-v2-route-card {
    display: grid;
    gap: 0.65rem;
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-v2-route-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.home-v2-route-card__index {
    color: var(--accent-strong);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.home-v2-route-card__cta {
    color: var(--surface-dark);
    font-size: 0.94rem;
    font-weight: 700;
}

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

.home-v2-service-card {
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 248, 0.9));
    box-shadow: var(--shadow-md);
}

.home-v2-service-card p {
    color: var(--muted);
    font-size: 0.96rem;
}

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

.home-v2-reason-card {
    position: relative;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.home-v2-reason-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 18px 0 0 18px;
    background: linear-gradient(180deg, #13698B, #1A936F);
}

.home-v2-reason-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

@media (max-width: 980px) {
    .home-v2-hero {
        padding-top: 4rem;
    }

    .home-v2-hero__shell {
        grid-template-columns: 1fr;
    }

    .home-v2-stats__grid,
    .home-v2-route-grid,
    .home-v2-service-grid,
    .home-v2-reason-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .home-v2-hero__content {
        padding: 1.5rem;
    }

    .home-v2-hero__content h1 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .home-v2-stats__grid,
    .home-v2-route-grid,
    .home-v2-service-grid,
    .home-v2-reason-grid {
        grid-template-columns: 1fr;
    }
}

/* Global design refresh v3 */
:root {
    --bg: #f5fbfc;
    --surface: rgba(255, 255, 255, 0.96);
    --surface-strong: #ffffff;
    --surface-muted: #f2faf8;
    --surface-dark: #2d2d2d;
    --text: #2d2d2d;
    --muted: #496170;
    --muted-strong: #0B2545;
    --line: rgba(45, 45, 45, 0.1);
    --line-strong: rgba(45, 45, 45, 0.2);
    --accent: #13698B;
    --accent-strong: #0B2545;
    --accent-soft: rgba(19, 105, 139, 0.12);
    --teal: #0B2545;
    --gold: #1A936F;
    --shadow-lg: 0 26px 55px rgba(45, 45, 45, 0.14);
    --shadow-md: 0 14px 30px rgba(45, 45, 45, 0.09);
    --shadow-sm: 0 8px 18px rgba(45, 45, 45, 0.06);
}

body {
    background:
        radial-gradient(circle at top left, rgba(19, 105, 139, 0.14), transparent 30%),
        radial-gradient(circle at top right, rgba(26, 147, 111, 0.16), transparent 22%),
        linear-gradient(180deg, #f5fbfc 0%, #f2faf8 48%, #ffffff 100%);
    color: var(--text);
}

.site-body::before {
    opacity: 0.16;
}

.site-header {
    padding-top: 0.8rem;
}

.nav-shell--refined {
    border-color: rgba(255, 255, 255, 0.95);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(242, 250, 248, 0.92)),
        linear-gradient(90deg, rgba(19, 105, 139, 0.08), transparent 36%);
    box-shadow: 0 18px 42px rgba(45, 45, 45, 0.08);
}

.site-nav--panel a.is-active {
    background: linear-gradient(135deg, #13698B 0%, #1A936F 100%);
    box-shadow: 0 10px 20px rgba(19, 105, 139, 0.24);
}

.button {
    border-radius: 12px;
}

.button--primary {
    background: linear-gradient(135deg, #13698B 0%, #1A936F 100%);
    color: #f5fbfc;
    box-shadow: 0 16px 28px rgba(19, 105, 139, 0.24);
}

.button--secondary,
.button--nav {
    background: rgba(255, 255, 255, 0.95);
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.section-text,
.hero-text,
.page-hero__text {
    font-size: 1rem;
    color: var(--muted-strong);
}

.info-card,
.service-card,
.process-card,
.reason-card,
.contact-card,
.faq-item,
.overview-card,
.feature-card,
.service-detail-card,
.testimonial-card,
.timeline-card,
.home-v2-route-card,
.home-v2-service-card,
.home-v2-reason-card,
.home-v2-stats__card {
    border-color: rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
}

.info-card:hover,
.service-card:hover,
.process-card:hover,
.reason-card:hover,
.overview-card:hover,
.feature-card:hover,
.service-detail-card:hover,
.testimonial-card:hover,
.home-v2-route-card:hover,
.home-v2-service-card:hover,
.home-v2-reason-card:hover {
    box-shadow: var(--shadow-lg);
}

.home-v2-hero__shell,
.signal-strip__inner,
.cta-banner,
.manifesto-card,
.process-band {
    background: linear-gradient(135deg, #000000 0%, #2d2d2d 52%, #13698B 100%);
}

.home-v2-hero__content p,
.cta-banner p {
    color: rgba(241, 245, 249, 0.9);
}

.home-v2-step span,
.hero-route-card__index,
.badge {
    background: linear-gradient(135deg, #13698B 0%, #1A936F 100%);
}

.footer-shell {
    border-top-color: rgba(45, 45, 45, 0.12);
}

.footer-stamp {
    background: rgba(255, 255, 255, 0.8);
}

/* Home-only refresh v3 */
.home-v3 {
    background:
        linear-gradient(180deg, rgba(245, 251, 252, 0) 0%, rgba(255, 255, 255, 0.78) 46%, rgba(242, 250, 248, 0.62) 100%);
}

.home-v3 .section-block {
    padding: 5rem 0;
}

.home-v3-hero {
    padding: 4.8rem 0 1.2rem;
}

.home-v3-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.2rem;
    align-items: stretch;
}

.home-v3-hero__copy,
.home-v3-hero__panel {
    border: 1px solid rgba(45, 45, 45, 0.1);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.home-v3-hero__copy {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 34rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(45, 45, 45, 0.94) 54%, rgba(19, 105, 139, 0.86) 100%),
        radial-gradient(circle at 86% 16%, rgba(26, 147, 111, 0.55), transparent 32%);
    color: #f5fbfc;
}

.home-v3-hero__copy::after {
    content: "";
    position: absolute;
    right: clamp(1rem, 4vw, 2.5rem);
    bottom: clamp(1rem, 4vw, 2.5rem);
    width: 8.5rem;
    height: 8.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(19, 105, 139, 0.7), rgba(26, 147, 111, 0.8)),
        #13698B;
    opacity: 0.7;
}

.home-v3-kicker {
    position: relative;
    z-index: 1;
    margin: 0 0 0.9rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(242, 250, 248, 0.86);
}

.home-v3-hero__copy h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 12ch;
    font-size: clamp(2.35rem, 5vw, 4.65rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.home-v3-hero__copy p {
    position: relative;
    z-index: 1;
    max-width: 56ch;
    color: rgba(245, 251, 252, 0.86);
    font-size: 1.02rem;
}

.home-v3-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.home-v3-tags span {
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f2faf8;
    background: rgba(255, 255, 255, 0.1);
}

.home-v3-hero__panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f2faf8 100%);
}

.home-v3-hero__panel h2 {
    margin: 0 0 1rem;
    font-size: 1.6rem;
    line-height: 1.15;
}

.home-v3-steps {
    display: grid;
    gap: 0.7rem;
}

.home-v3-step {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    gap: 0.7rem;
    align-items: start;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.home-v3-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 8px;
    background: #2d2d2d;
    color: #f2faf8;
    font-size: 0.76rem;
    font-weight: 800;
}

.home-v3-step h3 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
}

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

.home-v3-hero__image {
    width: min(100%, 300px);
    margin: 1.1rem auto 0;
    border-radius: 10px;
}

.home-v3-stats {
    padding: 0.8rem 0 1rem;
}

.home-v3-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.home-v3-stats__card {
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
}

.home-v3-stats__card strong {
    display: block;
    color: var(--surface-dark);
    font-size: 1.08rem;
}

.home-v3-stats__card span {
    color: var(--muted);
    font-size: 0.88rem;
}

.home-v3-roadmap {
    padding-top: 3.8rem;
}

.home-v3-roadmap__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.1rem;
    align-items: stretch;
}

.home-v3-roadmap__intro,
.home-v3-roadmap__item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.home-v3-roadmap__intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.6rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 248, 0.94)),
        #f2faf8;
}

.home-v3-roadmap__intro p:not(.eyebrow) {
    margin: 1rem 0 1.4rem;
    color: var(--muted-strong);
}

.home-v3-roadmap__list {
    display: grid;
    gap: 0.85rem;
}

.home-v3-roadmap__item {
    position: relative;
    padding: 1.15rem 1.2rem 1.15rem 1.45rem;
    overflow: hidden;
}

.home-v3-roadmap__item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--accent), var(--gold));
}

.home-v3-roadmap__item span {
    display: inline-flex;
    margin-bottom: 0.35rem;
    color: var(--accent-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-v3-roadmap__item h3 {
    margin: 0 0 0.35rem;
    font-size: 1.08rem;
    line-height: 1.25;
}

.home-v3-roadmap__item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.home-v3-grid {
    display: grid;
    gap: 1rem;
}

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

.home-v3-card {
    display: grid;
    gap: 0.6rem;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-v3-card:hover {
    transform: translateY(-3px);
    border-color: rgba(19, 105, 139, 0.25);
    box-shadow: var(--shadow-lg);
}

.home-v3-card__index {
    color: var(--accent-strong);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.home-v3-card__cta {
    color: var(--surface-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.home-v3-card--reason {
    position: relative;
}

.home-v3-card--reason::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(180deg, var(--accent), var(--gold));
}

@media (max-width: 980px) {
    .home-v3-hero__grid,
    .home-v3-stats__grid,
    .home-v3-roadmap__layout,
    .home-v3-grid--3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-v3-hero__grid {
        grid-template-columns: 1fr;
    }

    .home-v3-roadmap__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .home-v3-hero {
        padding-top: 3.4rem;
    }

    .home-v3-stats__grid,
    .home-v3-grid--3 {
        grid-template-columns: 1fr;
    }

    .home-v3-roadmap__intro,
    .home-v3-roadmap__item {
        padding: 1.2rem;
    }

    .home-v3-hero__copy h1 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }
}

/* Home signature redesign */
.home-signature {
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(245, 251, 252, 0.96) 0%, rgba(242, 250, 248, 0.86) 36%, rgba(255, 255, 255, 0.98) 100%);
}

.home-signature-hero {
    position: relative;
    min-height: min(760px, calc(100vh - 5rem));
    padding: clamp(5.5rem, 8vw, 7.8rem) 0 1.4rem;
    isolation: isolate;
    background:
        linear-gradient(110deg, rgba(0, 0, 0, 0.96) 0%, rgba(45, 45, 45, 0.96) 46%, rgba(76, 43, 20, 0.92) 68%, rgba(19, 105, 139, 0.88) 100%),
        #2d2d2d;
    color: #f5fbfc;
}

.home-signature-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.28));
}

.home-signature-hero::after {
    content: "USA";
    position: absolute;
    right: clamp(-2rem, 3vw, 3rem);
    bottom: clamp(2rem, 8vw, 5rem);
    z-index: -1;
    color: rgba(255, 255, 255, 0.06);
    font-size: clamp(8rem, 22vw, 18rem);
    font-weight: 800;
    line-height: 0.8;
    letter-spacing: 0;
}

.home-signature-hero__art {
    position: absolute;
    right: max(1rem, calc((100vw - 1120px) / 2));
    top: clamp(6.5rem, 11vw, 9rem);
    z-index: -1;
    width: min(42vw, 33rem);
    max-height: 31rem;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.28));
    opacity: 0.96;
}

.home-signature-hero__inner {
    width: var(--container);
    min-height: 31rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-signature-kicker {
    width: fit-content;
    margin: 0 0 1.2rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(242, 250, 248, 0.88);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-signature-hero h1 {
    max-width: 10.8ch;
    margin: 0;
    color: #f5fbfc;
    font-size: clamp(3rem, 7.2vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: 0;
    text-wrap: balance;
}

.home-signature-hero__text {
    max-width: 48rem;
    margin: 1.35rem 0 0;
    color: rgba(245, 251, 252, 0.83);
    font-size: clamp(1.02rem, 1.4vw, 1.22rem);
    line-height: 1.75;
}

.home-signature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.home-signature-orbit {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.home-signature-orbit span {
    display: flex;
    align-items: center;
    min-height: 4rem;
    padding: 0.85rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(245, 251, 252, 0.88);
    font-size: 0.9rem;
    font-weight: 800;
}

.home-signature-orbit span:last-child {
    border-right: 0;
}

.home-command,
.home-runway,
.home-routes,
.home-services {
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.home-command__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
    gap: 1rem;
    align-items: stretch;
}

.home-command__intro,
.home-command__feature,
.home-route,
.home-service,
.home-runway__stop,
.home-metrics article {
    border: 1px solid rgba(45, 45, 45, 0.1);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.home-command__intro {
    grid-row: span 2;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 248, 0.94)),
        #f2faf8;
}

.home-command__intro h2,
.home-section-head h2 {
    max-width: 15ch;
}

.home-command__intro p:not(.eyebrow) {
    margin: 1.1rem 0 0;
    color: var(--muted-strong);
}

.home-command__feature {
    display: flex;
    min-height: 17rem;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-command__feature:hover,
.home-route:hover,
.home-service:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.home-command__feature span,
.home-route span,
.home-service span {
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.home-command__feature h3,
.home-route h3,
.home-service h3,
.home-runway__stop h3,
.home-proof__list h3 {
    margin: 0.55rem 0 0.45rem;
    font-size: 1.35rem;
    line-height: 1.16;
}

.home-command__feature p,
.home-route p,
.home-service p,
.home-runway__stop p,
.home-metrics span,
.home-proof__list p {
    margin: 0;
    color: var(--muted);
}

.home-command__feature--dark {
    grid-column: span 2;
    min-height: 19rem;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(45, 45, 45, 0.94)),
        #2d2d2d;
    color: #f5fbfc;
}

.home-command__feature--dark p {
    color: rgba(245, 251, 252, 0.78);
}

.home-command__feature--dark span {
    color: #1A936F;
}

.home-command__feature--accent {
    background:
        linear-gradient(135deg, rgba(19, 105, 139, 0.98), rgba(26, 147, 111, 0.96)),
        var(--accent);
    color: #2d2d2d;
}

.home-command__feature--accent span,
.home-command__feature--accent p {
    color: rgba(45, 45, 45, 0.78);
}

.home-metrics {
    padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.home-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.home-metrics article {
    padding: 1.15rem;
}

.home-metrics strong {
    display: block;
    color: #2d2d2d;
    font-size: 1.18rem;
    line-height: 1.2;
}

.home-section-head {
    margin-bottom: 2rem;
}

.home-section-head--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.home-runway {
    background:
        linear-gradient(180deg, rgba(242, 250, 248, 0.82), rgba(255, 255, 255, 0.92));
}

.home-runway__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    counter-reset: runway;
}

.home-runway__stop {
    position: relative;
    min-height: 16rem;
    padding: 1.35rem;
    overflow: hidden;
}

.home-runway__stop::after {
    counter-increment: runway;
    content: "0" counter(runway);
    position: absolute;
    right: 0.8rem;
    bottom: -0.4rem;
    color: rgba(19, 105, 139, 0.12);
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
}

.home-runway__stop span {
    display: inline-flex;
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-routes__grid,
.home-services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-route {
    display: flex;
    min-height: 18rem;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.35rem;
    color: var(--text);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-route strong {
    margin-top: 1.2rem;
    color: var(--accent-strong);
}

.home-service {
    position: relative;
    min-height: 18rem;
    padding: 1.35rem;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-service::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
}

.home-proof {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background:
        linear-gradient(135deg, #000000 0%, #2d2d2d 58%, #5a2f13 100%);
    color: #f5fbfc;
}

.home-proof__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1.2rem;
    align-items: start;
}

.home-proof__copy h2 {
    margin: 0;
    max-width: 13ch;
    color: #f5fbfc;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
}

.home-proof__list {
    display: grid;
    gap: 0.9rem;
}

.home-proof__list article {
    padding: 1.2rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
}

.home-proof__list h3 {
    color: #f2faf8;
}

.home-proof__list p {
    color: rgba(245, 251, 252, 0.76);
}

@media (max-width: 1080px) {
    .home-signature-hero__art {
        width: min(48vw, 28rem);
        opacity: 0.72;
    }

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

    .home-command__feature--dark {
        grid-column: span 1;
    }
}

@media (max-width: 860px) {
    .home-signature-hero {
        min-height: auto;
        padding-top: 5.2rem;
    }

    .home-signature-hero__art {
        position: relative;
        right: auto;
        top: auto;
        z-index: 0;
        width: min(100%, 27rem);
        margin: 2rem auto 0;
        opacity: 1;
    }

    .home-signature-hero__inner {
        min-height: auto;
    }

    .home-signature-orbit,
    .home-metrics__grid,
    .home-runway__track,
    .home-routes__grid,
    .home-services__grid,
    .home-proof__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-section-head--split {
        display: grid;
        align-items: start;
    }
}

@media (max-width: 720px) {
    .home-signature-hero {
        padding-bottom: 0;
    }

    .home-signature-hero h1 {
        font-size: clamp(2.7rem, 14vw, 4.1rem);
    }

    .home-signature-orbit,
    .home-command__grid,
    .home-metrics__grid,
    .home-runway__track,
    .home-routes__grid,
    .home-services__grid,
    .home-proof__grid {
        grid-template-columns: 1fr;
    }

    .home-signature-orbit span {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .home-signature-orbit span:last-child {
        border-bottom: 0;
    }

    .home-command__intro,
    .home-command__feature,
    .home-route,
    .home-service,
    .home-runway__stop,
    .home-proof__list article {
        min-height: auto;
        padding: 1.2rem;
    }
}

/* Home atlas redesign */
.home-atlas {
    overflow: hidden;
    background:
        linear-gradient(180deg, #f5fbfc 0%, #f2faf8 34%, #ffffff 72%, #f2faf8 100%);
}

.home-atlas-hero {
    position: relative;
    padding: clamp(4.8rem, 8vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem);
    background:
        linear-gradient(105deg, #000 0%, #2d2d2d 52%, #5b3014 78%, #13698B 100%);
    color: #f5fbfc;
    isolation: isolate;
}

.home-atlas-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.8;
}

.home-atlas-hero::after {
    content: "";
    position: absolute;
    right: -11rem;
    top: 5rem;
    z-index: -1;
    width: 34rem;
    height: 34rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 5rem rgba(255, 255, 255, 0.025),
        inset 0 0 0 10rem rgba(255, 255, 255, 0.02);
}

.home-atlas-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 0.68fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.home-atlas-kicker {
    width: fit-content;
    margin: 0 0 1.1rem;
    padding: 0.42rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(242, 250, 248, 0.88);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.home-atlas-hero__copy h1 {
    max-width: 13ch;
    margin: 0;
    color: #f5fbfc;
    font-size: clamp(3rem, 6.9vw, 6.3rem);
    line-height: 0.94;
    letter-spacing: 0;
}

.home-atlas-hero__copy p:not(.home-atlas-kicker) {
    max-width: 47rem;
    margin: 1.35rem 0 0;
    color: rgba(245, 251, 252, 0.82);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.home-atlas-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.home-atlas-console {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 250, 248, 0.92)),
        #f2faf8;
    color: #2d2d2d;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

.home-atlas-console::before {
    content: "GRADVERSE";
    position: absolute;
    left: 1rem;
    bottom: -0.25rem;
    color: rgba(19, 105, 139, 0.12);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: 0;
}

.home-atlas-console__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.home-atlas-console__top span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-atlas-console__top strong {
    display: inline-flex;
    align-items: center;
    min-height: 2.4rem;
    padding: 0.25rem 0.8rem;
    background: #2d2d2d;
    color: #f2faf8;
    font-size: 0.9rem;
}

.home-atlas-console img {
    position: relative;
    z-index: 1;
    width: min(100%, 28rem);
    margin: 0 auto;
}

.home-atlas-console__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1rem;
}

.home-atlas-console__grid span {
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(45, 45, 45, 0.1);
    background: rgba(255, 255, 255, 0.74);
    color: #2d2d2d;
    font-weight: 900;
}

.home-atlas-strip {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.home-atlas-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(45, 45, 45, 0.1);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.home-atlas-strip article {
    min-height: 7.4rem;
    padding: 1.05rem;
    border-right: 1px solid rgba(45, 45, 45, 0.1);
}

.home-atlas-strip article:last-child {
    border-right: 0;
}

.home-atlas-strip strong {
    display: block;
    color: #2d2d2d;
    font-size: 1.2rem;
}

.home-atlas-strip span {
    display: block;
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.home-atlas-board,
.home-atlas-timeline,
.home-atlas-services,
.home-atlas-paths {
    padding: clamp(4rem, 7vw, 6rem) 0;
}

.home-atlas-board__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-atlas-board__header {
    grid-row: span 2;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(45, 45, 45, 0.1);
    background: #fff;
    box-shadow: var(--shadow-md);
}

.home-atlas-board__header h2,
.home-atlas-heading h2 {
    max-width: 15ch;
}

.home-atlas-board__tile {
    min-height: 17rem;
    padding: 1.25rem;
    border: 1px solid rgba(45, 45, 45, 0.1);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-atlas-board__tile:hover,
.home-atlas-services__grid article:hover,
.home-atlas-paths a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.home-atlas-board__tile--wide {
    grid-column: span 2;
    background:
        linear-gradient(135deg, #000 0%, #2d2d2d 70%);
    color: #f5fbfc;
}

.home-atlas-board__tile--orange {
    background:
        linear-gradient(135deg, #13698B 0%, #1A936F 100%);
    color: #2d2d2d;
}

.home-atlas-board__tile span,
.home-atlas-services__grid span,
.home-atlas-paths span {
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.home-atlas-board__tile--wide span,
.home-atlas-board__tile--orange span {
    color: inherit;
    opacity: 0.75;
}

.home-atlas-board__tile h3,
.home-atlas-timeline__grid h3,
.home-atlas-services__grid h3,
.home-atlas-paths h3,
.home-atlas-proof__list h3 {
    margin: 0.55rem 0 0.45rem;
    font-size: 1.32rem;
    line-height: 1.18;
}

.home-atlas-board__tile p,
.home-atlas-timeline__grid p,
.home-atlas-services__grid p,
.home-atlas-paths p,
.home-atlas-proof__list p {
    margin: 0;
    color: var(--muted);
}

.home-atlas-board__tile--wide p {
    color: rgba(245, 251, 252, 0.78);
}

.home-atlas-board__tile--orange p {
    color: rgba(45, 45, 45, 0.76);
}

.home-atlas-heading {
    margin-bottom: 2rem;
}

.home-atlas-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.home-atlas-timeline {
    background:
        linear-gradient(180deg, rgba(242, 250, 248, 0.82), rgba(255, 255, 255, 0.92));
}

.home-atlas-timeline__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(45, 45, 45, 0.16);
}

.home-atlas-timeline__grid article {
    position: relative;
    padding: 1.5rem 1.2rem 0;
    border-right: 1px solid rgba(45, 45, 45, 0.1);
}

.home-atlas-timeline__grid article:last-child {
    border-right: 0;
}

.home-atlas-timeline__grid article::before {
    content: "";
    position: absolute;
    top: -0.45rem;
    left: 1.2rem;
    width: 0.9rem;
    height: 0.9rem;
    background: var(--accent);
    border: 3px solid #f2faf8;
    border-radius: 50%;
}

.home-atlas-timeline__grid span {
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-atlas-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.home-atlas-services__grid article {
    min-height: 19rem;
    padding: 1.25rem;
    border: 1px solid rgba(45, 45, 45, 0.1);
    background: #fff;
    box-shadow: var(--shadow-md);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-atlas-paths {
    padding-top: 0;
}

.home-atlas-paths__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-atlas-paths a {
    display: block;
    min-height: 14rem;
    padding: 1.25rem;
    border: 1px solid rgba(45, 45, 45, 0.1);
    background: rgba(242, 250, 248, 0.84);
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-atlas-proof {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background:
        linear-gradient(135deg, #000 0%, #2d2d2d 54%, #5b3014 100%);
    color: #f5fbfc;
}

.home-atlas-proof__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 1rem;
}

.home-atlas-proof h2 {
    max-width: 13ch;
    margin: 0;
    color: #f5fbfc;
    font-size: clamp(2.4rem, 4.2vw, 4.25rem);
    line-height: 1;
}

.home-atlas-proof__list {
    display: grid;
    gap: 0.85rem;
}

.home-atlas-proof__list article {
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.07);
}

.home-atlas-proof__list h3 {
    color: #f2faf8;
}

.home-atlas-proof__list p {
    color: rgba(245, 251, 252, 0.76);
}

@media (max-width: 1080px) {
    .home-atlas-hero__grid,
    .home-atlas-board__grid,
    .home-atlas-proof__grid {
        grid-template-columns: 1fr;
    }

    .home-atlas-board__header,
    .home-atlas-board__tile--wide {
        grid-column: auto;
        grid-row: auto;
    }

    .home-atlas-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .home-atlas-strip__grid,
    .home-atlas-timeline__grid,
    .home-atlas-paths__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-atlas-strip article:nth-child(2),
    .home-atlas-timeline__grid article:nth-child(2) {
        border-right: 0;
    }

    .home-atlas-heading--split {
        display: grid;
        align-items: start;
    }
}

@media (max-width: 720px) {
    .home-atlas-hero {
        padding-top: 4.4rem;
    }

    .home-atlas-hero__copy h1 {
        font-size: clamp(2.45rem, 13vw, 4rem);
    }

    .home-atlas-strip__grid,
    .home-atlas-timeline__grid,
    .home-atlas-services__grid,
    .home-atlas-paths__grid,
    .home-atlas-console__grid {
        grid-template-columns: 1fr;
    }

    .home-atlas-strip article,
    .home-atlas-timeline__grid article {
        border-right: 0;
    }

    .home-atlas-strip article {
        border-bottom: 1px solid rgba(45, 45, 45, 0.1);
    }

    .home-atlas-strip article:last-child {
        border-bottom: 0;
    }

    .home-atlas-board__tile,
    .home-atlas-services__grid article,
    .home-atlas-paths a {
        min-height: auto;
    }
}

/* Simple navigation redesign */
.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 0;
    border-bottom: 1px solid rgba(45, 45, 45, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.site-header__frame {
    position: relative;
}

.nav-shell--refined {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand--header {
    flex: 0 0 auto;
    gap: 0.7rem;
    min-width: 0;
    color: var(--text);
}

.brand--header img {
    width: 2.35rem;
    height: 2.35rem;
}

.brand-copy {
    display: grid;
    gap: 0.05rem;
    line-height: 1.1;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: 0;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.site-nav--panel {
    justify-self: auto;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.25rem;
    border: 0;
    border-radius: 8px;
    background: #f7f7f5;
    box-shadow: none;
}

.site-nav--panel a {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.72rem;
    border-radius: 6px;
    color: var(--muted-strong);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0;
}

.site-nav--panel a::after {
    display: none;
}

.site-nav--panel a:hover,
.site-nav--panel a:focus-visible {
    background: #ffffff;
    color: var(--text);
}

.site-nav--panel a.is-active {
    background: #e4f4f0;
    color: var(--accent-strong);
    box-shadow: none;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.button--nav {
    min-height: 2.65rem;
    padding: 0.68rem 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--accent);
    color: #ffffff;
    box-shadow: none;
    font-size: 0.9rem;
    letter-spacing: 0;
}

.button--nav:hover,
.button--nav:focus-visible {
    border-color: transparent;
    background: var(--accent-strong);
    color: #ffffff;
    box-shadow: none;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid rgba(45, 45, 45, 0.12);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: none;
}

.menu-toggle span {
    width: 1.15rem;
    background: var(--text);
}

.mobile-nav {
    display: none;
    margin: 0 0 0.75rem;
    padding: 0.35rem;
    border: 1px solid rgba(45, 45, 45, 0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(45, 45, 45, 0.08);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.7rem 0.85rem;
    border: 0;
    border-radius: 6px;
    color: var(--muted-strong);
    font-size: 0.94rem;
    font-weight: 750;
    letter-spacing: 0;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    background: #f7f7f5;
    color: var(--text);
}

.mobile-nav a.is-active {
    background: #e4f4f0;
    color: var(--accent-strong);
}

.mobile-nav .button {
    justify-content: center;
    margin-top: 0.25rem;
    border-radius: 6px;
    color: #ffffff;
}

@media (max-width: 1080px) {
    .site-nav--panel a {
        padding-inline: 0.58rem;
    }
}

@media (max-width: 980px) {
    .nav-shell--refined {
        min-height: 66px;
    }

    .site-nav--panel,
    .site-header__actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.28rem;
    }

    .nav-open .mobile-nav {
        display: grid;
        gap: 0.1rem;
    }

    .nav-open .menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (max-width: 420px) {
    .brand-copy small {
        display: none;
    }
}

/* Premium USA study homepage */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.usa-home {
    --usa-navy: #2d2d2d;
    --usa-navy-soft: #383838;
    --usa-red: #13698B;
    --usa-red-soft: #f2faf8;
    --usa-blue-soft: #e4f4f0;
    --usa-ink: #262626;
    --usa-muted: #496170;
    --usa-line: rgba(45, 45, 45, 0.1);
    --usa-surface: #ffffff;
    --usa-bg: #f5fbfc;
    --usa-gold: #1A936F;
    background: var(--usa-bg);
    color: var(--usa-ink);
    overflow: hidden;
}

.usa-home h1,
.usa-home h2,
.usa-home h3,
.usa-home p {
    letter-spacing: 0;
}

.usa-hero {
    position: relative;
    min-height: 76vh;
    display: grid;
    align-items: center;
    color: #ffffff;
    isolation: isolate;
}

.usa-hero__image,
.usa-hero__shade {
    position: absolute;
    inset: 0;
}

.usa-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.usa-hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(45, 45, 45, 0.92) 0%, rgba(45, 45, 45, 0.78) 46%, rgba(19, 105, 139, 0.28) 100%),
        linear-gradient(180deg, rgba(45, 45, 45, 0.18) 0%, rgba(45, 45, 45, 0.82) 100%);
}

.usa-hero__content {
    min-height: 76vh;
    display: grid;
    align-content: center;
    gap: 2rem;
    padding: 4rem 0 3rem;
}

.usa-hero__copy {
    max-width: 760px;
    animation: usa-rise 0.8s ease both;
}

.usa-kicker {
    margin: 0 0 0.9rem;
    color: var(--usa-red);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.usa-hero .usa-kicker,
.usa-final-cta .usa-kicker {
    color: #e4f4f0;
}

.usa-hero h1 {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-size: 4.75rem;
    line-height: 0.98;
    font-weight: 850;
}

.usa-hero__copy > p {
    max-width: 680px;
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.16rem;
    line-height: 1.75;
}

.usa-hero__actions,
.usa-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

.usa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.9rem 1.22rem;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.usa-button--primary {
    background: linear-gradient(135deg, var(--usa-red) 0%, var(--usa-gold) 100%);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(19, 105, 139, 0.28);
}

.usa-button--primary:hover,
.usa-button--primary:focus-visible {
    background: linear-gradient(135deg, #13698B 0%, #1A936F 100%);
    box-shadow: 0 20px 42px rgba(19, 105, 139, 0.34);
}

.usa-button--light {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    backdrop-filter: blur(14px);
}

.usa-button--light:hover,
.usa-button--light:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.42);
}

.usa-button--outline {
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
}

.usa-button--outline:hover,
.usa-button--outline:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.usa-search {
    width: min(720px, 100%);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.35rem;
    padding: 0.42rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 54px rgba(45, 45, 45, 0.18);
}

.usa-search span {
    display: inline-flex;
    width: 2.6rem;
    height: 2.6rem;
    align-items: center;
    justify-content: center;
    color: var(--usa-navy-soft);
}

.usa-search svg {
    width: 1.08rem;
    height: 1.08rem;
}

.usa-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--usa-ink);
    font-size: 0.96rem;
}

.usa-search input::placeholder {
    color: #8a817b;
}

.usa-search button {
    min-height: 2.7rem;
    padding: 0 1.05rem;
    border: 0;
    border-radius: 6px;
    background: var(--usa-navy);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.usa-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    animation: usa-rise 0.8s ease 0.14s both;
}

.usa-hero__proof span {
    padding: 0.58rem 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 750;
    backdrop-filter: blur(14px);
}

.usa-trust {
    border-bottom: 1px solid var(--usa-line);
    background: #ffffff;
}

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

.usa-trust article {
    padding: 1.25rem 1.1rem;
    border-right: 1px solid var(--usa-line);
}

.usa-trust article:last-child {
    border-right: 0;
}

.usa-trust strong,
.usa-trust span {
    display: block;
}

.usa-trust strong {
    color: var(--usa-navy);
    font-size: 1.18rem;
    line-height: 1.2;
}

.usa-trust span {
    margin-top: 0.3rem;
    color: var(--usa-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.usa-section {
    padding: 5.7rem 0;
}

.usa-section__header {
    max-width: 720px;
    margin-bottom: 2rem;
}

.usa-section__header--split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.usa-section__header h2,
.usa-experience__content h2,
.usa-final-cta h2 {
    margin: 0;
    color: var(--usa-navy);
    font-size: 3.2rem;
    line-height: 1.04;
    font-weight: 850;
}

.usa-section__header p:not(.usa-kicker),
.usa-experience__content > p,
.usa-final-cta p {
    margin: 1rem 0 0;
    color: var(--usa-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.usa-benefits {
    background:
        linear-gradient(180deg, #ffffff 0%, #f2faf8 100%);
}

.usa-benefits__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

.usa-card,
.usa-program-card,
.usa-step,
.usa-story {
    border: 1px solid var(--usa-line);
    border-radius: 8px;
    background: var(--usa-surface);
    box-shadow: 0 18px 40px rgba(45, 45, 45, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.usa-card:hover,
.usa-program-card:hover,
.usa-step:hover,
.usa-story:hover {
    transform: translateY(-5px);
    border-color: rgba(19, 105, 139, 0.2);
    box-shadow: 0 26px 58px rgba(45, 45, 45, 0.11);
}

.usa-benefit-card {
    min-height: 260px;
    padding: 1.15rem;
}

.usa-icon {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: var(--usa-blue-soft);
    color: var(--usa-navy-soft);
}

.usa-benefit-card:nth-child(even) .usa-icon {
    background: var(--usa-red-soft);
    color: var(--usa-red);
}

.usa-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.usa-benefit-card h3,
.usa-program-card h3,
.usa-step h3,
.usa-story strong {
    margin: 0;
    color: var(--usa-navy);
    font-size: 1.08rem;
    line-height: 1.25;
}

.usa-benefit-card p,
.usa-program-card p,
.usa-step p {
    margin: 0.75rem 0 0;
    color: var(--usa-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.usa-featured {
    background: #ffffff;
}

.usa-text-link {
    color: var(--usa-red);
    font-weight: 850;
}

.usa-text-link:hover,
.usa-text-link:focus-visible {
    color: #0B2545;
}

.usa-featured__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.usa-program-card {
    overflow: hidden;
}

.usa-program-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.usa-program-card:hover img {
    transform: scale(1.04);
}

.usa-program-card__body {
    padding: 1.1rem;
}

.usa-program-card__body > span {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--usa-red);
    font-size: 0.8rem;
    font-weight: 800;
}

.usa-program-card ul {
    display: grid;
    gap: 0.35rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.usa-program-card li {
    position: relative;
    padding-left: 1.05rem;
    color: var(--usa-ink);
    font-size: 0.9rem;
    font-weight: 700;
}

.usa-program-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.64em;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--usa-red);
}

.usa-steps {
    background: var(--usa-bg);
}

.usa-steps__line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.usa-steps__line::before {
    content: "";
    position: absolute;
    top: 2.05rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--usa-red), var(--usa-gold));
    opacity: 0.24;
}

.usa-step {
    position: relative;
    padding: 1.2rem;
}

.usa-step span {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 6px solid var(--usa-bg);
    border-radius: 50%;
    background: var(--usa-navy);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 850;
}

.usa-step:nth-child(even) span {
    background: var(--usa-gold);
    color: var(--usa-navy);
}

.usa-experience {
    background: #ffffff;
}

.usa-experience__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 2.2rem;
    align-items: stretch;
}

.usa-experience__media {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: 16px;
    background: url("../images/usa-campus-students-archway-1800.jpg") center / cover no-repeat;
    box-shadow: 0 30px 70px rgba(45, 45, 45, 0.12);
    isolation: isolate;
}

.usa-experience__media::after {
    content: "";
    display: none;
}

.usa-experience__media img {
    width: 100%;
    height: 100%;
    min-height: clamp(440px, 40vw, 560px);
    object-fit: cover;
    object-position: center;
}

.usa-experience__list {
    display: grid;
    margin-top: 1.6rem;
    border-top: 1px solid var(--usa-line);
}

.usa-experience__list article {
    display: grid;
    grid-template-columns: 0.44fr 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--usa-line);
}

.usa-experience__list strong {
    color: var(--usa-navy);
}

.usa-experience__list span {
    color: var(--usa-muted);
    line-height: 1.65;
}

.usa-testimonials {
    background:
        linear-gradient(180deg, #f2faf8 0%, #ffffff 100%);
}

.usa-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.usa-story {
    padding: 1.35rem;
}

.usa-story p {
    margin: 0 0 1.25rem;
    color: var(--usa-ink);
    font-size: 1rem;
    line-height: 1.8;
}

.usa-story span {
    display: block;
    margin-top: 0.25rem;
    color: var(--usa-muted);
    font-size: 0.88rem;
}

.usa-final-cta {
    position: relative;
    padding: 5.6rem 0;
    background:
        linear-gradient(135deg, #000000 0%, #2d2d2d 58%, #5a2f13 100%);
    color: #ffffff;
}

.usa-final-cta::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 32%, var(--usa-red) 32%, var(--usa-red) 68%, #ffffff 68%, #ffffff 100%);
    opacity: 0.74;
}

.usa-final-cta__inner {
    max-width: 850px;
}

.usa-final-cta h2 {
    color: #ffffff;
    font-size: 3.45rem;
}

.usa-final-cta p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.78);
}

@keyframes usa-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .usa-benefits__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .usa-steps__line::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .usa-hero h1 {
        font-size: 3.45rem;
    }

    .usa-section__header--split {
        display: grid;
        align-items: start;
    }

    .usa-featured__grid,
    .usa-testimonials__grid,
    .usa-experience__grid {
        grid-template-columns: 1fr;
    }

    .usa-experience__media {
        order: 1;
    }

    .usa-experience__content {
        order: 2;
    }
}

@media (max-width: 720px) {
    .usa-hero {
        min-height: auto;
    }

    .usa-hero__content {
        min-height: auto;
        padding: 3rem 0 1.45rem;
    }

    .usa-hero h1,
    .usa-final-cta h2,
    .usa-section__header h2,
    .usa-experience__content h2 {
        font-size: 2.28rem;
        line-height: 1.05;
    }

    .usa-hero__copy > p,
    .usa-section__header p:not(.usa-kicker),
    .usa-experience__content > p,
    .usa-final-cta p {
        font-size: 1rem;
    }

    .usa-hero__copy > p {
        margin-top: 0.85rem;
        line-height: 1.58;
    }

    .usa-hero__actions,
    .usa-final-cta__actions {
        display: grid;
        margin-top: 1rem;
    }

    .usa-button {
        min-height: 2.75rem;
        width: 100%;
    }

    .usa-search {
        grid-template-columns: auto minmax(0, 1fr);
        margin-top: 0.85rem;
    }

    .usa-search button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .usa-hero__proof {
        display: none;
    }

    .usa-trust__grid,
    .usa-benefits__grid,
    .usa-steps__line {
        grid-template-columns: 1fr;
    }

    .usa-trust article {
        border-right: 0;
        border-bottom: 1px solid var(--usa-line);
    }

    .usa-trust article:last-child {
        border-bottom: 0;
    }

    .usa-section {
        padding: 4rem 0;
    }

    .usa-experience__list article {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

/* Client presentation polish */
.usa-home {
    background:
        radial-gradient(circle at top left, rgba(19, 105, 139, 0.08), transparent 30%),
        linear-gradient(180deg, #f5fbfc 0%, #f5fbfc 44%, #ffffff 100%);
}

.usa-home h1,
.usa-home h2,
.usa-home h3,
.usa-home strong {
    font-weight: 850;
}

.usa-home p,
.usa-home span,
.usa-home a,
.usa-home input,
.usa-home button {
    font-weight: 500;
}

.usa-hero {
    min-height: 84vh;
}

.usa-hero__shade {
    background:
        linear-gradient(100deg, rgba(0, 0, 0, 0.9) 0%, rgba(45, 45, 45, 0.78) 47%, rgba(19, 105, 139, 0.46) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(45, 45, 45, 0.82) 100%);
}

.usa-hero__content {
    min-height: 84vh;
    padding: 6rem 0 4.5rem;
}

.usa-hero__copy {
    max-width: 820px;
}

.usa-hero h1 {
    max-width: 830px;
    font-size: clamp(3.7rem, 6.2vw, 6.4rem);
    line-height: 1.05;
    letter-spacing: 0;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.32);
}

.usa-hero__copy > p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.75;
}

.usa-hero__actions,
.usa-final-cta__actions {
    gap: 0.9rem;
    margin-top: 1.9rem;
}

.usa-hero__trustline {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
}

.usa-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.usa-hero__badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-height: 2.35rem;
    padding: 0.5rem 0.78rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    font-weight: 700;
    backdrop-filter: blur(14px);
}

.usa-hero__badges b {
    color: #1A936F;
    font-weight: 850;
}

.usa-button {
    min-height: 3.2rem;
    padding: 0.92rem 1.35rem;
    border-radius: 12px;
    font-weight: 800;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease,
        color 0.24s ease;
}

.usa-button--primary {
    background: #13698B;
    color: #ffffff;
    box-shadow:
        0 18px 34px rgba(19, 105, 139, 0.32),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.usa-button--primary:hover,
.usa-button--primary:focus-visible {
    background: #13698B;
    box-shadow:
        0 22px 42px rgba(19, 105, 139, 0.38),
        0 0 0 5px rgba(19, 105, 139, 0.14);
}

.usa-button--light,
.usa-button--outline {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.usa-button--light:hover,
.usa-button--light:focus-visible,
.usa-button--outline:hover,
.usa-button--outline:focus-visible {
    border-color: rgba(228, 244, 240, 0.86);
    background: rgba(255, 255, 255, 0.16);
    box-shadow:
        0 20px 38px rgba(0, 0, 0, 0.18),
        0 0 0 5px rgba(255, 255, 255, 0.08);
}

.usa-search {
    margin-top: 1.55rem;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.usa-search button {
    border-radius: 10px;
    background: #2d2d2d;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.usa-search button:hover,
.usa-search button:focus-visible {
    background: #13698B;
    box-shadow: 0 12px 24px rgba(19, 105, 139, 0.24);
    transform: translateY(-1px);
}

.usa-social-proof {
    padding: 6rem 0 5rem;
    background: #ffffff;
}

.usa-social-proof__header {
    max-width: 680px;
    margin-bottom: 1.7rem;
}

.usa-social-proof__header h2 {
    margin: 0;
    color: var(--usa-navy);
    font-size: clamp(2.15rem, 3.2vw, 3.4rem);
    line-height: 1.08;
}

.usa-social-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

.usa-testimonial-card {
    display: grid;
    align-content: space-between;
    min-height: 230px;
    padding: 1.45rem;
    border: 1px solid rgba(45, 45, 45, 0.09);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 252, 0.94));
    box-shadow: 0 20px 34px rgba(45, 45, 45, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.usa-testimonial-card:hover,
.usa-testimonial-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(19, 105, 139, 0.22);
    box-shadow: 0 30px 52px rgba(45, 45, 45, 0.12);
}

.usa-testimonial-card p {
    margin: 0;
    color: var(--usa-ink);
    font-size: 1.02rem;
    line-height: 1.75;
}

.usa-testimonial-card div {
    margin-top: 1.35rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(45, 45, 45, 0.08);
}

.usa-testimonial-card strong,
.usa-testimonial-card span {
    display: block;
}

.usa-testimonial-card strong {
    color: var(--usa-navy);
}

.usa-testimonial-card span {
    margin-top: 0.25rem;
    color: var(--usa-muted);
    font-size: 0.92rem;
}

.usa-trust {
    padding: 1rem 0 5rem;
    border-bottom: 0;
    background: #ffffff;
}

.usa-trust__grid {
    gap: 1rem;
}

.usa-trust article {
    padding: 1.45rem;
    border: 1px solid rgba(45, 45, 45, 0.09);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 30px rgba(45, 45, 45, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.usa-trust article:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 105, 139, 0.18);
    box-shadow: 0 26px 46px rgba(45, 45, 45, 0.1);
}

.usa-section {
    padding: 7rem 0;
}

.usa-section__header {
    margin-bottom: 2.4rem;
}

.usa-section__header h2,
.usa-experience__content h2,
.usa-final-cta h2 {
    font-size: clamp(2.45rem, 3.8vw, 3.7rem);
    line-height: 1.07;
}

.usa-section__header p:not(.usa-kicker),
.usa-experience__content > p,
.usa-final-cta p {
    font-weight: 500;
}

.usa-card,
.usa-program-card,
.usa-step,
.usa-story {
    border-radius: 16px;
    box-shadow: 0 20px 34px rgba(45, 45, 45, 0.08);
}

.usa-benefit-card,
.usa-step,
.usa-story {
    padding: 1.45rem;
}

.usa-program-card__body {
    padding: 1.45rem;
}

.usa-card:hover,
.usa-program-card:hover,
.usa-step:hover,
.usa-story:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 54px rgba(45, 45, 45, 0.13);
}

.usa-icon {
    border-radius: 12px;
    background: #f2faf8;
    color: #13698B;
}

.usa-benefit-card:nth-child(even) .usa-icon {
    background: #e4f4f0;
    color: #92400e;
}

.usa-featured__grid,
.usa-testimonials__grid {
    gap: 1.2rem;
}

.usa-program-card {
    overflow: hidden;
}

.usa-program-card img {
    border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.usa-steps {
    background:
        linear-gradient(180deg, #f5fbfc 0%, #ffffff 100%);
}

.usa-steps__line {
    gap: 1.15rem;
}

.usa-steps__line::before {
    top: 2.15rem;
    left: 9%;
    right: 9%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(19, 105, 139, 0.2), rgba(26, 147, 111, 0.38), rgba(19, 105, 139, 0.2));
    opacity: 1;
}

.usa-step {
    isolation: isolate;
}

.usa-step span {
    border-color: #ffffff;
    background: #13698B;
    box-shadow:
        0 12px 24px rgba(19, 105, 139, 0.22),
        0 0 0 8px rgba(19, 105, 139, 0.08);
}

.usa-step:nth-child(even) span {
    background: #1A936F;
}

.usa-final-cta {
    display: grid;
    align-items: center;
    min-height: 480px;
    padding: 7rem 0;
    background:
        radial-gradient(circle at top right, rgba(19, 105, 139, 0.34), transparent 32%),
        linear-gradient(135deg, #000000 0%, #262626 52%, #5a2f13 100%);
    text-align: center;
}

.usa-final-cta::before {
    width: 100%;
    height: 0.45rem;
    inset: 0 0 auto;
    background: linear-gradient(90deg, #13698B 0%, #1A936F 100%);
    opacity: 1;
}

.usa-final-cta__inner {
    max-width: 820px;
    margin: 0 auto;
}

.usa-final-cta p {
    margin-left: auto;
    margin-right: auto;
}

.usa-final-cta .usa-final-cta__trust {
    color: #e4f4f0;
    font-size: 0.98rem;
    font-weight: 750;
}

.usa-final-cta__actions {
    justify-content: center;
}

@media (max-width: 1120px) {
    .usa-social-proof__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .usa-hero {
        min-height: auto;
    }

    .usa-hero__content {
        min-height: auto;
        padding: 5rem 0 3.5rem;
    }

    .usa-steps__line::before {
        display: none;
    }

    .usa-experience__media {
        order: 1;
    }

    .usa-experience__content {
        order: 2;
    }
}

@media (max-width: 720px) {
    .usa-hero h1,
    .usa-final-cta h2,
    .usa-section__header h2,
    .usa-experience__content h2,
    .usa-social-proof__header h2 {
        font-size: 2.45rem;
        line-height: 1.09;
    }

    .usa-hero__content {
        padding: 4rem 0 2.6rem;
    }

    .usa-hero__copy > p {
        font-size: 1.02rem;
    }

    .usa-hero__badges,
    .usa-hero__actions,
    .usa-final-cta__actions {
        display: grid;
    }

    .usa-hero__badges span {
        justify-content: center;
    }

    .usa-social-proof {
        padding: 4.5rem 0 3.5rem;
    }

    .usa-social-proof__grid,
    .usa-trust__grid {
        grid-template-columns: 1fr;
    }

    .usa-section {
        padding: 5rem 0;
    }

    .usa-trust {
        padding-bottom: 4rem;
    }

    .usa-final-cta {
        min-height: auto;
        padding: 5rem 0;
    }

    .usa-experience__media img {
        min-height: 280px;
    }
}

/* Consistent landing-page section rhythm: 80px to 112px. */
.usa-home {
    --usa-section-space: clamp(5rem, 7vw, 7rem);
    --usa-section-space-tight: clamp(5rem, 6vw, 6rem);
}

.usa-social-proof,
.usa-section,
.usa-final-cta {
    padding-block: var(--usa-section-space);
}

.usa-trust {
    padding-block: var(--usa-section-space-tight);
}

.usa-steps {
    padding-top: calc(var(--usa-section-space) * 0.75);
    padding-bottom: var(--usa-section-space);
}

/* Professional admissions homepage sections */
.usa-section__header--compact {
    max-width: 760px;
    margin-bottom: 1.35rem;
}

.usa-hero-trust-strip {
    max-width: 900px;
}

.usa-results {
    background:
        linear-gradient(180deg, #ffffff 0%, #f5fbfc 100%);
}

.usa-results__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.usa-results__grid article {
    text-align: center;
}

.usa-results__grid strong {
    color: #13698B;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.usa-results__grid span {
    margin-top: 0.55rem;
    color: var(--usa-muted);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: none;
}

.usa-benefits__grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.usa-benefits__grid--four .usa-benefit-card {
    min-height: 300px;
}

.usa-pathways {
    background: #ffffff;
}

.usa-pathways__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.1rem;
}

.usa-pathway-card {
    min-height: 270px;
    padding: 1.45rem;
    border: 1px solid rgba(45, 45, 45, 0.09);
    border-radius: 16px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f5fbfc 100%);
    box-shadow: 0 20px 34px rgba(45, 45, 45, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.usa-pathway-card:hover,
.usa-pathway-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(19, 105, 139, 0.22);
    box-shadow: 0 30px 54px rgba(45, 45, 45, 0.13);
}

.usa-pathway-card > span {
    display: inline-flex;
    width: 2.65rem;
    height: 2.65rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border-radius: 12px;
    background: #f2faf8;
    color: #13698B;
    font-weight: 850;
}

.usa-pathway-card h3 {
    margin: 0;
    color: var(--usa-navy);
    font-size: 1.12rem;
    line-height: 1.25;
}

.usa-pathway-card p {
    margin: 0.8rem 0 0;
    color: var(--usa-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.usa-journey {
    background:
        linear-gradient(180deg, #f5fbfc 0%, #ffffff 100%);
}

.usa-journey__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.usa-journey__timeline::before {
    content: "";
    position: absolute;
    top: 2.08rem;
    left: 7%;
    right: 7%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(19, 105, 139, 0.22), rgba(26, 147, 111, 0.42), rgba(19, 105, 139, 0.22));
}

.usa-journey__timeline .usa-step {
    min-height: 250px;
}

.usa-success {
    background:
        linear-gradient(180deg, #f5fbfc 0%, #ffffff 100%);
}

.usa-success__grid {
    align-items: stretch;
}

.usa-success-card {
    align-content: start;
}

.usa-success-card__head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0 0 1.25rem;
    padding: 0;
    border: 0;
}

.usa-testimonial-card .usa-success-card__head {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.usa-success-card__head div {
    margin: 0;
    padding: 0;
    border: 0;
}

.usa-avatar {
    flex: 0 0 auto;
    display: inline-flex;
    width: 3.2rem;
    height: 3.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(135deg, #13698B 0%, #1A936F 100%);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 850;
    box-shadow: 0 14px 24px rgba(19, 105, 139, 0.2);
}

.usa-success-card small {
    display: block;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(45, 45, 45, 0.08);
    color: #92400e;
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.55;
}

.usa-consultation {
    background:
        radial-gradient(circle at top left, rgba(19, 105, 139, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f2faf8 100%);
}

.usa-consultation__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 2rem;
    align-items: start;
}

.usa-consultation__copy {
    position: sticky;
    top: 6rem;
}

.usa-consultation__copy h2 {
    margin: 0;
    color: var(--usa-navy);
    font-size: clamp(2.45rem, 3.8vw, 3.7rem);
    line-height: 1.07;
}

.usa-consultation__copy p:not(.usa-kicker) {
    margin: 1rem 0 0;
    max-width: 58ch;
    color: var(--usa-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.usa-consultation-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.45rem;
    border: 1px solid rgba(45, 45, 45, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 54px rgba(45, 45, 45, 0.1);
}

.usa-consultation-form label {
    display: grid;
    gap: 0.45rem;
}

.usa-consultation-form span {
    color: var(--usa-navy);
    font-size: 0.9rem;
    font-weight: 800;
}

.usa-consultation-form input,
.usa-consultation-form select,
.usa-consultation-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(45, 45, 45, 0.12);
    border-radius: 12px;
    padding: 0.9rem 0.95rem;
    background: #f5fbfc;
    color: var(--usa-ink);
    font: inherit;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.usa-consultation-form textarea {
    resize: vertical;
}

.usa-consultation-form input:focus,
.usa-consultation-form select:focus,
.usa-consultation-form textarea:focus {
    outline: none;
    border-color: rgba(19, 105, 139, 0.5);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(19, 105, 139, 0.1);
}

.usa-consultation-form__wide {
    grid-column: 1 / -1;
}

.usa-faq {
    background: #ffffff;
}

.usa-faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 2rem;
    align-items: start;
}

.usa-faq__list {
    display: grid;
    gap: 0.85rem;
}

.usa-faq-item {
    border: 1px solid rgba(45, 45, 45, 0.09);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 28px rgba(45, 45, 45, 0.06);
    transition: box-shadow 0.24s ease, border-color 0.24s ease;
}

.usa-faq-item[open] {
    border-color: rgba(19, 105, 139, 0.2);
    box-shadow: 0 22px 40px rgba(45, 45, 45, 0.09);
}

.usa-faq-item summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 1.15rem 3rem 1.15rem 1.25rem;
    color: var(--usa-navy);
    font-weight: 850;
}

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

.usa-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #13698B;
    font-size: 1.4rem;
    font-weight: 700;
}

.usa-faq-item[open] summary::after {
    content: "-";
}

.usa-faq-item p {
    margin: 0;
    padding: 0 1.25rem 1.2rem;
    color: var(--usa-muted);
    line-height: 1.7;
}

@media (max-width: 720px) {
    .usa-social-proof,
    .usa-section,
    .usa-final-cta,
    .usa-trust {
        padding-block: 5rem;
    }

    .usa-steps {
        padding-top: 3.75rem;
        padding-bottom: 5rem;
    }
}

@media (max-width: 1180px) {
    .usa-pathways__grid,
    .usa-journey__timeline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .usa-journey__timeline::before {
        display: none;
    }
}

@media (max-width: 980px) {
    .usa-results__grid,
    .usa-benefits__grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .usa-consultation__grid,
    .usa-faq__grid {
        grid-template-columns: 1fr;
    }

    .usa-consultation__copy {
        position: static;
    }
}

@media (max-width: 720px) {
    .usa-results__grid,
    .usa-benefits__grid--four,
    .usa-pathways__grid,
    .usa-journey__timeline,
    .usa-consultation-form {
        grid-template-columns: 1fr;
    }

    .usa-benefits__grid--four .usa-benefit-card,
    .usa-pathway-card,
    .usa-journey__timeline .usa-step {
        min-height: auto;
    }

    .usa-consultation-form {
        padding: 1rem;
    }

    .usa-faq-item summary {
        padding-right: 2.7rem;
    }
}

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

/* Professional NurseNorth footer */
.site-footer {
    padding: 0;
    background:
        radial-gradient(circle at 92% 8%, rgba(19, 105, 139, 0.2), transparent 36%),
        linear-gradient(115deg, #050505 0%, #111111 58%, #1a120b 100%);
    color: #ffffff;
}

.site-footer .footer-shell {
    display: block;
    padding: clamp(4rem, 6vw, 5.5rem) 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 0.85fr)) minmax(0, 1.22fr);
    gap: clamp(1.75rem, 3vw, 3rem);
    align-items: start;
}

.footer-column h2 {
    margin: 0 0 1.05rem;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer .brand--footer {
    margin-bottom: 1rem;
    color: #ffffff;
}

.site-footer .brand--footer img {
    width: 2.75rem;
    height: 2.75rem;
}

.site-footer .brand-copy small {
    color: rgba(255, 255, 255, 0.72);
}

.footer-brand-column p {
    max-width: 31rem;
    margin: 0;
    color: rgba(226, 232, 240, 0.78);
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.4rem;
}

.footer-socials a {
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 232, 240, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.82rem;
    font-weight: 850;
    transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(19, 105, 139, 0.86);
    background: #13698B;
    color: #ffffff;
}

.footer-link-list {
    display: grid;
    gap: 0.7rem;
}

.footer-link-list a,
.footer-contact a,
.footer-contact span,
.footer-bottom a {
    color: rgba(226, 232, 240, 0.74);
}

.footer-link-list a,
.footer-contact a,
.footer-bottom a {
    width: fit-content;
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-contact {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1.15rem;
}

.footer-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.82rem 1.08rem;
    border-radius: 12px;
    background: #13698B;
    color: #ffffff;
    font-weight: 850;
    box-shadow: 0 18px 38px rgba(19, 105, 139, 0.24);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.footer-call-button:hover,
.footer-call-button:focus-visible {
    transform: translateY(-2px);
    background: #13698B;
    box-shadow: 0 24px 48px rgba(19, 105, 139, 0.32);
}

.footer-newsletter {
    display: grid;
    gap: 0.72rem;
    margin-top: 1.45rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(226, 232, 240, 0.12);
}

.footer-newsletter label {
    color: #ffffff;
    font-weight: 800;
}

.footer-newsletter div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 0.32rem;
    border: 1px solid rgba(226, 232, 240, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.footer-newsletter input {
    min-width: 0;
    border: 0;
    border-radius: 9px;
    padding: 0.78rem 0.85rem;
    background: rgba(255, 255, 255, 0.95);
    color: #111111;
}

.footer-newsletter input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(19, 105, 139, 0.24);
}

.footer-newsletter button {
    border: 0;
    border-radius: 9px;
    padding: 0.78rem 0.95rem;
    background: #13698B;
    color: #ffffff;
    font-weight: 850;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.footer-newsletter button:hover,
.footer-newsletter button:focus-visible {
    transform: translateY(-1px);
    background: #13698B;
    box-shadow: 0 14px 28px rgba(19, 105, 139, 0.22);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: clamp(2.6rem, 4vw, 3.4rem);
    padding: 1.35rem 0;
    border-top: 1px solid rgba(226, 232, 240, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: rgba(226, 232, 240, 0.62);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem 1.2rem;
    font-weight: 700;
}

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

@media (max-width: 640px) {
    .site-footer .footer-shell {
        padding-top: 3.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .footer-newsletter div {
        grid-template-columns: 1fr;
    }

    .footer-newsletter button {
        width: 100%;
    }

    .footer-bottom {
        display: grid;
        justify-items: start;
    }

    .footer-bottom-links {
        justify-content: flex-start;
    }
}

/* Professional contact page */
.contact-page {
    background:
        radial-gradient(circle at top right, rgba(19, 105, 139, 0.1), transparent 28%),
        linear-gradient(180deg, #f5fbfc 0%, #f2faf8 46%, #ffffff 100%);
    color: #262626;
}

.contact-hero {
    padding: clamp(4rem, 6vw, 6rem) 0 clamp(2.5rem, 4vw, 4rem);
}

.contact-hero__content {
    max-width: 760px;
}

.contact-hero h1 {
    margin: 0;
    color: #2d2d2d;
    font-size: clamp(2.6rem, 4.4vw, 4.4rem);
    line-height: 1.06;
    font-weight: 850;
    letter-spacing: 0;
}

.contact-hero p:not(.eyebrow) {
    max-width: 62ch;
    margin: 1rem 0 0;
    color: #496170;
    font-size: 1.08rem;
    line-height: 1.75;
}

.contact-section,
.contact-help-section {
    padding: clamp(5rem, 7vw, 7rem) 0;
}

.contact-section {
    padding-top: 2rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.contact-section__heading {
    margin-bottom: 1.5rem;
}

.contact-section__heading h2,
.contact-form-heading h2 {
    margin: 0;
    color: #2d2d2d;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: 0;
}

.contact-section__heading p:not(.eyebrow),
.contact-form-heading p {
    margin: 0.9rem 0 0;
    color: #496170;
    line-height: 1.75;
}

.contact-section__heading--center {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
}

.contact-info-grid {
    display: grid;
    gap: 1rem;
}

.contact-info-card,
.contact-consultation-card,
.contact-help-card {
    border: 1px solid rgba(45, 45, 45, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 34px rgba(45, 45, 45, 0.08);
}

.contact-info-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.2rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-info-card:hover,
.contact-info-card:focus-within,
.contact-help-card:hover,
.contact-help-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(19, 105, 139, 0.22);
    box-shadow: 0 28px 48px rgba(45, 45, 45, 0.12);
}

.contact-info-card__icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f2faf8;
    color: #13698B;
}

.contact-info-card__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.contact-info-card h3,
.contact-help-card h3 {
    margin: 0;
    color: #2d2d2d;
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 850;
}

.contact-info-card a,
.contact-info-card p,
.contact-help-card p {
    margin: 0.45rem 0 0;
    color: #496170;
    line-height: 1.65;
}

.contact-info-card a {
    width: fit-content;
    font-weight: 750;
    transition: color 0.22s ease;
}

.contact-info-card a:hover,
.contact-info-card a:focus-visible {
    color: #13698B;
}

.contact-consultation-card {
    padding: clamp(1.25rem, 2.5vw, 1.7rem);
}

.contact-form-heading {
    margin-bottom: 1.25rem;
}

.contact-consultation-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-consultation-form label {
    display: grid;
    gap: 0.45rem;
    color: #2d2d2d;
    font-weight: 800;
}

.contact-consultation-form__wide,
.contact-consultation-form button {
    grid-column: 1 / -1;
}

.contact-consultation-form input,
.contact-consultation-form select,
.contact-consultation-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(45, 45, 45, 0.12);
    border-radius: 12px;
    padding: 0.9rem 0.95rem;
    background: #f5fbfc;
    color: #262626;
    font: inherit;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-consultation-form textarea {
    resize: vertical;
}

.contact-consultation-form input:focus,
.contact-consultation-form select:focus,
.contact-consultation-form textarea:focus {
    outline: none;
    border-color: rgba(19, 105, 139, 0.5);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(19, 105, 139, 0.1);
}

.contact-help-section {
    background: #ffffff;
}

.contact-help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-help-card {
    min-height: 220px;
    padding: 1.3rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.contact-help-card span {
    display: inline-flex;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: #f2faf8;
    color: #13698B;
    font-size: 0.82rem;
    font-weight: 850;
}

@media (max-width: 980px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-grid,
    .contact-help-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding-top: 3.4rem;
    }

    .contact-section,
    .contact-help-section {
        padding: 4.5rem 0;
    }

    .contact-section {
        padding-top: 1rem;
    }

    .contact-info-grid,
    .contact-help-grid,
    .contact-consultation-form {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 1rem;
    }

    .contact-help-card {
        min-height: auto;
    }

    .contact-section__heading--center {
        text-align: left;
    }
}

/* Official NurseNorth logo lockup */
.brand-logo-frame {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.brand-logo-frame--header {
    width: 2.82rem;
    height: 2.44rem;
    padding: 0.22rem;
    border-radius: 10px;
    background: rgba(242, 250, 248, 0.68);
}

.brand-logo-frame--footer {
    width: 2.45rem;
    height: 2.1rem;
    padding: 0.18rem;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.94);
}

.brand-logo-frame .brand-logo {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.brand--header .brand-logo-frame .brand-logo,
.site-footer .brand--footer .brand-logo-frame .brand-logo {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.brand--header,
.brand--footer {
    align-items: center;
}

.brand--header {
    gap: 0.68rem;
    padding: 0.18rem 0.3rem 0.18rem 0;
}

.site-footer .brand--footer {
    gap: 0.65rem;
}

.brand--header .brand-copy strong,
.brand--footer .brand-copy strong {
    letter-spacing: 0;
}

.brand--header .brand-copy strong {
    font-size: 1.08rem;
    line-height: 1.05;
}

@media (max-width: 720px) {
    .brand-logo-frame--header {
        width: 2.5rem;
        height: 2.14rem;
        padding: 0.18rem;
    }
}

@media (max-width: 420px) {
    .brand--header .brand-copy small {
        display: none;
    }

    .brand--footer .brand-copy small {
        display: block;
    }
}

/* Final compact home landing */
.prep-home {
    --prep-purple: #13698B;
    --prep-purple-soft: rgba(19, 105, 139, 0.12);
    --prep-ink: #111629;
    --prep-muted: #4f5568;
    --prep-line: rgba(17, 22, 41, 0.12);
    background: #ffffff;
}

.prep-landing {
    min-height: calc(100vh - 5.5rem);
    background:
        radial-gradient(circle at 86% 18%, rgba(19, 105, 139, 0.16), transparent 32%),
        linear-gradient(105deg, #f2faf8 0%, #ffffff 54%, #e4f4f0 100%);
}

.prep-landing .prep-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
    grid-template-areas:
        "copy visual"
        "explore explore";
    gap: clamp(1.8rem, 4vw, 3.8rem);
    align-items: center;
    min-height: auto;
    padding: clamp(3rem, 5vw, 4.6rem) 0 clamp(2.5rem, 4vw, 3.4rem);
}

.prep-hero__copy {
    grid-area: copy;
}

.prep-landing .prep-hero__visual {
    grid-area: visual;
    min-height: 390px;
}

.prep-landing .prep-quick-links {
    grid-area: explore;
}

.prep-landing h1 {
    max-width: 14ch;
    margin: 0;
    color: var(--prep-ink);
    font-size: clamp(3.25rem, 5vw, 5rem);
    line-height: 1.14;
    font-weight: 850;
}

.prep-landing .prep-hero__subtitle {
    max-width: 58ch;
    margin: 1rem 0 0;
    color: var(--prep-muted);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.6;
}

.prep-landing .prep-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.45rem;
}

.prep-landing .prep-button {
    min-height: 3.05rem;
    border-radius: 8px;
    padding: 0.8rem 1.15rem;
    font-size: 0.95rem;
}

.prep-landing .prep-button--primary {
    background: var(--prep-purple);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(19, 105, 139, 0.2);
}

.prep-landing .prep-button--primary:hover,
.prep-landing .prep-button--primary:focus-visible {
    background: var(--prep-ink);
}

.prep-landing .prep-button--secondary {
    border-color: rgba(19, 105, 139, 0.45);
    background: rgba(255, 255, 255, 0.5);
    color: var(--prep-purple);
}

.prep-landing .prep-button--secondary:hover,
.prep-landing .prep-button--secondary:focus-visible {
    background: #ffffff;
    border-color: var(--prep-purple);
}

.prep-landing .prep-option-grid {
    max-width: 560px;
    margin-top: 1.35rem;
    gap: 0.8rem;
}

.prep-landing .prep-option-button {
    min-height: 3.7rem;
    border-color: rgba(19, 105, 139, 0.42);
    background: rgba(255, 255, 255, 0.55);
    color: var(--prep-purple);
    font-size: 1rem;
}

.prep-landing .prep-option-button:hover,
.prep-landing .prep-option-button:focus-visible {
    border-color: var(--prep-purple);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(17, 22, 41, 0.09);
}

.prep-option-button--inactive {
    cursor: default;
}

.prep-option-button--inactive:hover,
.prep-option-button--inactive:focus-visible {
    transform: none;
}

.prep-landing .prep-laptop-mockup {
    right: -2.4rem;
    top: 2.2rem;
    width: 510px;
    height: 300px;
    transform: rotate(-11deg);
}

.prep-landing .prep-laptop-mockup__top {
    grid-template-columns: 1fr auto auto;
    height: 3.4rem;
    font-size: 0.72rem;
}

.prep-landing .prep-laptop-mockup__body {
    grid-template-columns: 6rem 1fr;
    min-height: calc(100% - 3.4rem);
}

.prep-landing .prep-laptop-mockup__sidebar,
.prep-landing .prep-phone-mockup__cta {
    background: var(--prep-purple);
}

.prep-landing .prep-laptop-mockup__content {
    padding: 2.4rem 1.35rem 1.35rem;
    background:
        repeating-linear-gradient(180deg, transparent 0, transparent 1.05rem, rgba(19, 105, 139, 0.08) 1.05rem, rgba(19, 105, 139, 0.08) 1.15rem),
        #ffffff;
}

.prep-landing .prep-phone-mockup {
    left: 0.4rem;
    top: 0.2rem;
    width: 210px;
    min-height: 315px;
    padding: 1rem;
    border-width: 8px;
    transform: rotate(7deg);
}

.prep-landing .prep-phone-mockup__brand,
.prep-landing .prep-laptop-mockup__top span {
    color: var(--prep-purple);
}

.prep-landing .prep-phone-mockup h2 {
    color: var(--prep-ink);
    font-size: 0.98rem;
}

.prep-landing .prep-phone-mockup p {
    color: var(--prep-muted);
}

.prep-landing .prep-phone-mockup__outline {
    border-color: var(--prep-purple);
    color: var(--prep-purple);
}

.prep-landing .prep-phone-mockup__cards span {
    background: rgba(19, 105, 139, 0.07);
    color: var(--prep-ink);
}

.prep-landing .prep-quick-links {
    padding: 0;
    background: transparent;
    border: 0;
}

.prep-landing .prep-quick-links h2 {
    margin-bottom: 0.85rem;
    color: var(--prep-ink);
    font-size: 0.98rem;
}

.prep-landing .prep-quick-links__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.prep-landing .prep-quick-link-card {
    min-height: 5.9rem;
    border-color: var(--prep-line);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 16px 34px rgba(17, 22, 41, 0.06);
}

.prep-landing .prep-quick-link-card span {
    width: 2rem;
    height: 2rem;
    background: var(--prep-ink);
    color: #ffffff;
    font-size: 0.76rem;
}

.prep-landing .prep-quick-link-card strong {
    color: var(--prep-ink);
    font-size: 0.95rem;
}

.prep-landing .prep-quick-link-card:hover,
.prep-landing .prep-quick-link-card:focus-visible {
    border-color: rgba(19, 105, 139, 0.38);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(17, 22, 41, 0.1);
}

.prep-landing .prep-quick-link-card:hover span,
.prep-landing .prep-quick-link-card:focus-visible span {
    background: var(--prep-purple);
}

@media (max-width: 980px) {
    .prep-landing .prep-hero__content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual"
            "explore";
        padding-top: 3.8rem;
    }

    .prep-landing h1 {
        max-width: 16ch;
        font-size: clamp(2.8rem, 8vw, 4.2rem);
    }

    .prep-landing .prep-hero__visual {
        min-height: 300px;
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }

    .prep-landing .prep-laptop-mockup {
        right: 0;
        width: 500px;
        height: 285px;
    }

    .prep-landing .prep-phone-mockup {
        left: 2rem;
    }

    .prep-landing .prep-quick-links__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .prep-landing {
        min-height: auto;
    }

    .prep-landing .prep-hero__content {
        gap: 2rem;
        padding: 3rem 0 2.7rem;
    }

    .prep-landing h1 {
        max-width: none;
        font-size: 2.35rem;
    }

    .prep-landing .prep-hero__actions,
    .prep-landing .prep-option-grid,
    .prep-landing .prep-quick-links__grid {
        grid-template-columns: 1fr;
    }

    .prep-landing .prep-hero__actions {
        display: grid;
    }

    .prep-landing .prep-option-button,
    .prep-landing .prep-button {
        width: 100%;
    }

    .prep-landing .prep-hero__visual {
        display: none;
    }

    .prep-landing .prep-quick-link-card {
        min-height: 4.6rem;
        grid-template-columns: auto minmax(0, 1fr);
        justify-items: start;
        padding: 0 1rem;
    }
}

/* Current NurseNorth navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    padding: 0;
    border-bottom: 1px solid rgba(17, 22, 41, 0.08);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(22px);
}

.site-header__frame {
    position: relative;
}

.nav-shell--refined {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.85rem;
    min-height: 76px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand--header {
    gap: 0.72rem;
    min-width: max-content;
    padding: 0;
    color: #111629;
}

.brand-logo-frame--header {
    width: 2.78rem;
    height: 2.38rem;
    padding: 0.2rem;
    border: 1px solid rgba(19, 105, 139, 0.18);
    border-radius: 8px;
    background: #f2faf8;
    box-shadow: 0 12px 24px rgba(19, 105, 139, 0.12);
}

.brand--header .brand-logo-frame .brand-logo {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    gap: 0.1rem;
    line-height: 1.05;
}

.brand--header .brand-copy strong {
    color: #111629;
    font-size: 1.05rem;
    font-weight: 850;
    letter-spacing: 0;
}

.brand--header .brand-copy small {
    display: block;
    color: rgba(17, 22, 41, 0.58);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0;
    line-height: 1.15;
    text-transform: none;
}

.site-nav--panel {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 0.18rem;
    min-width: 0;
    padding: 0.28rem;
    border: 1px solid rgba(17, 22, 41, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 34px rgba(17, 22, 41, 0.055);
}

.site-nav--panel a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 2.45rem;
    padding: 0.54rem 0.78rem;
    border-radius: 6px;
    color: rgba(17, 22, 41, 0.68);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.site-nav--panel a::after {
    display: none;
}

.site-nav--panel a:hover,
.site-nav--panel a:focus-visible {
    background: #f2faf8;
    color: #111629;
}

.site-nav--panel a.is-active {
    background: #111629;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(17, 22, 41, 0.14);
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.55rem;
    min-width: max-content;
}

.header-chip {
    display: inline-flex;
    align-items: center;
    min-height: 2.35rem;
    padding: 0 0.78rem;
    border: 1px solid rgba(19, 105, 139, 0.2);
    border-radius: 999px;
    background: #f2faf8;
    color: #0B2545;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0;
    white-space: nowrap;
}

.button--nav {
    min-height: 2.7rem;
    padding: 0.72rem 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #13698B;
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(19, 105, 139, 0.22);
    font-size: 0.9rem;
    font-weight: 850;
    letter-spacing: 0;
    white-space: nowrap;
}

.button--nav:hover,
.button--nav:focus-visible {
    border-color: transparent;
    background: #0B2545;
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(11, 37, 69, 0.24);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    border: 1px solid rgba(17, 22, 41, 0.1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(17, 22, 41, 0.06);
}

.menu-toggle span {
    width: 1.12rem;
    height: 2px;
    border-radius: 999px;
    background: #111629;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.mobile-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    left: 0;
    z-index: 90;
    display: none;
    gap: 0.12rem;
    margin: 0;
    padding: 0.55rem;
    border: 1px solid rgba(17, 22, 41, 0.09);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 24px 56px rgba(17, 22, 41, 0.13);
    isolation: isolate;
    max-height: calc(100vh - 5.5rem);
    overflow-y: auto;
}

.mobile-nav__intro {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
    padding: 0.85rem;
    border-radius: 8px;
    background: #f2faf8;
}

.mobile-nav__intro span {
    color: #0B2545;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0;
}

.mobile-nav__intro strong {
    max-width: 34rem;
    color: #111629;
    font-size: 0.96rem;
    line-height: 1.35;
}

.mobile-nav a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 2.8rem;
    padding: 0.75rem 0.85rem;
    border: 0;
    border-radius: 6px;
    background: #ffffff;
    color: rgba(17, 22, 41, 0.72);
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    background: #f2faf8;
    color: #111629;
}

.mobile-nav a.is-active {
    background: #111629;
    color: #ffffff;
}

.mobile-nav .button {
    justify-content: center;
    margin-top: 0.35rem;
    border-radius: 8px;
    background: #13698B;
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(19, 105, 139, 0.2);
}

@media (max-width: 1120px) {
    .site-nav--panel a {
        padding-inline: 0.66rem;
    }

    .header-chip {
        display: none;
    }
}

@media (max-width: 980px) {
    .nav-shell--refined {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 68px;
    }

    .site-nav--panel,
    .site-header__actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .nav-open .mobile-nav {
        display: grid;
    }

    .nav-open .menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

@media (max-width: 520px) {
    .brand--header .brand-copy strong {
        font-size: 1rem;
    }

    .brand--header .brand-copy small {
        max-width: 11rem;
        font-size: 0.66rem;
    }

    .mobile-nav {
        top: calc(100% + 0.25rem);
    }
}

@media (max-width: 380px) {
    .brand-logo-frame--header {
        width: 2.45rem;
        height: 2.1rem;
    }

    .brand--header .brand-copy small {
        display: none;
    }
}

/* Homepage professional polish final cascade */
.prep-landing {
    min-height: auto;
    background:
        radial-gradient(circle at 82% 18%, rgba(19, 105, 139, 0.14), transparent 30%),
        radial-gradient(circle at 8% 10%, rgba(17, 22, 41, 0.05), transparent 24%),
        linear-gradient(110deg, #f2faf8 0%, #ffffff 48%, #edf8f5 100%);
}

.prep-landing .prep-hero__content {
    grid-template-columns: minmax(0, 0.96fr) minmax(350px, 0.78fr);
    gap: clamp(1.5rem, 3.4vw, 3rem);
    padding: clamp(2.8rem, 4.5vw, 4.2rem) 0 clamp(2.35rem, 3.5vw, 3rem);
}

.prep-landing .prep-hero__copy {
    max-width: 680px;
}

.prep-landing h1 {
    max-width: 15ch;
    font-size: clamp(3rem, 4.7vw, 4.55rem);
    line-height: 1.08;
}

.prep-landing .prep-hero__subtitle {
    max-width: 54ch;
    margin-top: 1.05rem;
    color: rgba(17, 22, 41, 0.76);
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.65;
}

.prep-landing .prep-hero__actions {
    gap: 0.75rem;
    margin-top: 1.55rem;
}

.prep-landing .prep-button {
    min-height: 3.15rem;
    border-radius: 10px;
    padding: 0.86rem 1.25rem;
}

.prep-landing .prep-button--primary {
    box-shadow: 0 18px 38px rgba(19, 105, 139, 0.26);
}

.prep-landing .prep-button--secondary {
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 12px 26px rgba(17, 22, 41, 0.05);
}

.prep-landing .prep-option-grid {
    max-width: 650px;
    margin-top: 1.5rem;
    gap: 0.85rem;
}

.prep-landing .prep-option-button {
    min-height: 3.95rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    color: #0B2545;
    box-shadow: 0 14px 30px rgba(17, 22, 41, 0.055);
}

.prep-landing .prep-option-button:hover,
.prep-landing .prep-option-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(17, 22, 41, 0.1);
}

.prep-option-button--inactive:hover,
.prep-option-button--inactive:focus-visible {
    transform: none;
}

.prep-landing .prep-hero__visual {
    min-height: 350px;
}

.prep-landing .prep-laptop-mockup,
.prep-landing .prep-phone-mockup {
    box-shadow: 0 28px 70px rgba(17, 22, 41, 0.14);
}

.prep-landing .prep-laptop-mockup {
    right: -1rem;
    top: 2.1rem;
    width: 470px;
    height: 280px;
    border-radius: 14px;
}

.prep-landing .prep-laptop-mockup__top {
    height: 3.2rem;
    color: rgba(17, 22, 41, 0.72);
}

.prep-landing .prep-laptop-mockup__body {
    min-height: calc(100% - 3.2rem);
}

.prep-landing .prep-phone-mockup {
    left: 0;
    top: 0.4rem;
    width: 205px;
    min-height: 306px;
    border-radius: 22px;
}

.prep-landing .prep-phone-mockup__cards {
    gap: 0.45rem;
}

.prep-landing .prep-phone-mockup__cards span {
    min-height: 2.65rem;
    padding: 0.35rem;
    text-align: center;
    line-height: 1.25;
}

.prep-landing .prep-quick-links {
    margin-top: -0.2rem;
}

.prep-landing .prep-quick-links h2 {
    margin-bottom: 0.95rem;
    font-size: 1rem;
}

.prep-landing .prep-quick-links__grid {
    gap: 0.9rem;
}

.prep-landing .prep-quick-link-card {
    min-height: 6.2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 36px rgba(17, 22, 41, 0.055);
}

.prep-landing .prep-quick-link-card:hover,
.prep-landing .prep-quick-link-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(17, 22, 41, 0.11);
}

.site-footer .footer-shell {
    padding-top: clamp(3.6rem, 5.4vw, 5rem);
}

.footer-grid {
    gap: clamp(2rem, 3.6vw, 3.25rem);
}

.footer-column h2 {
    margin-bottom: 1.15rem;
}

.footer-link-list {
    gap: 0.78rem;
}

.footer-brand-column p,
.footer-link-list a,
.footer-contact a,
.footer-contact span,
.footer-bottom p,
.footer-bottom a {
    line-height: 1.65;
}

.footer-call-button {
    min-height: 3.1rem;
    border-radius: 10px;
}

.footer-newsletter div {
    border-radius: 12px;
}

@media (max-width: 980px) {
    .prep-landing .prep-hero__content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual"
            "explore";
        gap: 2.25rem;
    }

    .prep-landing h1 {
        max-width: 17ch;
    }

    .prep-landing .prep-laptop-mockup {
        right: 1rem;
        width: 470px;
    }

    .prep-landing .prep-phone-mockup {
        left: 1.4rem;
    }
}

@media (max-width: 640px) {
    .prep-landing .prep-hero__content {
        gap: 1.8rem;
        padding: 2.45rem 0 2.4rem;
    }

    .prep-landing h1 {
        max-width: none;
        font-size: 2.15rem;
        line-height: 1.12;
    }

    .prep-landing .prep-hero__subtitle {
        margin-top: 0.9rem;
        font-size: 0.98rem;
    }

    .prep-landing .prep-hero__actions {
        display: grid;
        gap: 0.65rem;
        margin-top: 1.25rem;
    }

    .prep-landing .prep-option-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        margin-top: 1.15rem;
    }

    .prep-landing .prep-option-button {
        min-height: 3.6rem;
    }

    .prep-landing .prep-quick-links__grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .prep-landing .prep-quick-link-card {
        min-height: 4.5rem;
    }

    .site-footer .footer-shell {
        padding-top: 3.2rem;
    }
}

/* Homepage professional polish */
.prep-landing {
    min-height: auto;
    background:
        radial-gradient(circle at 82% 18%, rgba(19, 105, 139, 0.14), transparent 30%),
        radial-gradient(circle at 8% 10%, rgba(17, 22, 41, 0.05), transparent 24%),
        linear-gradient(110deg, #f2faf8 0%, #ffffff 48%, #edf8f5 100%);
}

.prep-landing .prep-hero__content {
    grid-template-columns: minmax(0, 0.96fr) minmax(350px, 0.78fr);
    gap: clamp(1.5rem, 3.4vw, 3rem);
    padding: clamp(2.8rem, 4.5vw, 4.2rem) 0 clamp(2.35rem, 3.5vw, 3rem);
}

.prep-landing .prep-hero__copy {
    max-width: 680px;
}

.prep-landing h1 {
    max-width: 15ch;
    font-size: clamp(3rem, 4.7vw, 4.55rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.prep-landing .prep-hero__subtitle {
    max-width: 54ch;
    margin-top: 1.05rem;
    color: rgba(17, 22, 41, 0.76);
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.65;
}

.prep-landing .prep-hero__actions {
    gap: 0.75rem;
    margin-top: 1.55rem;
}

.prep-landing .prep-button {
    min-height: 3.15rem;
    border-radius: 10px;
    padding: 0.86rem 1.25rem;
    font-weight: 850;
}

.prep-landing .prep-button--primary {
    box-shadow: 0 18px 38px rgba(19, 105, 139, 0.26);
}

.prep-landing .prep-button--primary:hover,
.prep-landing .prep-button--primary:focus-visible {
    box-shadow: 0 22px 46px rgba(17, 22, 41, 0.2);
}

.prep-landing .prep-button--secondary {
    border-color: rgba(19, 105, 139, 0.42);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 12px 26px rgba(17, 22, 41, 0.05);
}

.prep-landing .prep-option-grid {
    max-width: 650px;
    margin-top: 1.5rem;
    gap: 0.85rem;
}

.prep-landing .prep-option-button {
    min-height: 3.95rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    color: #0B2545;
    box-shadow: 0 14px 30px rgba(17, 22, 41, 0.055);
}

.prep-landing .prep-option-button:hover,
.prep-landing .prep-option-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px rgba(17, 22, 41, 0.1);
}

.prep-landing .prep-hero__visual {
    min-height: 350px;
}

.prep-landing .prep-laptop-mockup,
.prep-landing .prep-phone-mockup {
    box-shadow: 0 28px 70px rgba(17, 22, 41, 0.14);
}

.prep-landing .prep-laptop-mockup {
    right: -1rem;
    top: 2.1rem;
    width: 470px;
    height: 280px;
    border-radius: 14px;
}

.prep-landing .prep-laptop-mockup__top {
    height: 3.2rem;
    color: rgba(17, 22, 41, 0.72);
}

.prep-landing .prep-laptop-mockup__body {
    min-height: calc(100% - 3.2rem);
}

.prep-landing .prep-phone-mockup {
    left: 0;
    top: 0.4rem;
    width: 205px;
    min-height: 306px;
    border-radius: 22px;
}

.prep-landing .prep-phone-mockup__cards {
    gap: 0.45rem;
}

.prep-landing .prep-phone-mockup__cards span {
    min-height: 2.65rem;
    padding: 0.35rem;
    text-align: center;
    line-height: 1.25;
}

.prep-landing .prep-quick-links {
    margin-top: -0.2rem;
}

.prep-landing .prep-quick-links h2 {
    margin-bottom: 0.95rem;
    font-size: 1rem;
}

.prep-landing .prep-quick-links__grid {
    gap: 0.9rem;
}

.prep-landing .prep-quick-link-card {
    min-height: 6.2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 16px 36px rgba(17, 22, 41, 0.055);
}

.prep-landing .prep-quick-link-card:hover,
.prep-landing .prep-quick-link-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(17, 22, 41, 0.11);
}

.site-footer .footer-shell {
    padding-top: clamp(3.6rem, 5.4vw, 5rem);
}

.footer-grid {
    gap: clamp(2rem, 3.6vw, 3.25rem);
}

.footer-column h2 {
    margin-bottom: 1.15rem;
}

.footer-link-list {
    gap: 0.78rem;
}

.footer-brand-column p,
.footer-link-list a,
.footer-contact a,
.footer-contact span,
.footer-bottom p,
.footer-bottom a {
    line-height: 1.65;
}

.footer-call-button {
    min-height: 3.1rem;
    border-radius: 10px;
}

.footer-newsletter div {
    border-radius: 12px;
}

@media (max-width: 980px) {
    .prep-landing .prep-hero__content {
        gap: 2.25rem;
    }

    .prep-landing h1 {
        max-width: 17ch;
    }

    .prep-landing .prep-laptop-mockup {
        right: 1rem;
        width: 470px;
    }

    .prep-landing .prep-phone-mockup {
        left: 1.4rem;
    }
}

@media (max-width: 640px) {
    .prep-landing .prep-hero__content {
        gap: 1.8rem;
        padding: 2.45rem 0 2.4rem;
    }

    .prep-landing h1 {
        font-size: 2.15rem;
        line-height: 1.12;
    }

    .prep-landing .prep-hero__subtitle {
        margin-top: 0.9rem;
        font-size: 0.98rem;
    }

    .prep-landing .prep-hero__actions {
        gap: 0.65rem;
        margin-top: 1.25rem;
    }

    .prep-landing .prep-option-grid {
        gap: 0.7rem;
        margin-top: 1.15rem;
    }

    .prep-landing .prep-option-button {
        min-height: 3.6rem;
    }

    .prep-landing .prep-quick-links__grid {
        gap: 0.7rem;
    }

    .prep-landing .prep-quick-link-card {
        min-height: 4.5rem;
    }

    .site-footer .footer-shell {
        padding-top: 3.2rem;
    }
}

/* Scholar Den-inspired simple home page */
.prep-home,
.prep-home * {
    letter-spacing: 0;
}

.prep-home {
    --prep-ink: #172033;
    --prep-muted: #596579;
    --prep-line: rgba(23, 32, 51, 0.12);
    --prep-orange: #13698B;
    --prep-orange-dark: #0B2545;
    --prep-teal: #0f766e;
    --prep-blue: #1f3a5f;
    --prep-cream: #f2faf8;
    background: #ffffff;
    color: var(--prep-ink);
}

.prep-home h1,
.prep-home h2,
.prep-home h3,
.prep-home p {
    margin-top: 0;
}

.prep-hero {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 16%, rgba(93, 32, 210, 0.16), transparent 32%),
        linear-gradient(105deg, #f2faf8 0%, #ffffff 52%, #e4f4f0 100%);
    color: var(--prep-ink);
}

.prep-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    gap: 2rem;
    align-items: center;
    min-height: 760px;
    padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(4rem, 6vw, 6rem);
}

.prep-hero__content > * {
    min-width: 0;
}

.prep-kicker {
    margin-bottom: 0.8rem;
    color: var(--prep-orange);
    font-size: 0.8rem;
    font-weight: 850;
    text-transform: uppercase;
}

.prep-final .prep-kicker {
    color: #9adbc8;
}

.prep-hero h1 {
    max-width: 13ch;
    margin-bottom: 0;
    color: #111629;
    font-size: clamp(3.4rem, 5.2vw, 5rem);
    line-height: 1.18;
    font-weight: 850;
}

.prep-hero__subtitle {
    margin: clamp(2.7rem, 5vw, 4.7rem) 0 1.45rem;
    color: #25223a;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.45;
    font-weight: 500;
}

.prep-option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.45rem;
    max-width: 820px;
}

.prep-option-button {
    display: inline-flex;
    min-height: 4.55rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(96, 38, 220, 0.52);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.34);
    color: #13698B;
    font-size: 1.25rem;
    font-weight: 850;
    line-height: 1.2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.prep-option-button:hover,
.prep-option-button:focus-visible {
    transform: translateY(-2px);
    border-color: #13698B;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 34px rgba(19, 105, 139, 0.14);
}

.prep-hero__visual {
    position: relative;
    min-height: 580px;
}

.prep-laptop-mockup,
.prep-tablet-mockup,
.prep-phone-mockup {
    position: absolute;
    border: 1px solid rgba(17, 22, 41, 0.13);
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(28, 20, 61, 0.16);
}

.prep-laptop-mockup {
    right: -9rem;
    top: 2.5rem;
    width: 690px;
    height: 430px;
    overflow: hidden;
    border-radius: 10px;
    transform: rotate(-12deg);
}

.prep-laptop-mockup__top {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 1.15rem;
    align-items: center;
    height: 4.2rem;
    padding: 0 1.3rem;
    border-bottom: 1px solid rgba(17, 22, 41, 0.08);
    color: #3c3851;
    font-size: 0.82rem;
    font-weight: 750;
}

.prep-laptop-mockup__top span {
    color: #13698B;
    font-weight: 850;
}

.prep-laptop-mockup__body {
    display: grid;
    grid-template-columns: 8.2rem 1fr;
    min-height: calc(100% - 4.2rem);
}

.prep-laptop-mockup__sidebar {
    background: #13698B;
}

.prep-laptop-mockup__content {
    display: grid;
    gap: 0.9rem;
    align-content: start;
    padding: 3.7rem 2rem 2rem;
    background:
        repeating-linear-gradient(180deg, transparent 0, transparent 1.45rem, rgba(19, 105, 139, 0.08) 1.45rem, rgba(19, 105, 139, 0.08) 1.6rem),
        #ffffff;
}

.prep-laptop-mockup__content span {
    display: block;
    height: 1.25rem;
    border: 1px solid rgba(19, 105, 139, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
}

.prep-tablet-mockup {
    left: 1.4rem;
    top: 11rem;
    width: 310px;
    height: 240px;
    overflow: hidden;
    border-radius: 18px;
    transform: rotate(-14deg);
}

.prep-tablet-mockup span {
    display: block;
    width: 72%;
    height: 100%;
    background: #13698B;
    clip-path: polygon(0 0, 100% 0, 63% 100%, 0 100%);
}

.prep-phone-mockup {
    left: 6.5rem;
    top: 1.4rem;
    z-index: 2;
    width: 260px;
    min-height: 438px;
    padding: 1.25rem;
    border: 10px solid #ffffff;
    border-radius: 24px;
    transform: rotate(7deg);
}

.prep-phone-mockup__brand {
    margin-bottom: 1.1rem;
    color: #13698B;
    font-size: 0.9rem;
    font-weight: 850;
}

.prep-phone-mockup h2 {
    margin: 0 0 0.65rem;
    color: #14182b;
    font-size: 1.16rem;
    line-height: 1.25;
}

.prep-phone-mockup p {
    margin: 0 0 0.9rem;
    color: #6b647e;
    font-size: 0.72rem;
    line-height: 1.45;
}

.prep-phone-mockup__cta,
.prep-phone-mockup__outline {
    display: flex;
    min-height: 2.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    font-size: 0.72rem;
    font-weight: 850;
}

.prep-phone-mockup__cta {
    margin-bottom: 0.7rem;
    background: #13698B;
    color: #ffffff;
}

.prep-phone-mockup__outline {
    border: 1px solid #13698B;
    color: #13698B;
}

.prep-phone-mockup__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 1.3rem;
}

.prep-phone-mockup__cards span {
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f2faf8;
    color: #111629;
    font-size: 0.7rem;
    font-weight: 850;
}

.prep-pen-mockup {
    position: absolute;
    right: 0.6rem;
    top: 0.5rem;
    z-index: 3;
    width: 1.15rem;
    height: 360px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(180, 180, 190, 0.35), rgba(255, 255, 255, 0.9)),
        #f8f8fb;
    box-shadow: 0 18px 34px rgba(28, 20, 61, 0.14);
    transform: rotate(18deg);
}

.prep-hero__actions,
.prep-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.prep-button {
    display: inline-flex;
    min-height: 3.1rem;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.82rem 1.2rem;
    font-weight: 850;
    line-height: 1.2;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

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

.prep-button--primary {
    background: var(--prep-orange);
    color: #ffffff;
    box-shadow: 0 18px 30px rgba(19, 105, 139, 0.28);
}

.prep-button--primary:hover,
.prep-button--primary:focus-visible {
    background: var(--prep-orange-dark);
}

.prep-button--light {
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.prep-button--light:hover,
.prep-button--light:focus-visible {
    background: rgba(255, 255, 255, 0.2);
}

.prep-button--outline {
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
}

.prep-button--outline:hover,
.prep-button--outline:focus-visible {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.prep-quick-links {
    padding: 3.4rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--prep-line);
}

.prep-quick-links h2 {
    margin: 0 0 1.25rem;
    color: var(--prep-ink);
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 850;
}

.prep-quick-links__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.prep-quick-link-card {
    display: grid;
    min-height: 8.4rem;
    align-content: center;
    justify-items: center;
    gap: 0.75rem;
    border: 1px solid var(--prep-line);
    border-radius: 8px;
    background: rgba(23, 32, 51, 0.025);
    color: var(--prep-ink);
    box-shadow: 0 14px 30px rgba(23, 32, 51, 0.05);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.prep-quick-link-card span {
    display: inline-flex;
    width: 2.35rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--prep-ink);
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 850;
    transition: background 0.22s ease;
}

.prep-quick-link-card strong {
    color: var(--prep-ink);
    font-size: 1rem;
    line-height: 1.2;
}

.prep-quick-link-card:hover,
.prep-quick-link-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(19, 105, 139, 0.42);
    background: #ffffff;
    box-shadow: 0 22px 44px rgba(23, 32, 51, 0.1);
}

.prep-quick-link-card:hover span,
.prep-quick-link-card:focus-visible span {
    background: var(--prep-orange);
}

.prep-proof {
    padding: 1rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--prep-line);
}

.prep-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--prep-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 42px rgba(23, 32, 51, 0.07);
}

.prep-proof article {
    padding: 1.35rem 1.2rem;
    border-right: 1px solid var(--prep-line);
}

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

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

.prep-proof strong {
    color: var(--prep-blue);
    font-size: 1.55rem;
    line-height: 1.1;
}

.prep-proof span {
    margin-top: 0.35rem;
    color: var(--prep-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.prep-section {
    padding: 5.6rem 0;
}

.prep-section--light {
    background: #f7f9fc;
}

.prep-section--white {
    background: #ffffff;
}

.prep-section__header {
    max-width: 740px;
    margin-bottom: 2rem;
}

.prep-section__header--split {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.prep-section__header h2,
.prep-plan__copy h2,
.prep-final h2 {
    margin-bottom: 0.85rem;
    color: var(--prep-ink);
    font-size: 2.75rem;
    line-height: 1.1;
    font-weight: 850;
}

.prep-section__header p:not(.prep-kicker),
.prep-plan__copy p,
.prep-final p {
    margin-bottom: 0;
    color: var(--prep-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.prep-card-grid,
.prep-story-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.prep-card,
.prep-path,
.prep-story,
.prep-plan__steps article {
    border: 1px solid var(--prep-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(23, 32, 51, 0.07);
}

.prep-card {
    min-height: 255px;
    padding: 1.25rem;
}

.prep-card__icon {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    border-radius: 8px;
    background: #e4f4f0;
    color: var(--prep-orange-dark);
    font-size: 0.86rem;
    font-weight: 850;
}

.prep-card h3,
.prep-path h3 {
    margin-bottom: 0.7rem;
    color: var(--prep-ink);
    font-size: 1.16rem;
    line-height: 1.25;
}

.prep-card p,
.prep-path p {
    margin-bottom: 0;
    color: var(--prep-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.prep-plan {
    background:
        linear-gradient(90deg, #172033 0%, #1f3a5f 58%, #0f766e 100%);
    color: #ffffff;
}

.prep-plan__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
}

.prep-plan__copy h2,
.prep-plan__copy p {
    color: #ffffff;
}

.prep-plan__copy p {
    color: rgba(255, 255, 255, 0.78);
}

.prep-text-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 1.2rem;
    color: var(--prep-orange);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
}

.prep-plan .prep-text-link {
    color: #9adbc8;
}

.prep-plan__steps {
    display: grid;
    gap: 0.8rem;
}

.prep-plan__steps article {
    display: grid;
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.1rem;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.prep-plan__steps strong {
    color: #ffffff;
    font-size: 1rem;
}

.prep-plan__steps span {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.prep-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.prep-path {
    min-height: 210px;
    padding: 1.3rem;
}

.prep-path span {
    display: inline-flex;
    margin-top: 1.3rem;
    color: var(--prep-teal);
    font-size: 0.86rem;
    font-weight: 850;
}

.prep-testimonials {
    background: var(--prep-cream);
}

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

.prep-story {
    min-height: 230px;
    padding: 1.3rem;
}

.prep-story p {
    margin-bottom: 1.25rem;
    color: #384255;
    line-height: 1.7;
}

.prep-story strong,
.prep-story span {
    display: block;
}

.prep-story strong {
    color: var(--prep-ink);
}

.prep-story span {
    margin-top: 0.2rem;
    color: var(--prep-muted);
    font-size: 0.9rem;
}

.prep-final {
    padding: 5.4rem 0;
    background: #172033;
    color: #ffffff;
}

.prep-final__inner {
    max-width: 760px;
}

.prep-final h2,
.prep-final p {
    color: #ffffff;
}

.prep-final p {
    color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
    .prep-hero {
        min-height: auto;
    }

    .prep-hero__content {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 4.4rem 0 4.8rem;
    }

    .prep-hero h1 {
        max-width: 14ch;
        font-size: 3.35rem;
    }

    .prep-option-grid {
        max-width: 720px;
    }

    .prep-hero__visual {
        min-height: 390px;
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

    .prep-laptop-mockup {
        right: -3rem;
        top: 1.5rem;
        width: 620px;
        height: 360px;
    }

    .prep-tablet-mockup {
        left: 1rem;
        top: 8.5rem;
        width: 260px;
        height: 190px;
    }

    .prep-phone-mockup {
        left: 5rem;
        top: 0;
        width: 230px;
        min-height: 365px;
    }

    .prep-pen-mockup {
        right: 1.7rem;
        height: 290px;
    }

    .prep-section__header h2,
    .prep-plan__copy h2,
    .prep-final h2 {
        font-size: 2.25rem;
    }

    .prep-card-grid,
    .prep-quick-links__grid,
    .prep-proof__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .prep-proof article:nth-child(2) {
        border-right: 0;
    }

    .prep-proof article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--prep-line);
    }

    .prep-card {
        min-height: 230px;
    }

    .prep-plan__grid,
    .prep-path-grid,
    .prep-story-grid {
        grid-template-columns: 1fr;
    }

    .prep-section__header--split {
        display: grid;
        align-items: start;
    }
}

@media (max-width: 640px) {
    .prep-hero__content {
        padding: 3.7rem 0 4rem;
    }

    .prep-hero h1 {
        max-width: none;
        font-size: 2.45rem;
        line-height: 1.18;
    }

    .prep-hero__subtitle {
        margin-top: 2.1rem;
        font-size: 1.05rem;
    }

    .prep-option-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .prep-option-button {
        width: 100%;
        min-height: 3.8rem;
        font-size: 1.05rem;
    }

    .prep-hero__visual {
        display: none;
    }

    .prep-hero__actions,
    .prep-final__actions {
        display: grid;
    }

    .prep-button {
        width: 100%;
    }

    .prep-proof__grid,
    .prep-quick-links__grid,
    .prep-card-grid {
        grid-template-columns: 1fr;
    }

    .prep-quick-links {
        padding: 2.7rem 0;
    }

    .prep-quick-link-card {
        min-height: 4.8rem;
        grid-template-columns: auto minmax(0, 1fr);
        align-content: center;
        justify-items: start;
        padding: 0 1rem;
    }

    .prep-proof article,
    .prep-proof article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--prep-line);
    }

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

    .prep-section,
    .prep-final {
        padding: 4.4rem 0;
    }

    .prep-section__header h2,
    .prep-plan__copy h2,
    .prep-final h2 {
        font-size: 1.9rem;
    }

    .prep-card,
    .prep-path,
    .prep-story {
        min-height: auto;
    }

    .prep-plan__steps article {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

/* Final compact home landing overrides */
.prep-home {
    --prep-purple: #13698B;
    --prep-purple-soft: rgba(19, 105, 139, 0.12);
    --prep-ink: #111629;
    --prep-muted: #4f5568;
    --prep-line: rgba(17, 22, 41, 0.12);
    background: #ffffff;
}

.prep-landing {
    min-height: calc(100vh - 5.5rem);
    background:
        radial-gradient(circle at 86% 18%, rgba(19, 105, 139, 0.16), transparent 32%),
        linear-gradient(105deg, #f2faf8 0%, #ffffff 54%, #e4f4f0 100%);
}

.prep-landing .prep-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
    grid-template-areas:
        "copy visual"
        "explore explore";
    gap: clamp(1.8rem, 4vw, 3.8rem);
    align-items: center;
    min-height: auto;
    padding: clamp(3rem, 5vw, 4.6rem) 0 clamp(2.5rem, 4vw, 3.4rem);
}

.prep-hero__copy {
    grid-area: copy;
}

.prep-landing .prep-hero__visual {
    grid-area: visual;
    min-height: 390px;
}

.prep-landing .prep-quick-links {
    grid-area: explore;
    padding: 0;
    background: transparent;
    border: 0;
}

.prep-landing h1 {
    max-width: 14ch;
    margin: 0;
    color: var(--prep-ink);
    font-size: clamp(3.25rem, 5vw, 5rem);
    line-height: 1.14;
    font-weight: 850;
}

.prep-landing .prep-hero__subtitle {
    max-width: 58ch;
    margin: 1rem 0 0;
    color: var(--prep-muted);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.6;
}

.prep-landing .prep-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.45rem;
}

.prep-landing .prep-button {
    min-height: 3.05rem;
    border-radius: 8px;
    padding: 0.8rem 1.15rem;
    font-size: 0.95rem;
}

.prep-landing .prep-button--primary {
    background: var(--prep-purple);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(19, 105, 139, 0.2);
}

.prep-landing .prep-button--primary:hover,
.prep-landing .prep-button--primary:focus-visible {
    background: var(--prep-ink);
}

.prep-landing .prep-button--secondary {
    border-color: rgba(19, 105, 139, 0.45);
    background: rgba(255, 255, 255, 0.5);
    color: var(--prep-purple);
}

.prep-landing .prep-button--secondary:hover,
.prep-landing .prep-button--secondary:focus-visible {
    background: #ffffff;
    border-color: var(--prep-purple);
}

.prep-landing .prep-option-grid {
    max-width: 560px;
    margin-top: 1.35rem;
    gap: 0.8rem;
}

.prep-landing .prep-option-button {
    min-height: 3.7rem;
    border-color: rgba(19, 105, 139, 0.42);
    background: rgba(255, 255, 255, 0.55);
    color: var(--prep-purple);
    font-size: 1rem;
}

.prep-landing .prep-option-button:hover,
.prep-landing .prep-option-button:focus-visible {
    border-color: var(--prep-purple);
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(17, 22, 41, 0.09);
}

.prep-option-button--inactive {
    cursor: default;
}

.prep-option-button--inactive:hover,
.prep-option-button--inactive:focus-visible {
    transform: none;
}

.prep-landing .prep-laptop-mockup {
    right: -2.4rem;
    top: 2.2rem;
    width: 510px;
    height: 300px;
    transform: rotate(-11deg);
}

.prep-landing .prep-laptop-mockup__top {
    grid-template-columns: 1fr auto auto;
    height: 3.4rem;
    font-size: 0.72rem;
}

.prep-landing .prep-laptop-mockup__body {
    grid-template-columns: 6rem 1fr;
    min-height: calc(100% - 3.4rem);
}

.prep-landing .prep-laptop-mockup__sidebar,
.prep-landing .prep-phone-mockup__cta {
    background: var(--prep-purple);
}

.prep-landing .prep-laptop-mockup__content {
    padding: 2.4rem 1.35rem 1.35rem;
    background:
        repeating-linear-gradient(180deg, transparent 0, transparent 1.05rem, rgba(19, 105, 139, 0.08) 1.05rem, rgba(19, 105, 139, 0.08) 1.15rem),
        #ffffff;
}

.prep-landing .prep-phone-mockup {
    left: 0.4rem;
    top: 0.2rem;
    width: 210px;
    min-height: 315px;
    padding: 1rem;
    border-width: 8px;
    transform: rotate(7deg);
}

.prep-landing .prep-phone-mockup__brand,
.prep-landing .prep-laptop-mockup__top span {
    color: var(--prep-purple);
}

.prep-landing .prep-phone-mockup h2 {
    color: var(--prep-ink);
    font-size: 0.98rem;
}

.prep-landing .prep-phone-mockup p {
    color: var(--prep-muted);
}

.prep-landing .prep-phone-mockup__outline {
    border-color: var(--prep-purple);
    color: var(--prep-purple);
}

.prep-landing .prep-phone-mockup__cards span {
    background: rgba(19, 105, 139, 0.07);
    color: var(--prep-ink);
}

.prep-landing .prep-quick-links h2 {
    margin-bottom: 0.85rem;
    color: var(--prep-ink);
    font-size: 0.98rem;
}

.prep-landing .prep-quick-links__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.prep-landing .prep-quick-link-card {
    min-height: 5.9rem;
    border-color: var(--prep-line);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 16px 34px rgba(17, 22, 41, 0.06);
}

.prep-landing .prep-quick-link-card span {
    width: 2rem;
    height: 2rem;
    background: var(--prep-ink);
    color: #ffffff;
    font-size: 0.76rem;
}

.prep-landing .prep-quick-link-card strong {
    color: var(--prep-ink);
    font-size: 0.95rem;
}

.prep-landing .prep-quick-link-card:hover,
.prep-landing .prep-quick-link-card:focus-visible {
    border-color: rgba(19, 105, 139, 0.38);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(17, 22, 41, 0.1);
}

.prep-landing .prep-quick-link-card:hover span,
.prep-landing .prep-quick-link-card:focus-visible span {
    background: var(--prep-purple);
}

@media (max-width: 980px) {
    .prep-landing .prep-hero__content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual"
            "explore";
        padding-top: 3.8rem;
    }

    .prep-landing h1 {
        max-width: 16ch;
        font-size: clamp(2.8rem, 8vw, 4.2rem);
    }

    .prep-landing .prep-hero__visual {
        min-height: 300px;
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }

    .prep-landing .prep-laptop-mockup {
        right: 0;
        width: 500px;
        height: 285px;
    }

    .prep-landing .prep-phone-mockup {
        left: 2rem;
    }

    .prep-landing .prep-quick-links__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .prep-landing {
        min-height: auto;
    }

    .prep-landing .prep-hero__content {
        gap: 2rem;
        padding: 3rem 0 2.7rem;
    }

    .prep-landing h1 {
        max-width: none;
        font-size: 2.35rem;
    }

    .prep-landing .prep-hero__actions,
    .prep-landing .prep-option-grid,
    .prep-landing .prep-quick-links__grid {
        grid-template-columns: 1fr;
    }

    .prep-landing .prep-hero__actions {
        display: grid;
    }

    .prep-landing .prep-option-button,
    .prep-landing .prep-button {
        width: 100%;
    }

    .prep-landing .prep-hero__visual {
        display: none;
    }

    .prep-landing .prep-quick-link-card {
        min-height: 4.6rem;
        grid-template-columns: auto minmax(0, 1fr);
        justify-items: start;
        padding: 0 1rem;
    }
}

