:root {
    --navy-950: #06172c;
    --navy-900: #0b2545;
    --navy-800: #12375d;
    --navy-700: #194b76;
    --blue-600: #1689b5;
    --cyan-500: #53bfe4;
    --cyan-100: #e7f8fd;
    --lime-500: #95cc3e;
    --lime-400: #a8da57;
    --lime-100: #f1f9e5;
    --ink: #10243a;
    --text: #35495f;
    --muted: #65788b;
    --line: #d9e3eb;
    --surface: #ffffff;
    --surface-alt: #f4f7f9;
    --surface-navy: #0b2545;
    --danger: #a32828;
    --danger-bg: #fff1f1;
    --success: #246b35;
    --success-bg: #edf8ef;
    --shadow-sm: 0 10px 25px rgba(6, 23, 44, 0.08);
    --shadow-lg: 0 25px 70px rgba(6, 23, 44, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --container: 1180px;
    --container-narrow: 800px;
    --header-height: 84px;
    --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
    margin: 0;
    color: var(--text);
    background: var(--surface);
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.cookie-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

a {
    color: var(--navy-800);
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--blue-600);
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.55em;
    color: var(--ink);
    font-weight: 760;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.55rem, 6vw, 5.4rem);
    max-width: 13ch;
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3.45rem);
    max-width: 17ch;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
    margin: 0 0 1.2em;
}

ul,
ol {
    margin-top: 0;
}

::selection {
    color: var(--navy-950);
    background: var(--lime-400);
}

:focus-visible {
    outline: 3px solid var(--lime-500);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

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

.container--narrow {
    width: min(calc(100% - 40px), var(--container-narrow));
}

.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;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--navy-950);
    background: var(--lime-500);
    font-weight: 700;
    border-radius: var(--radius-sm);
    transform: translateY(-160%);
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--blue-600);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.25;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 3px;
    content: "";
    background: var(--lime-500);
    border-radius: 99px;
}

.eyebrow--light {
    color: var(--cyan-500);
}

.lead {
    max-width: 680px;
    margin-bottom: 28px;
    color: #52677a;
    font-size: clamp(1.15rem, 2.1vw, 1.42rem);
    line-height: 1.55;
}

.lead-small,
.lead-copy {
    color: #4b6276;
    font-size: 1.12rem;
    line-height: 1.7;
}

.section {
    padding: clamp(76px, 9vw, 132px) 0;
}

.section--muted {
    background: var(--surface-alt);
}

.section--intro {
    padding-top: clamp(66px, 8vw, 104px);
    padding-bottom: clamp(66px, 8vw, 104px);
}

.section-heading {
    max-width: 750px;
    margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center h2,
.section-heading--center p {
    margin-inline: auto;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    color: var(--navy-950);
    background: var(--lime-500);
    border: 2px solid var(--lime-500);
    border-radius: 999px;
    font-weight: 760;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
    color: var(--navy-950);
    background: var(--lime-400);
    border-color: var(--lime-400);
    transform: translateY(-1px);
}

.button--secondary {
    color: var(--navy-900);
    background: transparent;
    border-color: var(--navy-900);
}

.button--secondary:hover {
    color: #fff;
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.button--small {
    min-height: 43px;
    padding: 10px 18px;
    font-size: 0.93rem;
}

.button--light {
    color: var(--navy-950);
    background: #fff;
    border-color: #fff;
}

.button--light:hover {
    background: var(--cyan-100);
    border-color: var(--cyan-100);
}

.button--outline-light {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.72);
}

.button--outline-light:hover {
    color: var(--navy-950);
    background: #fff;
    border-color: #fff;
}

.button--ghost-dark {
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}

.button--ghost-dark:hover {
    color: var(--ink);
    background: var(--surface-alt);
    border-color: #bdcbd5;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--navy-800);
    font-weight: 760;
    text-decoration: none;
}

.text-link svg {
    transition: transform 160ms ease;
}

.text-link:hover svg {
    transform: translateX(3px);
}

.text-link--light {
    color: #fff;
}

.link-button {
    padding: 0;
    color: inherit;
    background: none;
    border: 0;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(217, 227, 235, 0.8);
    backdrop-filter: blur(12px);
}

.topbar {
    color: #c9d7e4;
    background: var(--navy-950);
    font-size: 0.8rem;
}

.topbar__inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    text-decoration: none;
}

.nav-shell {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
}

.brand img {
    width: 190px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.primary-nav__list,
.nav-dropdown__panel ul {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav__list > li > a,
.nav-dropdown > a {
    position: relative;
    display: block;
    padding: 30px 0;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 690;
    text-decoration: none;
}

.primary-nav__list > li > a::after,
.nav-dropdown > a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 3px;
    content: "";
    background: var(--lime-500);
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
}

.primary-nav__list > li > a:hover::after,
.primary-nav__list > li > a.is-active::after,
.nav-dropdown > a:hover::after,
.nav-dropdown > a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    background: var(--surface-alt);
    border: 0;
    border-radius: 50%;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown__toggle {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin-left: -17px;
    color: var(--ink);
    background: none;
    border: 0;
    transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-dropdown__toggle {
    transform: rotate(180deg);
}

.nav-dropdown__panel {
    position: absolute;
    top: calc(100% - 8px);
    right: -160px;
    display: grid;
    width: min(790px, calc(100vw - 40px));
    padding: 26px;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    grid-template-columns: 0.8fr 1.7fr;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    color: #fff;
    background: var(--navy-900);
    border-radius: var(--radius-sm);
}

.nav-dropdown__intro strong {
    margin-bottom: 8px;
    color: #fff;
    font-size: 1.25rem;
}

.nav-dropdown__intro span {
    color: #c9d7e4;
    font-size: 0.92rem;
}

.nav-dropdown__panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 20px;
}

.nav-dropdown__panel li a {
    display: block;
    padding: 11px 10px;
    color: var(--ink);
    border-radius: 7px;
    font-size: 0.92rem;
    font-weight: 650;
    text-decoration: none;
}

.nav-dropdown__panel li a:hover {
    color: var(--navy-900);
    background: var(--lime-100);
}

.breadcrumbs {
    background: var(--surface-alt);
    border-bottom: 1px solid var(--line);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 13px 0;
    margin: 0;
    list-style: none;
    font-size: 0.82rem;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: 8px;
    color: #98a7b6;
    content: "/";
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumbs [aria-current="page"] {
    color: var(--ink);
    font-weight: 650;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 10vw, 142px) 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(83, 191, 228, 0.16), transparent 30%),
        linear-gradient(140deg, #fff 0%, #f5f9fb 58%, #ecf6f8 100%);
}

.page-hero::after {
    position: absolute;
    right: -110px;
    bottom: -210px;
    width: 440px;
    height: 440px;
    content: "";
    border: 78px solid rgba(149, 204, 62, 0.11);
    border-radius: 50%;
}

.page-hero--compact {
    padding: clamp(64px, 8vw, 100px) 0;
}

.page-hero--compact h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(34px, 6vw, 86px);
}

.page-hero__visual {
    position: relative;
}

.page-hero__visual::before {
    position: absolute;
    z-index: -1;
    top: 9%;
    right: 2%;
    width: 72%;
    aspect-ratio: 1;
    content: "";
    background: rgba(83, 191, 228, 0.1);
    border-radius: 50%;
}

.page-hero__image {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.hero-points,
.check-list {
    display: grid;
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
    gap: 10px;
}

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

.hero-points li,
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--ink);
    font-weight: 640;
}

.hero-points svg,
.check-list svg {
    flex: 0 0 auto;
    margin-top: 4px;
    color: var(--lime-500);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(38px, 8vw, 110px);
}

.card-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.info-card {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: clamp(25px, 3vw, 36px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 0 rgba(6, 23, 44, 0.03);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-card:hover {
    border-color: #bdd2df;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.info-card--featured {
    color: #d8e4ed;
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.info-card--featured h3,
.info-card--featured .check-list li,
.info-card--featured .text-link {
    color: #fff;
}

.info-card__icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--navy-900);
    background: var(--lime-100);
    border-radius: 16px;
}

.info-card p {
    color: var(--muted);
}

.info-card .text-link {
    margin-top: auto;
    padding-top: 10px;
}

.check-list--compact {
    margin-bottom: 24px;
    gap: 7px;
}

.check-list--compact li {
    font-size: 0.92rem;
    font-weight: 550;
}

.split {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(45px, 8vw, 108px);
}

.split--image-left .split__visual {
    order: -1;
}

.split__visual {
    display: flex;
    min-height: 380px;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 48px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.split__visual img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
}

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

.process-step {
    position: relative;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.process-step__number {
    display: block;
    margin-bottom: 28px;
    color: var(--cyan-500);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.process-step:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 45px;
    right: -15px;
    width: 28px;
    height: 3px;
    content: "";
    background: var(--lime-500);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--navy-950);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.metric {
    padding: 34px 24px;
    text-align: center;
}

.metric:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.metric strong {
    display: block;
    color: var(--lime-400);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
}

.metric span {
    display: block;
    margin-top: 9px;
    color: #d2dde7;
    font-size: 0.9rem;
}

.quote-block {
    max-width: 850px;
    padding: clamp(35px, 6vw, 68px);
    margin: 0 auto;
    color: #fff;
    background: var(--navy-900);
    border-radius: var(--radius-lg);
}

.quote-block blockquote {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    font-weight: 650;
    line-height: 1.42;
}

.quote-block figcaption {
    display: flex;
    flex-direction: column;
    color: #cbd9e4;
}

.quote-block figcaption strong {
    color: var(--lime-400);
}

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

.case-card,
.team-card,
.case-detail-card {
    margin: 0;
    padding: 30px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.case-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
}

.case-card__company {
    color: var(--blue-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.case-card blockquote {
    margin: 26px 0;
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 650;
    line-height: 1.5;
}

.case-card figcaption {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    color: var(--muted);
    font-size: 0.9rem;
}

.case-detail-card__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.case-logo-placeholder,
.team-card__avatar {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    background: var(--lime-400);
    font-weight: 800;
    border-radius: 50%;
}

.case-logo-placeholder {
    width: 52px;
    height: 52px;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-card__avatar {
    width: 74px;
    height: 74px;
    font-size: 1.5rem;
}

.team-card h3,
.team-card p {
    margin: 0;
}

.team-card p {
    color: var(--muted);
}

.cta-band {
    padding: clamp(66px, 7vw, 96px) 0;
    color: #d9e4ed;
    background:
        radial-gradient(circle at 85% 50%, rgba(83, 191, 228, 0.18), transparent 28%),
        var(--navy-950);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.cta-band h2 {
    color: #fff;
}

.cta-band p:not(.eyebrow) {
    max-width: 680px;
    margin: 0;
}

.faq-block {
    width: 100%;
}

.faq-block__header {
    margin-bottom: 34px;
}

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

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

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    color: var(--ink);
    font-size: 1.08rem;
    font-weight: 720;
    list-style: none;
    cursor: pointer;
}

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

.faq-item summary span {
    display: inline-flex;
    flex: 0 0 auto;
    transition: transform 180ms ease;
}

.faq-item[open] summary span {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-width: 760px;
    padding: 0 54px 24px 0;
    color: var(--muted);
}

.article-header {
    padding: clamp(72px, 9vw, 120px) 0 clamp(50px, 6vw, 80px);
    background: linear-gradient(145deg, #f6f9fb, #eaf5f7);
}

.article-header h1 {
    max-width: 16ch;
    font-size: clamp(2.4rem, 5vw, 4.65rem);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 17px;
    color: var(--muted);
    font-size: 0.82rem;
}

.article-meta > *:not(:last-child)::after {
    margin-left: 17px;
    color: #a6b4c0;
    content: "/";
}

.article-meta--header {
    margin-top: 30px;
}

.article-layout {
    display: grid;
    align-items: start;
    padding-top: clamp(55px, 8vw, 96px);
    padding-bottom: clamp(76px, 9vw, 125px);
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: clamp(45px, 8vw, 100px);
}

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

.article-aside {
    position: sticky;
    top: 140px;
}

.article-summary,
.article-callout {
    padding: 28px;
    margin: 0 0 42px;
    background: var(--lime-100);
    border-left: 5px solid var(--lime-500);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-summary h2,
.article-callout h2 {
    font-size: 1.4rem;
}

.article-summary ul {
    margin-bottom: 0;
}

.article-footer {
    padding-top: 28px;
    margin-top: 58px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
}

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

.article-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.article-card__image {
    display: block;
    overflow: hidden;
    background: var(--navy-950);
    aspect-ratio: 12 / 7;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.article-card:hover .article-card__image img {
    transform: scale(1.025);
}

.article-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.article-card h2,
.article-card h3 {
    margin-top: 16px;
    font-size: 1.42rem;
}

.article-card h2 a,
.article-card h3 a {
    color: var(--ink);
    text-decoration: none;
}

.article-card__body > p {
    color: var(--muted);
}

.article-card .text-link {
    margin-top: auto;
}

.article-grid--compact .article-card__body {
    padding: 26px;
}

.article-card--compact h3 {
    margin-top: 14px;
}

.prose {
    max-width: 760px;
}

.prose h2 {
    max-width: none;
    margin-top: 1.75em;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.prose h3 {
    margin-top: 1.65em;
}

.prose p,
.prose li {
    color: #40566b;
}

.prose a {
    font-weight: 620;
}

.prose blockquote {
    padding: 2px 0 2px 24px;
    margin: 36px 0;
    color: var(--ink);
    border-left: 4px solid var(--lime-500);
    font-size: 1.25rem;
    font-weight: 620;
}

.prose table {
    width: 100%;
    margin: 32px 0;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.prose th,
.prose td {
    padding: 13px;
    text-align: left;
    border: 1px solid var(--line);
    vertical-align: top;
}

.prose th {
    color: var(--ink);
    background: var(--surface-alt);
}

.contact-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(38px, 7vw, 92px);
}

.contact-intro {
    position: sticky;
    top: 150px;
}

.contact-details,
.footer-contact,
.policy-list {
    padding: 0;
    margin: 30px 0 0;
    list-style: none;
}

.contact-details li,
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-details svg,
.footer-contact svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--lime-500);
}

.form {
    position: relative;
}

.form--panel {
    padding: clamp(26px, 4vw, 45px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

.field {
    min-width: 0;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    color: var(--ink);
    background: #fff;
    border: 1px solid #b9c8d3;
    border-radius: var(--radius-sm);
    outline: 0;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input,
.field select {
    min-height: 52px;
    padding: 0 14px;
}

.field textarea {
    min-height: 150px;
    padding: 13px 14px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(22, 137, 181, 0.13);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: var(--danger);
}

.field small {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.78rem;
}

.field--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-weight: 500;
}

.field--checkbox input {
    width: 20px;
    min-height: 20px;
    flex: 0 0 auto;
    margin-top: 3px;
}

.field-error {
    display: block;
    margin-top: 6px;
    color: var(--danger);
    font-size: 0.82rem;
    font-weight: 650;
}

.form-footer {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 26px;
}

.form-footer p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.form.is-submitting {
    opacity: 0.72;
    pointer-events: none;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.notice {
    padding: 16px 18px;
    margin: 0 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 620;
}

.notice--success {
    color: var(--success);
    background: var(--success-bg);
    border-color: #b9dec0;
}

.notice--error {
    color: var(--danger);
    background: var(--danger-bg);
    border-color: #ebc3c3;
}

.privacy-note,
.legal-warning {
    padding: 20px 24px;
    margin: 28px 0;
    background: var(--surface-alt);
    border-left: 4px solid var(--blue-600);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-copy {
    max-width: 850px;
}

.policy-list li {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.contact-card {
    padding: 28px;
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.contact-card__icon {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--navy-950);
    background: var(--lime-400);
    border-radius: 50%;
}

.contact-card h2 {
    font-size: 1.4rem;
}

.contact-card > a:last-child {
    display: block;
    margin-top: 16px;
    font-weight: 720;
}

.status-page,
.error-page {
    display: flex;
    min-height: 64vh;
    align-items: center;
    padding: 90px 0;
    background: var(--surface-alt);
}

.status-page__inner {
    max-width: 760px;
    padding: clamp(36px, 6vw, 66px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.status-page__icon {
    display: flex;
    width: 68px;
    height: 68px;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--navy-950);
    background: var(--lime-400);
    border-radius: 50%;
}

.site-footer {
    padding: 78px 0 0;
    color: #c8d6e2;
    background: var(--navy-950);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 0.85fr 1.05fr;
    gap: clamp(30px, 5vw, 70px);
}

.site-footer__brand img {
    width: 190px;
}

.site-footer__brand p {
    max-width: 330px;
    margin-top: 24px;
}

.footer-heading {
    margin-bottom: 22px;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-links,
.footer-contact {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a,
.footer-contact a {
    color: #c8d6e2;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.78rem;
}

.site-footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer__bottom a,
.site-footer__bottom button {
    color: #c8d6e2;
}

.cookie-consent {
    position: fixed;
    z-index: 1000;
    inset: 0;
}

.cookie-consent__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 23, 44, 0.62);
    backdrop-filter: blur(4px);
}

.cookie-consent__panel {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(600px, calc(100% - 48px));
    max-height: calc(100vh - 48px);
    padding: clamp(24px, 4vw, 36px);
    overflow-y: auto;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.cookie-consent__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent__header h2 {
    margin-bottom: 14px;
    font-size: 1.75rem;
}

.icon-button {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--surface-alt);
    border: 0;
    border-radius: 50%;
}

.cookie-consent__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.cookie-consent__summary span {
    padding: 7px 11px;
    color: var(--navy-800);
    background: var(--cyan-100);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
}

.cookie-consent__details {
    margin: 23px 0;
    border-top: 1px solid var(--line);
}

.consent-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.consent-option span {
    display: flex;
    flex-direction: column;
}

.consent-option small {
    margin-top: 4px;
    color: var(--muted);
}

.consent-option input {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 1050px) {
    .primary-nav {
        gap: 15px;
    }

    .primary-nav__list {
        gap: 16px;
    }

    .primary-nav__list > li > a,
    .nav-dropdown > a {
        font-size: 0.88rem;
    }

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

    .process-step:nth-child(2)::after {
        display: none;
    }

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

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

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

    .topbar__inner > span {
        display: none;
    }

    .topbar__inner {
        justify-content: flex-end;
    }

    .brand img {
        width: 165px;
    }

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

    .primary-nav {
        position: fixed;
        z-index: 110;
        top: calc(var(--header-height) + 34px);
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 24px 20px 40px;
        overflow-y: auto;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav__list {
        display: block;
        margin-bottom: 26px;
    }

    .primary-nav__list > li {
        border-bottom: 1px solid var(--line);
    }

    .primary-nav__list > li > a,
    .nav-dropdown > a {
        padding: 17px 0;
        font-size: 1rem;
    }

    .primary-nav__list > li > a::after,
    .nav-dropdown > a::after {
        bottom: 9px;
    }

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

    .nav-dropdown__toggle {
        width: 44px;
        height: 44px;
        margin-left: 0;
    }

    .nav-dropdown__panel {
        position: static;
        display: none;
        width: auto;
        padding: 0 0 18px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown:hover .nav-dropdown__panel,
    .nav-dropdown:focus-within .nav-dropdown__panel {
        display: none;
    }

    .nav-dropdown.is-open .nav-dropdown__panel {
        display: grid;
    }

    .nav-dropdown__intro {
        display: none;
    }

    .nav-dropdown__panel ul {
        grid-template-columns: 1fr;
    }

    .nav-dropdown__panel li a {
        padding: 10px 14px;
        background: var(--surface-alt);
    }

    .page-hero__grid,
    .split,
    .intro-grid,
    .contact-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .page-hero__visual,
    .page-hero__grid > img {
        max-width: 640px;
        margin-inline: auto;
    }

    .split--image-left .split__visual {
        order: 0;
    }

    .contact-intro,
    .article-aside {
        position: static;
    }

    .article-aside {
        max-width: 520px;
    }

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

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

@media (max-width: 660px) {
    body {
        font-size: 16px;
    }

    .container,
    .container--narrow {
        width: min(calc(100% - 28px), var(--container));
    }

    .topbar__inner {
        min-height: 30px;
    }

    .primary-nav {
        top: calc(var(--header-height) + 30px);
    }

    .page-hero {
        padding-top: 65px;
    }

    .page-hero__visual,
    .page-hero__grid > img {
        max-height: 340px;
    }

    .hero-points,
    .card-grid--2,
    .card-grid--3,
    .card-grid--4,
    .process-steps,
    .metric-grid,
    .case-grid,
    .team-grid,
    .case-detail-grid,
    .article-grid,
    .form-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .process-step::after {
        display: none;
    }

    .metric:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .split__visual {
        min-height: 290px;
        padding: 22px;
    }

    .field--full {
        grid-column: auto;
    }

    .form-footer,
    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__bottom nav {
        flex-direction: column;
        gap: 8px;
    }

    .article-meta > *:not(:last-child)::after {
        display: none;
    }

    .cookie-consent__panel {
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
    }

    .cookie-consent__actions .button {
        width: 100%;
    }
}

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

@media print {
    .site-header,
    .site-footer,
    .cookie-consent,
    .button-row,
    .article-aside,
    .cta-band {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    a {
        color: #000;
    }

    .section,
    .article-layout {
        padding: 20px 0;
    }
}

@media (max-width: 900px) {
    .no-js .nav-toggle {
        display: none;
    }

    .no-js .nav-shell {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 18px;
    }

    .no-js .primary-nav {
        position: static;
        display: block;
        width: 100%;
        padding: 0;
        overflow: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .no-js .nav-dropdown {
        display: block;
    }

    .no-js .nav-dropdown__toggle,
    .no-js .nav-dropdown__panel {
        display: none;
    }
}

/* Pellaton brand alignment, based on the current Pellaton visual identity */
:root {
    --brand-navy: #10283f;
    --brand-navy-deep: #0c2238;
    --brand-lime: #99c941;
    --brand-cyan: #5ec6e8;
    --brand-white: #ffffff;
}

.site-header--brand {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 120;
    color: #fff;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}

.site-header--brand.is-scrolled {
    position: fixed;
    background: rgba(12, 34, 56, 0.97);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(10px);
}

.nav-shell--centered {
    min-height: 104px;
}

.primary-nav--split {
    display: grid;
    width: 100%;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(28px, 4vw, 58px);
}

.primary-nav__list--left {
    justify-content: flex-end;
}

.primary-nav__list--right {
    justify-content: flex-start;
}

.brand--center img {
    width: 176px;
    height: auto;
}

.site-header--brand .primary-nav__list > li > a,
.site-header--brand .nav-dropdown > a,
.site-header--brand .nav-dropdown__toggle {
    color: #fff;
}

.site-header--brand .primary-nav__list > li > a,
.site-header--brand .nav-dropdown > a {
    padding: 35px 0 31px;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-header--brand .primary-nav__list > li > a::after,
.site-header--brand .nav-dropdown > a::after {
    bottom: 21px;
    background: var(--brand-lime);
}

.site-header--brand .nav-toggle {
    margin-left: auto;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.home-hero {
    position: relative;
    display: flex;
    min-height: min(830px, 100svh);
    align-items: center;
    overflow: hidden;
    padding: 145px 0 215px;
    color: #fff;
    background: var(--brand-navy);
    isolation: isolate;
}

.home-hero::before {
    position: absolute;
    inset: 0;
    z-index: -3;
    content: "";
    background: linear-gradient(180deg, rgba(7, 27, 44, 0.06), rgba(7, 27, 44, 0.22));
}

.home-hero__inner {
    position: relative;
    z-index: 3;
    display: flex;
    max-width: 980px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-hero__eyebrow {
    margin: 0 0 16px;
    color: rgba(255,255,255,.78);
    font-size: .82rem;
    font-weight: 760;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 13ch;
    margin: 0 auto;
    color: var(--brand-lime);
    font-size: clamp(4rem, 9vw, 8.4rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.home-hero__lead {
    max-width: 710px;
    margin: 28px auto 0;
    color: rgba(255,255,255,.88);
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.65;
}

.home-hero__points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    padding: 0;
    margin: 23px 0 0;
    color: rgba(255,255,255,.72);
    list-style: none;
    font-size: .84rem;
    font-weight: 700;
}

.home-hero__points li:not(:last-child)::after {
    margin-left: 22px;
    color: var(--brand-cyan);
    content: "/";
}

.home-hero__actions {
    justify-content: center;
    margin-top: 30px;
}

.button--brand-light {
    color: var(--brand-navy-deep);
    background: var(--brand-lime);
    border-color: var(--brand-lime);
}

.button--brand-light:hover {
    color: var(--brand-navy-deep);
    background: #abd75a;
    border-color: #abd75a;
}

.home-hero__orb {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    background: var(--brand-lime);
}

.home-hero__orb--top {
    top: -275px;
    right: -190px;
    width: 500px;
    height: 500px;
    border-radius: 48% 52% 54% 46% / 43% 44% 56% 57%;
    transform: rotate(16deg);
}

.home-hero__orb--bottom {
    bottom: -360px;
    left: -300px;
    width: 620px;
    height: 620px;
    opacity: .95;
    border-radius: 45% 55% 50% 50% / 58% 46% 54% 42%;
    transform: rotate(-18deg);
}

.home-hero__cityline {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: -2px;
    left: 0;
    width: 100%;
    max-width: none;
    height: auto;
    pointer-events: none;
}

.page-hero {
    padding-top: clamp(150px, 15vw, 190px);
    background: linear-gradient(180deg, var(--brand-navy) 0 58%, #f5f7f8 58% 100%);
}

.page-hero::after {
    border-color: rgba(153, 201, 65, 0.22);
}

.page-hero__content {
    padding-bottom: 65px;
}

.page-hero__content h1,
.page-hero__content .lead,
.page-hero__content .hero-points li {
    color: #fff;
}

.page-hero__content .eyebrow {
    color: var(--brand-cyan);
}

.page-hero__visual {
    align-self: end;
    padding-top: 65px;
}

.page-hero__visual::before {
    background: rgba(153, 201, 65, 0.13);
}

.team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.team-card {
    display: block;
    overflow: hidden;
    padding: 0;
    background: var(--brand-navy);
    border: 0;
    border-radius: 3px;
    box-shadow: none;
}

.team-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 4.8;
    background: #e9eef1;
}

.team-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.92) contrast(1.02);
    transition: transform 320ms ease;
}

.team-card:hover .team-card__media img {
    transform: scale(1.025);
}

.team-card__body {
    padding: 19px 22px 22px;
}

.team-card h3 {
    margin: 0 0 3px;
    color: #fff;
    font-size: 1.35rem;
}

.team-card p {
    margin: 0;
    color: rgba(255,255,255,.67);
    font-size: .94rem;
}

.team-card__avatar {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--brand-lime);
    background:
        radial-gradient(circle at 70% 20%, rgba(94,198,232,.28), transparent 32%),
        var(--brand-navy-deep);
    border-radius: 0;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 800;
}

.section--muted {
    background: #f1f3f4;
}

.info-card {
    border-radius: 2px;
    box-shadow: none;
}

.info-card:hover {
    border-color: rgba(94, 198, 232, .75);
    box-shadow: 0 16px 35px rgba(16, 40, 63, .08);
}

.site-footer {
    background: var(--brand-navy-deep);
}

@media (max-width: 1080px) {
    .primary-nav--split {
        display: flex;
        justify-content: flex-end;
    }

    .brand--center {
        position: absolute;
        left: 20px;
    }

    .primary-nav__list--left,
    .primary-nav__list--right {
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .site-header--brand {
        position: absolute;
    }

    .nav-shell--centered {
        min-height: 82px;
    }

    .brand--center {
        position: static;
        order: -1;
        margin-right: auto;
    }

    .brand--center img {
        width: 145px;
    }

    .primary-nav--split {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        display: none;
        width: min(420px, 100%);
        padding: 100px 28px 34px;
        overflow-y: auto;
        background: var(--brand-navy-deep);
        grid-template-columns: 1fr;
    }

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

    .primary-nav__list--left,
    .primary-nav__list--right {
        display: block;
    }

    .site-header--brand .primary-nav__list > li > a,
    .site-header--brand .nav-dropdown > a {
        padding: 14px 0;
        font-size: 1.05rem;
    }

    .home-hero {
        min-height: 760px;
        padding-top: 135px;
        padding-bottom: 185px;
    }

    .home-hero__orb--top {
        top: -180px;
        right: -210px;
        width: 380px;
        height: 380px;
    }

    .home-hero__orb--bottom {
        display: none;
    }
}

@media (max-width: 680px) {
    .home-hero {
        min-height: 700px;
        padding-bottom: 150px;
    }

    .home-hero h1 {
        font-size: clamp(3.35rem, 18vw, 5.25rem);
    }

    .home-hero__lead {
        font-size: 1rem;
    }

    .home-hero__points {
        display: none;
    }

    .home-hero__actions {
        flex-direction: column;
        width: min(330px, 100%);
    }

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

    .home-hero__cityline {
        width: 190%;
        max-width: none;
        transform: translateX(-25%);
    }

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

.brand--mobile {
    display: none;
}

@media (max-width: 900px) {
    .brand--mobile {
        display: inline-flex;
        margin-right: auto;
    }

    .brand--mobile img {
        width: 145px;
        height: auto;
    }

    .primary-nav--split .brand--center {
        display: none;
    }
}

/* 2026-09 visual refinement based on the supplied Pellaton reference */
:root {
    --navy-950: #111820;
    --navy-900: #17222c;
    --navy-800: #22313c;
    --navy-700: #344854;
    --blue-600: #1b9cd9;
    --cyan-500: #1b9cd9;
    --cyan-100: #eaf7fd;
    --lime-500: #8ebc3f;
    --lime-400: #9cc94e;
    --lime-100: #f3f8e9;
    --ink: #171717;
    --text: #343434;
    --muted: #686868;
    --line: #e5e5e5;
    --surface-alt: #fafafa;
    --surface-navy: #111820;
    --brand-navy: #111820;
    --brand-navy-deep: #0f151b;
    --brand-cyan: #1b9cd9;
    --brand-lime: #8ebc3f;
    --container: 1100px;
    --container-narrow: 760px;
    --header-height: 74px;
}

body {
    font-size: 15.5px;
    line-height: 1.62;
}

h1,h2,h3,h4 {
    letter-spacing: -0.02em;
    line-height: 1.12;
}

h1 { font-size: clamp(2.45rem, 5vw, 4.6rem); max-width: 15ch; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.75rem); max-width: 21ch; }
h3 { font-size: clamp(1.12rem, 1.7vw, 1.38rem); }

.lead { font-size: clamp(1.04rem, 1.6vw, 1.25rem); line-height: 1.55; }
.lead-small,.lead-copy { font-size: 1.03rem; line-height: 1.65; }

.section { padding-block: clamp(58px, 7vw, 86px); }
.section--intro { padding-top: clamp(54px, 6vw, 76px); }
.section-heading { margin-bottom: clamp(28px, 4vw, 42px); }
.section-heading > p:last-child { max-width: 700px; }

.eyebrow {
    color: var(--brand-cyan);
    font-size: .74rem;
    letter-spacing: .09em;
}
.eyebrow::before { width: 26px; height: 2px; background: var(--brand-cyan); }

.button {
    min-height: 46px;
    padding: 12px 20px;
    color: #fff;
    background: var(--brand-cyan);
    border-color: var(--brand-cyan);
    border-radius: 0;
    font-size: .9rem;
}
.button:hover { color:#fff; background:#1688bd; border-color:#1688bd; }
.button--secondary { color: var(--ink); background:#fff; border-color:#cfcfcf; }
.button--secondary:hover { color:#fff; background:var(--brand-cyan); border-color:var(--brand-cyan); }

.site-header--brand.is-scrolled { background: rgba(17,24,32,.97); }
.nav-shell--centered { min-height: 78px; }
.brand--center img { width: 144px; }
.site-header--brand .primary-nav__list > li > a,
.site-header--brand .nav-dropdown > a { padding: 27px 0 24px; font-size:.78rem; }
.site-header--brand .primary-nav__list > li > a::after,
.site-header--brand .nav-dropdown > a::after { bottom: 16px; background: var(--brand-cyan); }

.home-hero {
    min-height: 650px;
    padding: 128px 0 100px;
    background: linear-gradient(90deg, rgba(12,16,21,.9), rgba(12,16,21,.55)), var(--brand-navy);
}
.home-hero::before { background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.2)); }
.home-hero__inner { align-items:flex-start; max-width: 1100px; text-align:left; }
.home-hero__eyebrow { margin-bottom: 12px; font-size:.72rem; letter-spacing:.04em; text-transform:none; }
.home-hero h1 {
    max-width: 8.4ch;
    margin:0;
    color:#fff;
    font-size: clamp(3.3rem, 7.2vw, 6.6rem);
    line-height:.98;
    letter-spacing:-.045em;
    text-transform:none;
}
.home-hero__lead { max-width:580px; margin:20px 0 0; color:rgba(255,255,255,.88); font-size:1.02rem; }
.home-hero__points { justify-content:flex-start; margin-top:18px; font-size:.78rem; }
.home-hero__points li:not(:last-child)::after { color: var(--brand-cyan); }
.home-hero__actions { justify-content:flex-start; margin-top:24px; }
.button--brand-light { color:#fff; background:var(--brand-cyan); border-color:var(--brand-cyan); }
.button--brand-light:hover { color:#fff; background:#1688bd; border-color:#1688bd; }
.home-hero__orb { display:none; }
.home-hero__cityline { opacity:.14; filter:hue-rotate(0deg) saturate(.7); }

.page-hero { padding: clamp(120px, 14vw, 165px) 0 clamp(62px, 8vw, 92px); background:#f7f7f7; }
.page-hero::after { background: var(--brand-cyan); }
.page-hero h1 { max-width: 14ch; }
.page-hero__visual::before { background: var(--cyan-100); }

.info-card { padding: clamp(24px,3vw,32px); border-radius:0; box-shadow:none; border-color:#ededed; }
.info-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.06); }
.info-card__icon { color:var(--brand-cyan); background:transparent; }

.split { gap: clamp(42px,6vw,76px); }
.split__visual { border-radius:0; }

.site-footer { background:#f4f8fa; color:#222; }
.site-footer a,.site-footer p,.site-footer li,.footer-heading { color:#222; }
.site-footer .text-link--light { color:var(--brand-cyan); }
.site-footer__bottom { border-top-color:#dfe7eb; }

.content-depth { border-top:1px solid var(--line); }
.content-depth__intro { max-width:760px; margin-bottom:34px; }
.content-depth__grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:0; border-top:1px solid var(--line); }
.content-depth__item { padding:32px 36px 32px 0; border-bottom:1px solid var(--line); }
.content-depth__item:nth-child(even) { padding-left:36px; padding-right:0; border-left:1px solid var(--line); }
.content-depth__item h3 { margin-bottom:10px; }
.content-depth__item p { margin-bottom:.8em; }
.content-depth__item ul { padding-left:1.2rem; margin-bottom:0; }
.content-depth__item li + li { margin-top:.35rem; }

@media (max-width: 820px) {
    body { font-size:15px; }
    .home-hero { min-height:560px; padding:108px 0 72px; }
    .home-hero h1 { font-size:clamp(3rem,14vw,5rem); }
    .content-depth__grid { grid-template-columns:1fr; }
    .content-depth__item,.content-depth__item:nth-child(even) { padding:26px 0; border-left:0; }
}

/* ========================================================================== 
   Pellaton visual refinement - light inner pages, corrected color palette,
   button styling and typography balance based on supplied screenshots.
   ========================================================================== */
:root {
    --brand-navy: #101820;
    --brand-navy-deep: #0b141d;
    --brand-cyan: #18a0d8;
    --brand-cyan-dark: #1289bc;
    --brand-cyan-soft: #dff3fb;
    --brand-lime: #a0d058;
    --brand-lime-soft: #eef6dd;
    --surface: #ffffff;
    --surface-alt: #f1f3f4;
    --line: #dde3e8;
    --ink: #17232f;
    --text: #495866;
    --muted: #6b7783;
}

body {
    color: var(--text);
    background: #f6f7f8;
    font-size: 16px;
    line-height: 1.72;
}

h1,
.page-hero__content h1 {
    max-width: 10.5ch;
    color: var(--ink);
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 760;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 3.3vw, 3rem);
    line-height: 1.08;
}

h3 {
    font-size: clamp(1.15rem, 1.75vw, 1.45rem);
    line-height: 1.24;
}

p,
li {
    color: var(--text);
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--brand-cyan);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    background: var(--brand-cyan);
}

.lead {
    max-width: 560px;
    margin-bottom: 30px;
    color: #71808d;
    font-size: clamp(1rem, 1.5vw, 1.12rem);
    line-height: 1.72;
}

.lead-copy,
.lead-small,
.section-heading > p:last-child,
.info-card p,
.prose p,
.prose li,
.faq-item__answer,
.case-card figcaption,
.team-card p,
.article-card__body > p {
    color: #647482;
}

.section {
    padding: clamp(60px, 8vw, 100px) 0;
}

.section--muted {
    background: #f1f3f4;
}

.button-row {
    gap: 10px;
}

.button {
    min-height: 42px;
    padding: 10px 18px;
    color: #ffffff;
    background: var(--brand-cyan);
    border: 1px solid var(--brand-cyan);
    border-radius: 2px;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    box-shadow: none;
}

.button:hover {
    color: #ffffff;
    background: var(--brand-cyan-dark);
    border-color: var(--brand-cyan-dark);
    transform: none;
}

.button--secondary,
.button--ghost-dark {
    color: var(--ink);
    background: #ffffff;
    border-color: #cfd6dc;
}

.button--secondary:hover,
.button--ghost-dark:hover {
    color: var(--ink);
    background: #f6f8f9;
    border-color: #bbc6cf;
}

.button--light {
    color: #ffffff;
    background: var(--brand-cyan);
    border-color: var(--brand-cyan);
}

.button--light:hover {
    background: var(--brand-cyan-dark);
    border-color: var(--brand-cyan-dark);
}

.button--outline-light {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255,255,255,0.5);
}

.button--outline-light:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.75);
}

.text-link,
.case-card__company,
.contact-card > a:last-child {
    color: var(--brand-cyan);
}

.primary-nav__list > li > a::after,
.nav-dropdown > a::after,
.site-header--brand .primary-nav__list > li > a::after,
.site-header--brand .nav-dropdown > a::after {
    background: var(--brand-cyan);
}

.nav-dropdown__intro {
    background: linear-gradient(180deg, #152330 0%, #0f1a24 100%);
}

.nav-dropdown__panel li a:hover {
    color: var(--ink);
    background: #eef5f8;
}

.breadcrumbs {
    background: #eef1f3;
}

.page-hero {
    position: relative;
    padding-top: clamp(120px, 12vw, 156px);
    padding-bottom: clamp(52px, 8vw, 90px);
    background:
        radial-gradient(circle at 78% 28%, rgba(24, 160, 216, 0.08), transparent 18%),
        linear-gradient(180deg, #f2f4f5 0%, #f2f4f5 100%);
}

.page-hero::before {
    position: absolute;
    right: -40px;
    bottom: -90px;
    width: 255px;
    height: 255px;
    content: "";
    background:
        radial-gradient(circle, transparent 0 42px, rgba(24,160,216,0.92) 42px 82px, rgba(11,115,176,0.98) 82px 118px, transparent 118px);
    border-radius: 50%;
}

.page-hero::after {
    right: auto;
    left: auto;
    width: 0;
    height: 0;
    border: 0;
    content: none;
}

.page-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: clamp(32px, 5vw, 72px);
}

.page-hero__content {
    padding-bottom: 0;
}

.page-hero__content h1,
.page-hero__content .lead,
.page-hero__content .hero-points li {
    color: var(--ink);
}

.page-hero__content .lead {
    color: #8895a1;
}

.page-hero__content .eyebrow {
    color: var(--brand-cyan);
}

.page-hero__visual {
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.page-hero__visual::before {
    top: 14%;
    right: 10%;
    width: 68%;
    background: rgba(196, 228, 242, 0.75);
}

.page-hero__image {
    width: 100%;
    max-width: 420px;
    max-height: 370px;
}

.hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 16px;
    margin-bottom: 28px;
}

.hero-points li,
.check-list li {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-points svg,
.check-list svg,
.contact-details svg,
.footer-contact svg,
.contact-card__icon,
.info-card__icon {
    color: var(--brand-cyan);
}

.intro-grid {
    align-items: start;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.card-grid {
    gap: 16px;
}

.info-card {
    padding: 26px 22px 24px;
    background: #ffffff;
    border: 1px solid #e3e8ec;
    border-radius: 0;
    box-shadow: none;
}

.info-card:hover {
    border-color: #d2dbe2;
    box-shadow: none;
    transform: none;
}

.info-card__icon {
    width: auto;
    height: auto;
    margin-bottom: 18px;
    background: none;
    border-radius: 0;
}

.info-card h3 {
    margin-bottom: 10px;
}

.process-steps {
    gap: 12px;
}

.process-step {
    padding: 22px 18px 20px;
    background: #ffffff;
    border: 1px solid #dfe5ea;
    border-radius: 4px;
}

.process-step::before {
    position: absolute;
    top: -1px;
    left: 18px;
    width: 44px;
    height: 2px;
    content: "";
    background: var(--brand-lime);
}

.process-step__number {
    margin-bottom: 18px;
    color: var(--brand-cyan);
    font-size: 2rem;
}

.process-step:not(:last-child)::after {
    top: 23px;
    right: -7px;
    width: 14px;
    background: var(--brand-lime);
}

.split__visual {
    min-height: 300px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e1e6ea;
    border-radius: 0;
    box-shadow: none;
}

.faq-item summary {
    padding: 20px 0;
    font-size: 1rem;
}

.cta-band {
    color: #d7e4eb;
    background:
        radial-gradient(circle at 78% 50%, rgba(24, 160, 216, 0.28), transparent 18%),
        linear-gradient(90deg, #07131f 0%, #0d1c29 55%, #08111a 100%);
}

.cta-band h2,
.cta-band p,
.eyebrow--light {
    color: #ffffff;
}

.eyebrow--light::before {
    background: var(--brand-cyan);
}

.site-footer {
    padding-top: 64px;
    color: #667683;
    background: #eceff1;
}

.site-footer__grid {
    gap: clamp(28px, 5vw, 54px);
}

.site-footer__brand p,
.footer-links a,
.footer-contact a,
.footer-contact span,
.site-footer__bottom,
.site-footer__bottom a,
.site-footer__bottom button {
    color: #667683;
}

.footer-heading {
    color: var(--ink);
}

.footer-links a:hover,
.footer-contact a:hover,
.site-footer__bottom a:hover,
.site-footer__bottom button:hover,
.site-footer .text-link:hover {
    color: var(--brand-cyan);
}

.site-footer__bottom {
    border-top: 1px solid #d8dfe4;
}

.text-link--light {
    color: var(--brand-cyan);
}

.text-link--light:hover {
    color: var(--brand-cyan-dark);
}

@media (max-width: 900px) {
    .page-hero {
        padding-top: 108px;
        padding-bottom: 56px;
    }

    .page-hero::before {
        right: -70px;
        bottom: -70px;
        width: 200px;
        height: 200px;
    }

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

    .page-hero__visual {
        padding-top: 10px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding-top: 50px;
    }
}

/* Header refinement for light inner pages */
.brand__logo--dark {
    display: none;
}

body:not(.page-home) .site-header--brand {
    position: absolute;
    background: transparent;
}

body:not(.page-home) .site-header--brand .brand__logo--light {
    display: none;
}

body:not(.page-home) .site-header--brand .brand__logo--dark {
    display: block;
}

body:not(.page-home) .site-header--brand .primary-nav__list > li > a,
body:not(.page-home) .site-header--brand .nav-dropdown > a,
body:not(.page-home) .site-header--brand .nav-dropdown__toggle {
    color: var(--ink);
}

body:not(.page-home) .site-header--brand .nav-toggle {
    color: var(--ink);
    background: rgba(255,255,255,0.92);
    border: 1px solid #d7dfe5;
}

body:not(.page-home) .site-header--brand.is-scrolled {
    background: rgba(255,255,255,0.96);
    box-shadow: 0 8px 26px rgba(16, 24, 32, 0.08);
}

body:not(.page-home) .site-header--brand.is-scrolled .primary-nav__list > li > a,
body:not(.page-home) .site-header--brand.is-scrolled .nav-dropdown > a,
body:not(.page-home) .site-header--brand.is-scrolled .nav-dropdown__toggle {
    color: var(--ink);
}

@media (max-width: 900px) {
    body:not(.page-home) .site-header--brand .primary-nav--split {
        background: #ffffff;
    }

    body:not(.page-home) .site-header--brand .primary-nav__list > li > a,
    body:not(.page-home) .site-header--brand .nav-dropdown > a,
    body:not(.page-home) .site-header--brand .nav-dropdown__toggle {
        color: var(--ink);
    }

    body:not(.page-home) .site-header--brand .nav-dropdown__panel li a {
        background: #f3f6f8;
    }
}

/* Current Pellaton photography and customer stories */
.photo-story {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
    gap: clamp(38px, 7vw, 92px);
}

.photo-story--reverse .photo-story__media {
    order: 2;
}

.photo-story__media {
    overflow: hidden;
    background: #e8ecef;
    aspect-ratio: 3 / 2;
}

.photo-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-story__content {
    max-width: 560px;
}

.photo-story__text p:last-child {
    margin-bottom: 24px;
}

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

.customer-story-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e6ea;
}

.customer-story-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e8ecef;
    aspect-ratio: 4 / 3;
}

.customer-story-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.customer-story-card:hover .customer-story-card__media img {
    transform: scale(1.025);
}

.customer-story-card__name {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 13px 16px;
    color: #fff;
    background: linear-gradient(180deg, transparent, rgba(8, 18, 27, .82));
    font-size: 1rem;
    font-weight: 750;
}

.customer-story-card__body {
    padding: 22px 22px 24px;
}

.customer-story-card blockquote {
    min-height: 5em;
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 650;
    line-height: 1.5;
}

.customer-story-card__body > p {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: .86rem;
}

.customer-story-card__body > p strong {
    color: var(--ink);
}

.case-story-copy {
    max-width: 850px;
}

.case-story-quote {
    margin: 32px 0;
    padding-left: 26px;
    color: var(--ink);
    border-left: 3px solid var(--brand-cyan);
    font-size: clamp(1.25rem, 2.4vw, 1.8rem);
    font-weight: 580;
    line-height: 1.55;
}

.case-story-author {
    display: flex;
    flex-direction: column;
    color: var(--muted);
}

.case-story-author strong {
    color: var(--ink);
}

.page-case-yourfellow .page-hero__image,
.page-case-ultimate-sign .page-hero__image,
.page-case-mast-have .page-hero__image,
.page-cases .page-hero__image {
    width: min(100%, 430px);
    height: 330px;
    max-height: none;
    object-fit: cover;
}

.partner-strip-section {
    padding-top: 48px;
    padding-bottom: 68px;
}

.partner-strip-section .container {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(36px, 6vw, 80px);
}

.partner-strip-copy h2 {
    margin-bottom: 16px;
}

.partner-strip-media {
    padding: 24px 30px;
    background: #fff;
    border: 1px solid #e1e6ea;
}

.partner-strip-media img {
    width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .photo-story,
    .partner-strip-section .container {
        grid-template-columns: 1fr;
    }

    .photo-story--reverse .photo-story__media {
        order: 0;
    }

    .customer-story-grid {
        grid-template-columns: 1fr;
    }

    .customer-story-card blockquote {
        min-height: 0;
    }
}

/* Final header and breadcrumb correction */
body:not(.page-home) .site-header--brand {
    position: sticky;
    top: 0;
    z-index: 120;
    background: #ffffff;
    border-bottom: 1px solid #e0e5e9;
    box-shadow: none;
}

body:not(.page-home) .site-header--brand.is-scrolled {
    position: sticky;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 24px rgba(16,24,32,0.06);
}

body:not(.page-home) .breadcrumbs {
    position: relative;
    z-index: 2;
    margin: 0;
    background: #f3f5f6;
    border-top: 0;
    border-bottom: 1px solid #dde3e8;
}

body:not(.page-home) .breadcrumbs ol {
    min-height: 42px;
    padding-top: 10px;
    padding-bottom: 10px;
}

body:not(.page-home) .page-hero {
    padding-top: clamp(58px, 7vw, 88px);
}

.page-hero__image--photo {
    width: min(100%, 520px);
    height: clamp(280px, 31vw, 420px);
    max-width: 520px;
    max-height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
}

body:not(.page-home) .brand__logo--dark {
    width: 176px;
    height: auto;
    object-fit: contain;
}

.site-footer__brand img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 900px) {
    body:not(.page-home) .site-header--brand {
        position: sticky;
    }

    body:not(.page-home) .page-hero {
        padding-top: 48px;
    }

    .page-hero__image--photo {
        height: min(68vw, 380px);
    }
}

/* Expanded step plans and customer references */
.process-section {
    background: #ffffff;
}

.process-section.section--muted {
    background: var(--surface-alt);
}

.process-steps--detailed {
    align-items: stretch;
}

.process-step__content {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.process-step__details {
    display: grid;
    padding: 0;
    margin: 14px 0 0;
    list-style: none;
    gap: 8px;
}

.process-step__details li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.process-step__details svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--brand-cyan, var(--blue-600));
}

.process-step__result {
    display: grid;
    padding-top: 14px;
    margin: auto 0 0;
    border-top: 1px solid var(--line);
    gap: 3px;
}

.process-step__result strong {
    color: var(--brand-cyan, var(--blue-600));
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-step__result span {
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.45;
}

.customer-stories-section .section-heading {
    max-width: 690px;
}

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

.customer-story-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
}

.customer-story-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e9eef1;
    aspect-ratio: 16 / 9;
}

.customer-story-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.customer-story-card:hover .customer-story-card__media img {
    transform: scale(1.025);
}

.customer-story-card__name {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
    padding: 6px 9px;
    color: #ffffff;
    background: rgba(8, 20, 30, 0.84);
    font-size: 0.72rem;
    font-weight: 800;
}

.customer-story-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.customer-story-card blockquote {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 650;
    line-height: 1.5;
}

.customer-story-card__body > p {
    display: flex;
    flex-direction: column;
    margin: auto 0 18px;
    color: var(--muted);
    font-size: 0.82rem;
}

.customer-story-card__body > p strong {
    color: var(--ink);
}

@media (max-width: 900px) {
    .customer-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 660px) {
    .customer-story-grid {
        grid-template-columns: 1fr;
    }
}

.process-steps--detailed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.process-steps--detailed .process-step:not(:last-child)::after {
    display: none;
}

@media (max-width: 960px) {
    .process-steps--detailed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 660px) {
    .process-steps--detailed {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================== 
   FINAL PELLATON LAYOUT OVERRIDES - 2026-09-03
   Uses the existing Pellaton wordmark and photography from the current site.
   ========================================================================== */
:root {
    --pellaton-blue: #159ed5;
    --pellaton-blue-dark: #0b7fb5;
    --pellaton-navy: #111d28;
    --pellaton-navy-2: #0b1620;
    --pellaton-green: #9dce48;
    --pellaton-bg: #ffffff;
    --pellaton-bg-soft: #f2f5f7;
    --pellaton-line: #dce4ea;
    --pellaton-ink: #182633;
    --pellaton-text: #526474;
}

body {
    color: var(--pellaton-text);
    background: var(--pellaton-bg);
    font-size: 16px;
    line-height: 1.68;
}

h1,
h2,
h3,
h4 {
    color: var(--pellaton-ink);
    letter-spacing: -0.025em;
}

h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 5vw, 4.65rem);
    line-height: 1.02;
}

h2 {
    max-width: 16ch;
    font-size: clamp(1.9rem, 3.2vw, 2.85rem);
    line-height: 1.08;
}

h3 {
    font-size: clamp(1.1rem, 1.6vw, 1.38rem);
    line-height: 1.26;
}

p,
li {
    color: var(--pellaton-text);
}

.container {
    width: min(calc(100% - 48px), 1160px);
}

.section {
    padding: clamp(62px, 7.5vw, 104px) 0;
}

.section--muted {
    background: var(--pellaton-bg-soft);
}

.eyebrow {
    gap: 8px;
    margin-bottom: 15px;
    color: var(--pellaton-blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.eyebrow::before {
    width: 26px;
    height: 2px;
    background: var(--pellaton-blue);
}

.lead {
    max-width: 630px;
    color: #677a89;
    font-size: clamp(1.02rem, 1.55vw, 1.18rem);
    line-height: 1.65;
}

/* Header */
.site-header--brand,
body:not(.page-home) .site-header--brand {
    position: sticky;
    top: 0;
    z-index: 120;
    color: var(--pellaton-ink);
    background: rgba(255,255,255,0.985);
    border-bottom: 1px solid var(--pellaton-line);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

body.page-home .site-header--brand {
    position: absolute;
    color: #fff;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}

body.page-home .site-header--brand.is-scrolled {
    position: fixed;
    color: #fff;
    background: rgba(12,26,38,0.97);
    box-shadow: 0 8px 28px rgba(0,0,0,.14);
    backdrop-filter: blur(10px);
}

.nav-shell--centered {
    min-height: 82px;
}

.primary-nav--split {
    display: grid;
    width: 100%;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: clamp(22px, 3vw, 44px);
}

.primary-nav__list {
    gap: clamp(17px, 2.2vw, 32px);
}

.primary-nav__list--left { justify-content: flex-end; }
.primary-nav__list--right { justify-content: flex-start; }

.primary-nav__list > li > a,
.nav-dropdown__label > a,
.site-header--brand .primary-nav__list > li > a,
.site-header--brand .nav-dropdown__label > a {
    position: relative;
    display: block;
    padding: 29px 0 25px;
    color: var(--pellaton-ink);
    font-size: 0.9rem;
    font-weight: 720;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

body.page-home .site-header--brand .primary-nav__list > li > a,
body.page-home .site-header--brand .nav-dropdown__label > a,
body.page-home .site-header--brand .nav-dropdown__toggle {
    color: #fff;
}

.primary-nav__list > li > a::after,
.nav-dropdown__label > a::after {
    position: absolute;
    right: 0;
    bottom: 16px;
    left: 0;
    height: 3px;
    content: "";
    background: var(--pellaton-blue);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
}

.primary-nav__list > li > a:hover::after,
.primary-nav__list > li > a.is-active::after,
.nav-dropdown__label > a:hover::after,
.nav-dropdown__label > a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-dropdown {
    position: relative;
    display: block;
}

.nav-dropdown__label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown__toggle {
    display: inline-flex;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: var(--pellaton-ink);
    background: transparent;
    border: 0;
}

.nav-dropdown__panel {
    top: calc(100% - 2px);
    right: -150px;
    border: 1px solid var(--pellaton-line);
    border-radius: 6px;
    box-shadow: 0 22px 55px rgba(15,31,45,.13);
}

.brand--center,
.brand--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brand__logo {
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    object-fit: contain;
}

.brand--center .brand__logo--dark { width: 148px !important; }
.brand--center .brand__logo--light { width: 150px !important; }
.brand--mobile .brand__logo--dark { width: 132px !important; }
.brand--mobile .brand__logo--light { width: 136px !important; }

body.page-home .brand__logo--dark { display: none !important; }
body.page-home .brand__logo--light { display: block !important; }
body:not(.page-home) .brand__logo--light { display: none !important; }
body:not(.page-home) .brand__logo--dark { display: block !important; }

/* Breadcrumbs */
body:not(.page-home) .breadcrumbs {
    position: relative;
    z-index: 2;
    margin: 0;
    background: #f4f6f8;
    border-top: 0;
    border-bottom: 1px solid var(--pellaton-line);
}

body:not(.page-home) .breadcrumbs ol {
    min-height: 50px;
    padding: 13px 0;
    font-size: 0.84rem;
}

body:not(.page-home) .breadcrumbs a { color: #6f7f8d; }
body:not(.page-home) .breadcrumbs [aria-current="page"] { color: var(--pellaton-ink); }

/* Page hero */
.page-hero {
    padding-top: clamp(58px, 6vw, 86px);
    padding-bottom: clamp(58px, 7vw, 96px);
    background: linear-gradient(180deg, #f5f7f8 0%, #f5f7f8 100%);
}

.page-hero::before,
.page-hero::after {
    pointer-events: none;
}

.page-hero__grid {
    align-items: center;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, .96fr);
    gap: clamp(42px, 7vw, 92px);
}

.page-hero__content {
    padding-bottom: 0;
}

.page-hero__content h1,
.page-hero__content .lead,
.page-hero__content .hero-points li {
    color: var(--pellaton-ink);
}

.page-hero__content .lead { color: #687b8a; }
.page-hero__content .eyebrow { color: var(--pellaton-blue); }

.page-hero__visual {
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.page-hero__visual::before {
    width: 70%;
    background: rgba(21,158,213,.09);
}

.page-hero__image--photo {
    width: 100%;
    max-width: 520px;
    height: clamp(300px, 30vw, 420px);
    max-height: none;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(15,31,45,.11);
}

.hero-points {
    gap: 9px 18px;
}

.hero-points li {
    font-size: 0.88rem;
    font-weight: 650;
}

.hero-points svg { color: var(--pellaton-green); }

/* Buttons */
.button {
    min-height: 45px;
    padding: 11px 18px;
    color: #fff;
    background: var(--pellaton-blue);
    border: 1px solid var(--pellaton-blue);
    border-radius: 3px;
    font-size: .9rem;
    font-weight: 720;
    box-shadow: none;
}

.button:hover {
    color: #fff;
    background: var(--pellaton-blue-dark);
    border-color: var(--pellaton-blue-dark);
    transform: translateY(-1px);
}

.button--secondary,
.button--ghost-dark {
    color: var(--pellaton-ink);
    background: #fff;
    border-color: #cbd6de;
}

.button--secondary:hover,
.button--ghost-dark:hover {
    color: var(--pellaton-ink);
    background: #f8fafb;
    border-color: #aebdc8;
}

.text-link { color: var(--pellaton-blue-dark); }
.text-link:hover { color: var(--pellaton-blue); }

/* Current-site photography */
.photo-story {
    gap: clamp(44px, 7vw, 96px);
}

.photo-story__media {
    overflow: hidden;
    background: #e8edf0;
    border-radius: 8px;
}

.photo-story__media img {
    width: 100%;
    min-height: 390px;
    height: 100%;
    object-fit: cover;
}

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

.media-gallery__item {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--pellaton-line);
    border-radius: 7px;
}

.media-gallery__item img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.media-gallery__item figcaption {
    display: flex;
    min-height: 112px;
    flex-direction: column;
    padding: 20px;
}

.media-gallery__item strong {
    margin-bottom: 6px;
    color: var(--pellaton-ink);
    font-size: 1rem;
}

.media-gallery__item span {
    color: #687987;
    font-size: .9rem;
    line-height: 1.55;
}

/* Partner strip */
.partner-strip {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(240px,.72fr) minmax(0,1.28fr);
    gap: clamp(40px,7vw,90px);
}

.partner-strip__copy h2 { max-width: 15ch; }
.partner-strip__media {
    padding: 26px 32px;
    background: #fff;
    border: 1px solid var(--pellaton-line);
    border-radius: 7px;
}

.partner-strip__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Customer stories */
.customer-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

.customer-story-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--pellaton-line);
    border-radius: 6px;
}

.customer-story-card__media {
    position: relative;
    display: block;
    height: 215px;
    overflow: hidden;
    background: var(--pellaton-navy);
}

.customer-story-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-story-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background:
        radial-gradient(circle at 80% 24%, rgba(157,206,72,.22), transparent 27%),
        linear-gradient(135deg, #102638, #0a1721);
}

.customer-story-card__placeholder span {
    color: var(--pellaton-blue);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1;
}

.customer-story-card__name {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    color: #fff;
    font-size: 1.06rem;
    font-weight: 760;
    text-shadow: 0 1px 5px rgba(0,0,0,.45);
}

.customer-story-card__source {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 8px;
    color: #fff;
    background: rgba(10,25,37,.82);
    border-radius: 3px;
    font-size: .68rem;
    font-weight: 700;
}

.customer-story-card__body {
    padding: 22px;
}

.customer-story-card blockquote {
    min-height: 74px;
    margin: 0 0 18px;
    color: var(--pellaton-ink);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.45;
}

.customer-story-card__body > p {
    display: flex;
    min-height: 45px;
    flex-direction: column;
    margin-bottom: 15px;
    color: #748491;
    font-size: .82rem;
}

/* Case detail pages */
.case-detail-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0,1.4fr) minmax(260px,.6fr);
    gap: clamp(42px,7vw,90px);
}

.case-detail-layout__main h2 { max-width: 18ch; }
.case-detail-layout__facts {
    padding: 26px;
    background: var(--pellaton-bg-soft);
    border: 1px solid var(--pellaton-line);
    border-radius: 6px;
}

.case-detail-layout__facts h3 { margin-bottom: 18px; }
.case-detail-layout__facts .check-list { margin-bottom: 18px; }
.case-source-note {
    margin: 0;
    color: #71818e;
    font-size: .82rem;
}

/* Cards and steps */
.info-card,
.process-step {
    border-color: var(--pellaton-line);
    border-radius: 5px;
    box-shadow: none;
}

.info-card:hover {
    border-color: #bdd0dc;
    box-shadow: 0 12px 30px rgba(15,31,45,.06);
    transform: translateY(-2px);
}

.info-card__icon {
    color: var(--pellaton-blue);
    background: rgba(21,158,213,.08);
}

.process-step__number { color: var(--pellaton-blue); }
.process-step:not(:last-child)::after { background: var(--pellaton-green); }

/* CTA and footer */
.cta-band {
    background:
        radial-gradient(circle at 82% 50%, rgba(21,158,213,.2), transparent 24%),
        linear-gradient(90deg, var(--pellaton-navy-2), var(--pellaton-navy));
}

.site-footer {
    color: #667987;
    background: #eef2f4;
}

.site-footer__brand img {
    width: 148px !important;
    max-width: 148px !important;
    height: auto !important;
}

.footer-heading { color: var(--pellaton-ink); }
.footer-links a,
.footer-contact a,
.footer-contact span,
.site-footer__brand p,
.site-footer__bottom,
.site-footer__bottom a,
.site-footer__bottom button { color: #667987; }
.site-footer__bottom { border-top-color: #d7e0e6; }

@media (max-width: 1050px) {
    .primary-nav__list { gap: 15px; }
    .primary-nav__list > li > a,
    .nav-dropdown__label > a,
    .site-header--brand .primary-nav__list > li > a,
    .site-header--brand .nav-dropdown__label > a { font-size: .84rem; }
    .brand--center .brand__logo--dark,
    .brand--center .brand__logo--light { width: 128px !important; }
}

@media (max-width: 900px) {
    .container { width: min(calc(100% - 32px), 1160px); }
    .nav-shell--centered { min-height: 74px; }
    .brand--center { display: none; }
    .brand--mobile { display: inline-flex; margin-right: auto; }
    .nav-toggle { display: inline-flex; }

    .primary-nav--split {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        display: none;
        width: min(420px,100%);
        padding: 92px 26px 34px;
        overflow-y: auto;
        background: #fff;
        grid-template-columns: 1fr;
    }
    body.page-home .primary-nav--split { background: var(--pellaton-navy-2); }
    .primary-nav--split.is-open { display: block; }
    .primary-nav__list--left,
    .primary-nav__list--right { display: block; }
    .primary-nav__list > li { border-bottom: 1px solid rgba(150,165,178,.22); }
    .primary-nav__list > li > a,
    .nav-dropdown__label > a,
    .site-header--brand .primary-nav__list > li > a,
    .site-header--brand .nav-dropdown__label > a { padding: 15px 0; font-size: 1rem; }
    .primary-nav__list > li > a::after,
    .nav-dropdown__label > a::after { bottom: 7px; }
    .nav-dropdown__label { justify-content: space-between; }
    .nav-dropdown__toggle { width: 40px; height: 40px; }
    .nav-dropdown__panel {
        position: static;
        display: none;
        width: 100%;
        padding: 10px 0 18px;
        border: 0;
        box-shadow: none;
        grid-template-columns: 1fr;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .nav-dropdown.is-open .nav-dropdown__panel { display: grid; }
    .nav-dropdown:hover .nav-dropdown__panel,
    .nav-dropdown:focus-within .nav-dropdown__panel { display: none; }
    .nav-dropdown.is-open:hover .nav-dropdown__panel,
    .nav-dropdown.is-open:focus-within .nav-dropdown__panel { display: grid; }
    .nav-dropdown__intro { display: none; }
    .nav-dropdown__panel ul { grid-template-columns: 1fr; }
    .nav-dropdown__panel li a { background: var(--pellaton-bg-soft); }

    .page-hero__grid,
    .partner-strip,
    .case-detail-layout { grid-template-columns: 1fr; }
    .page-hero__visual { max-width: 650px; margin-inline: auto; }
    .media-gallery,
    .customer-story-grid,
    .customer-story-grid--wide { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
    .section { padding: 54px 0; }
    h1 { font-size: clamp(2.35rem,12vw,3.35rem); }
    h2 { font-size: clamp(1.75rem,8vw,2.3rem); }
    .page-hero { padding-top: 44px; padding-bottom: 58px; }
    .page-hero__image--photo { height: 300px; }
    .media-gallery,
    .customer-story-grid,
    .customer-story-grid--wide { grid-template-columns: 1fr; }
    .media-gallery__item img { height: 230px; }
    .site-footer__brand img { width: 132px !important; }
}

/* Homepage aligned with the current Pellaton visual language */
.home-hero {
    min-height: min(780px, 92svh);
    padding: 145px 0 150px;
    background:
        linear-gradient(90deg, rgba(8,19,29,.90) 0%, rgba(8,19,29,.76) 48%, rgba(8,19,29,.48) 100%),
        url('../images/current-site/team-werkplek-pellaton.jpg') center 42% / cover no-repeat;
}

.home-hero::before {
    background: linear-gradient(180deg, rgba(7,18,27,.08), rgba(7,18,27,.2));
}

.home-hero__inner {
    max-width: 1160px;
    align-items: flex-start;
    text-align: left;
}

.home-hero h1 {
    max-width: 8ch;
    margin: 0;
    color: #fff;
    font-size: clamp(3.7rem, 7.8vw, 7rem);
    font-weight: 800;
    line-height: .93;
    letter-spacing: -.05em;
    text-transform: none;
}

.home-hero__eyebrow {
    color: var(--pellaton-blue);
}

.home-hero__lead {
    max-width: 620px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.9);
}

.home-hero__points {
    justify-content: flex-start;
    color: rgba(255,255,255,.82);
}

.home-hero__actions {
    justify-content: flex-start;
}

.home-hero__cityline,
.home-hero__orb {
    display: none;
}

.button--brand-light {
    color: #fff;
    background: var(--pellaton-blue);
    border-color: var(--pellaton-blue);
}

.button--brand-light:hover {
    color: #fff;
    background: var(--pellaton-blue-dark);
    border-color: var(--pellaton-blue-dark);
}

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

.team-card--text-only {
    display: block;
    min-height: 160px;
    padding: 0;
    background: #fff;
    border: 1px solid var(--pellaton-line);
    border-radius: 6px;
}

.team-card--text-only .team-card__body {
    padding: 30px;
}

.team-card__line {
    display: block;
    width: 42px;
    height: 3px;
    margin-bottom: 25px;
    background: var(--pellaton-blue);
}

.team-card--text-only h3 {
    color: var(--pellaton-ink);
}

.team-card--text-only p {
    color: #71818d;
}

@media (max-width: 900px) {
    .home-hero {
        min-height: 700px;
        padding-top: 125px;
        background-position: 58% center;
    }
    .home-hero__inner { max-width: 700px; }
    .team-grid--compact { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .home-hero {
        min-height: 650px;
        padding: 115px 0 90px;
        background-position: 62% center;
    }
    .home-hero h1 { font-size: clamp(3rem,16vw,4.6rem); }
    .home-hero__points { display: none; }
}

/* ========================================================================== 
   Production header - single logo element, no overlapping header/breadcrumb.
   ========================================================================== */
.pellaton-header {
    z-index: 300;
    width: 100%;
    font-family: var(--font-sans);
}

.pellaton-header--home {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    color: #fff;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.pellaton-header--home.is-scrolled {
    position: fixed;
    background: rgba(12, 28, 42, .97);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    backdrop-filter: blur(12px);
}

.pellaton-header--inner {
    position: sticky;
    top: 0;
    color: var(--ink);
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #e1e7eb;
    box-shadow: 0 5px 18px rgba(16, 40, 63, .035);
    backdrop-filter: blur(10px);
}

.pellaton-header--inner.is-scrolled {
    box-shadow: 0 10px 28px rgba(16, 40, 63, .075);
}

.pellaton-header__inner {
    position: relative;
    display: flex;
    min-height: 94px;
    align-items: center;
}

.pellaton-brand {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 184px;
    height: 68px;
    transform: translate(-50%, -50%);
}

.pellaton-brand img {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 64px;
    object-fit: contain;
}

.pellaton-header--inner .pellaton-brand img {
    max-width: 178px;
    max-height: 52px;
}

.pellaton-nav {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 250px;
}

.pellaton-nav__list {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
    padding: 0;
    margin: 0;
    list-style: none;
}

.pellaton-nav__list--left {
    justify-content: flex-end;
}

.pellaton-nav__list--right {
    justify-content: flex-start;
}

.pellaton-nav__list > li > a,
.pellaton-nav__dropdown-label > a {
    position: relative;
    display: inline-flex;
    min-height: 94px;
    align-items: center;
    color: inherit;
    font-size: .91rem;
    font-weight: 720;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
}

.pellaton-nav__list > li > a::after,
.pellaton-nav__dropdown-label > a::after {
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 3px;
    content: "";
    background: var(--brand-cyan, #1aa3dd);
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 160ms ease;
}

.pellaton-nav__list > li > a:hover::after,
.pellaton-nav__list > li > a.is-active::after,
.pellaton-nav__dropdown-label > a:hover::after,
.pellaton-nav__dropdown-label > a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.pellaton-nav__dropdown {
    position: relative;
    display: block;
}

.pellaton-nav__dropdown-label {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pellaton-nav__dropdown-toggle {
    display: inline-flex;
    width: 24px;
    height: 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    color: inherit;
    background: transparent;
    border: 0;
}

.pellaton-nav__dropdown.is-open .pellaton-nav__dropdown-toggle {
    transform: rotate(180deg);
}

.pellaton-nav__dropdown-panel {
    position: absolute;
    top: calc(100% - 10px);
    left: -250px;
    display: grid;
    width: min(780px, calc(100vw - 40px));
    padding: 24px;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 55px rgba(16, 40, 63, .14);
    grid-template-columns: .82fr 1.7fr;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.pellaton-nav__dropdown:hover .pellaton-nav__dropdown-panel,
.pellaton-nav__dropdown:focus-within .pellaton-nav__dropdown-panel,
.pellaton-nav__dropdown.is-open .pellaton-nav__dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.pellaton-nav__dropdown-panel .nav-dropdown__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    color: #fff;
    background: var(--brand-navy-deep, #0c2238);
    border-radius: 5px;
}

.pellaton-nav__dropdown-panel .nav-dropdown__intro strong {
    color: #fff;
}

.pellaton-nav__dropdown-panel .nav-dropdown__intro span {
    color: rgba(255,255,255,.74);
}

.pellaton-nav__dropdown-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 16px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pellaton-nav__dropdown-panel li a {
    display: block;
    padding: 10px 11px;
    color: var(--ink);
    border-radius: 4px;
    font-size: .9rem;
    font-weight: 650;
    text-decoration: none;
}

.pellaton-nav__dropdown-panel li a:hover {
    color: var(--ink);
    background: #eef6fa;
}

.pellaton-nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: auto;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 4px;
}

.pellaton-header + .breadcrumbs {
    position: relative;
    z-index: 2;
    margin: 0;
}

.pellaton-header--inner + main .breadcrumbs,
.pellaton-header--inner ~ .breadcrumbs {
    margin-top: 0;
}

@media (max-width: 1180px) {
    .pellaton-nav {
        gap: 205px;
    }

    .pellaton-nav__list {
        gap: 17px;
    }

    .pellaton-nav__list > li > a,
    .pellaton-nav__dropdown-label > a {
        font-size: .84rem;
    }

    .pellaton-brand {
        width: 160px;
    }

    .pellaton-brand img {
        max-width: 155px;
    }
}

@media (max-width: 930px) {
    .pellaton-header__inner {
        min-height: 76px;
    }

    .pellaton-brand {
        position: static;
        width: auto;
        height: auto;
        transform: none;
    }

    .pellaton-brand img,
    .pellaton-header--inner .pellaton-brand img {
        max-width: 145px;
        max-height: 48px;
    }

    .pellaton-nav-toggle {
        display: inline-flex;
    }

    .pellaton-nav {
        position: fixed;
        z-index: 390;
        top: 76px;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        padding: 24px 22px 42px;
        overflow-y: auto;
        color: var(--ink);
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 160ms ease, transform 160ms ease;
    }

    .pellaton-header--home.is-scrolled .pellaton-nav,
    .pellaton-header--home .pellaton-nav {
        background: var(--brand-navy-deep, #0c2238);
        color: #fff;
    }

    .pellaton-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .pellaton-nav__list {
        display: block;
    }

    .pellaton-nav__list > li {
        border-bottom: 1px solid rgba(120, 137, 150, .18);
    }

    .pellaton-nav__list > li > a,
    .pellaton-nav__dropdown-label > a {
        min-height: 0;
        padding: 16px 0;
        font-size: 1rem;
    }

    .pellaton-nav__list > li > a::after,
    .pellaton-nav__dropdown-label > a::after {
        bottom: 8px;
    }

    .pellaton-nav__dropdown-label {
        justify-content: space-between;
    }

    .pellaton-nav__dropdown-toggle {
        width: 42px;
        height: 42px;
    }

    .pellaton-nav__dropdown-panel {
        position: static;
        display: none;
        width: 100%;
        padding: 10px 0 18px;
        color: var(--text);
        background: transparent;
        border: 0;
        box-shadow: none;
        grid-template-columns: 1fr;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .pellaton-nav__dropdown:hover .pellaton-nav__dropdown-panel,
    .pellaton-nav__dropdown:focus-within .pellaton-nav__dropdown-panel {
        display: none;
    }

    .pellaton-nav__dropdown.is-open .pellaton-nav__dropdown-panel {
        display: grid;
    }

    .pellaton-nav__dropdown-panel .nav-dropdown__intro {
        display: none;
    }

    .pellaton-nav__dropdown-panel ul {
        grid-template-columns: 1fr;
    }

    .pellaton-header--home .pellaton-nav__dropdown-panel li a {
        color: #fff;
    }

    .pellaton-header--home .pellaton-nav__dropdown-panel li a:hover {
        color: var(--ink);
    }
}

@media print {
    .pellaton-header {
        display: none !important;
    }
}

.partner-logo-grid {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.partner-logo-grid__item {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--pellaton-line, #dce3e8);
    border-radius: 6px;
}

.partner-logo-grid__item img {
    width: auto;
    max-width: 100%;
    max-height: 62px;
    object-fit: contain;
}

@media (max-width: 640px) {
    .partner-logo-grid {
        grid-template-columns: 1fr;
    }
}
