:root {
    --ink: #171717;
    --muted: #5f6268;
    --line: #ded9d2;
    --paper: #f7f3ed;
    --white: #ffffff;
    --primary: #593068;
    --primary-dark: #382043;
    --primary-soft: #7a4d8b;
    --dd-white: #ffffff;
    --dd-black: #000000;
    --dd-purple-dark: #240046;
    --dd-purple: #5a189a;
    --dd-purple-light: #9d4edd;
    --dd-purple-highlight: #c77dff;
    --teal: #276b6f;
    --gold: #c4984c;
    --shadow: 0 18px 60px rgba(23, 23, 23, 0.12);
    --type-body: 1rem;
    --type-eyebrow: clamp(0.98rem, calc(0.92rem + 0.3vw), 1.08rem);
    --type-eyebrow-hero: clamp(1.12rem, calc(1.02rem + 0.45vw), 1.28rem);
    --type-h3: clamp(1.2rem, calc(1.05rem + 0.55vw), 1.55rem);
    font-family: inter-18pt, agency-fb, "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

@property --dd-divider-solid-block {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 20%;
}

@property --dd-divider-white-length {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 30%;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
}

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

body {
    margin: 0;
    font-family: inter-18pt, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: var(--ink);
    background: var(--paper);
    font-size: var(--type-body);
    line-height: 1.55;
    overflow-x: clip;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 46px);
    min-height: 76px;
    padding: 14px clamp(20px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
    box-shadow: 0 10px 40px rgba(23, 23, 23, 0.06);
    backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.language-switcher,
.hero-actions,
.proof-strip {
    display: flex;
    align-items: center;
}

.brand {
    gap: 12px;
    flex: 0 0 auto;
    font-weight: 800;
    text-decoration: none;
}

.brand--header {
    min-width: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: clamp(38px, 4.2vw, 50px);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    aspect-ratio: 1;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 24px rgba(89, 48, 104, 0.24);
    font-size: 0.83rem;
    letter-spacing: 0;
}

.main-nav {
    justify-content: flex-end;
    gap: clamp(14px, 2.1vw, 28px);
    margin-left: auto;
}

.main-nav a,
.language-switcher a {
    color: var(--muted);
    font-size: clamp(0.86rem, 1.1vw, 0.95rem);
    font-weight: 700;
    text-decoration: none;
}

.main-nav a[aria-current="page"],
.language-switcher a[aria-current="true"],
.main-nav a:hover,
.language-switcher a:hover {
    color: var(--ink);
}

.language-switcher {
    gap: 10px;
    padding-left: 14px;
    border-left: 1px solid var(--line);
}

.menu-toggle {
    display: none;
    width: 44px;
    aspect-ratio: 1;
    place-items: center;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.hero {
    min-height: min(720px, calc(100vh - 76px));
    display: grid;
    align-items: end;
    padding: clamp(56px, 9vw, 110px) clamp(20px, 5vw, 72px) 28px;
}

.hero-home {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 22% 25%, rgba(196, 152, 76, 0.28), transparent 25%), linear-gradient(90deg, rgba(23, 23, 23, 0.9), rgba(23, 23, 23, 0.58) 48%, rgba(23, 23, 23, 0.12)), image-set(url("/assets/images/responsive/hero-systems-workspace-960w.webp") 1x, url("/assets/images/responsive/hero-systems-workspace-1440w.webp") 2x) center / cover no-repeat;
}

.hero-copy {
    width: min(720px, 100%);
    padding-bottom: clamp(24px, 5vw, 54px);
}

.eyebrow {
    margin: 0 0 14px;
    color: #593068 !important;
    font-family: agency-fb, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::after {
    content: "";
    display: block;
    width: 220px;
    height: 11px;
    margin-top: -4px;
    margin-left: -10px;
    background-color: currentColor;
    -webkit-mask: url("/assets/images/Circuito.svg") left center / contain no-repeat;
    mask: url("/assets/images/Circuito.svg") left center / contain no-repeat;
}

body:not(.case-shell) main .eyebrow,
body:not(.case-shell) .cta-band .eyebrow,
body:not(.case-shell) .site-newsletter .eyebrow,
body:not(.case-shell) .contact-modal .eyebrow {
    font-size: var(--type-eyebrow) !important;
    line-height: 1.15 !important;
}

body:not(.case-shell) .hero-home .hero-copy > .eyebrow,
body:not(.case-shell) .page-hero > .eyebrow {
    font-size: var(--type-eyebrow-hero) !important;
}

body:not(.case-shell) .eyebrow::after {
    width: min(220px, calc(100vw - 32px));
}

.hero-home .eyebrow {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.page-hero > .eyebrow,
.case-hero > .eyebrow,
.ops-hero > .eyebrow,
.finance-hero > .eyebrow,
.neuro-hero > .eyebrow,
.car-hero > .eyebrow,
.dlk-hero > .eyebrow {
    color: rgba(255, 255, 255, 0.78) !important;
}

.site-newsletter .eyebrow,
.site-newsletter-split .eyebrow {
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

h1,
h2,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inter-18pt, sans-serif;
    font-weight: 600;
    font-style: normal;
}

h1 {
    max-width: 880px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 6.4vw, 5.6rem);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(1.65rem, 3vw, 3.1rem);
    line-height: 1.04;
    letter-spacing: 0;
}

body:not(.case-shell) main h3 {
    font-size: var(--type-h3);
    line-height: 1.18;
}

.hero-text,
.page-hero p:not(.eyebrow),
.split p:not(.eyebrow),
.statement p:not(.eyebrow),
.cta-band p:not(.eyebrow),
.case-shell .cta-band p.eyebrow {
    max-width: 720px;
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.hero-text,
.page-hero p:not(.eyebrow),
.case-shell .cta-band p.eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

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

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

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

.button.primary:hover {
    background: var(--primary-dark);
}

.button.secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.08);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
}

.text-link::after {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
    transition: width 160ms ease;
}

.text-link:hover::after {
    width: 48px;
}

.proof-strip {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.proof-strip span {
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(23, 23, 23, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.9rem;
    font-weight: 750;
}

.section,
.page-hero,
.cta-band {
    padding: clamp(62px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section + .section {
    border-top: 1px solid rgba(23, 23, 23, 0.04);
}

.page-hero {
    position: relative;
    min-height: clamp(470px, 62vh, 660px);
    display: grid;
    align-content: end;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 22%, rgba(196, 152, 76, 0.25), transparent 28%),
        linear-gradient(90deg, rgba(23, 23, 23, 0.92), rgba(23, 23, 23, 0.64) 42%, rgba(23, 23, 23, 0.16)),
        var(--page-hero-image) center / cover no-repeat;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto clamp(20px, 5vw, 72px) 0;
    z-index: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.page-hero-solutions {
    --page-hero-image: image-set(url("/assets/images/responsive/hero-solutions-960w.webp") 1x, url("/assets/images/responsive/hero-solutions-1440w.webp") 2x);
}

.page-hero-process {
    --page-hero-image: image-set(url("/assets/images/responsive/hero-process-960w.webp") 1x, url("/assets/images/responsive/hero-process-1440w.webp") 2x);
}

.page-hero-about {
    --page-hero-image: image-set(url("/assets/images/responsive/hero-about-960w.webp") 1x, url("/assets/images/responsive/hero-about-1440w.webp") 2x);
}

.page-hero-contact {
    --page-hero-image: image-set(url("/assets/images/responsive/hero-contact-960w.webp") 1x, url("/assets/images/responsive/hero-contact-1440w.webp") 2x);
}

.page-hero-work {
    --page-hero-image: image-set(url("/assets/images/responsive/hero-work-960w.webp") 1x, url("/assets/images/responsive/hero-work-1440w.webp") 2x);
}

.page-hero-blog {
    --page-hero-image: image-set(url("/assets/images/responsive/hero-blog-960w.webp") 1x, url("/assets/images/responsive/hero-blog-1440w.webp") 2x);
}

.page-hero-legal {
    --page-hero-image: image-set(url("/assets/images/responsive/hero-process-960w.webp") 1x, url("/assets/images/responsive/hero-process-1440w.webp") 2x);
}

/* Conversion-focused commercial homepage and navigation refinement. */
.main-nav a {
    position: relative;
}

.main-nav a:not(.nav-cta)::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--primary);
    scale: 0 1;
    transform-origin: left;
    transition: scale 180ms ease;
}

.main-nav a:not(.nav-cta):hover::before,
.main-nav a:not(.nav-cta)[aria-current="page"]::before {
    scale: 1 1;
}

.main-nav .nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 9px 17px;
    color: var(--white);
    background: var(--primary);
    transition: background-color 180ms ease, transform 180ms ease;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta[aria-current="page"] {
    color: var(--white);
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.button {
    position: relative;
    overflow: hidden;
    min-height: 52px;
    padding: 14px 23px;
    box-shadow: 0 10px 24px rgba(23, 23, 23, 0.08);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible {
    outline: 3px solid var(--dd-purple-highlight);
    outline-offset: 3px;
}

.hero-home {
    min-height: min(820px, calc(100svh - 76px));
    padding-top: clamp(72px, 9vw, 110px);
    background:
        radial-gradient(circle at 18% 18%, rgba(90, 24, 154, 0.28), transparent 31%),
        linear-gradient(90deg, rgba(16, 11, 18, 0.94), rgba(24, 17, 27, 0.72) 49%, rgba(23, 23, 23, 0.14)),
        image-set(url("/assets/images/responsive/hero-systems-workspace-960w.webp") 1x, url("/assets/images/responsive/hero-systems-workspace-1440w.webp") 2x) center / cover no-repeat;
}

.hero-home .hero-copy {
    width: min(780px, 100%);
    padding-bottom: clamp(32px, 5vw, 54px);
}

.hero-home h1 {
    max-width: 780px;
    margin-bottom: 24px;
    font-size: clamp(3.3rem, 6vw, 5.25rem);
    line-height: 0.97;
    text-wrap: balance;
}

.hero-home .hero-text {
    max-width: 680px;
    font-size: clamp(1.08rem, 1.55vw, 1.28rem);
    line-height: 1.62;
}

.hero-reassurance {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.hero-reassurance::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 2px;
    margin-right: 9px;
    vertical-align: middle;
    background: var(--dd-purple-highlight);
}

.hero-home .proof-strip {
    gap: clamp(14px, 2.5vw, 34px);
    justify-content: flex-start;
}

.hero-home .proof-strip span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    background: transparent;
    border: 0;
    font-size: clamp(0.82rem, 1vw, 0.92rem);
}

.hero-home .proof-strip svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--dd-purple-highlight);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.home-section-heading h2,
.home-services-heading h2,
.home-process-intro h2,
.home-proof-heading h2 {
    text-wrap: balance;
}

.home-problem {
    align-items: center;
    background: var(--paper);
}

.home-problem-copy > p {
    font-size: clamp(1.08rem, 1.5vw, 1.24rem);
    line-height: 1.7;
}

.home-signal-list {
    display: grid;
    gap: 0;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.home-signal-list li {
    position: relative;
    padding: 15px 16px 15px 34px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-weight: 650;
}

.home-signal-list li::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 5px;
    width: 14px;
    height: 2px;
    background: var(--primary);
}

.home-services {
    padding-top: clamp(72px, 9vw, 112px);
    background: var(--white);
    scroll-margin-top: 90px;
}

.home-services-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    gap: clamp(32px, 7vw, 90px);
    align-items: end;
    margin-bottom: clamp(42px, 6vw, 70px);
}

.home-services-heading > p {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.home-services .offer-grid {
    gap: 18px;
}

.home-services .offer-card {
    display: flex;
    flex-direction: column;
    min-height: 360px;
    padding: clamp(28px, 3vw, 38px);
    border-top: 5px solid var(--primary);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.home-services .offer-card:nth-child(2) {
    border-top-color: var(--primary-soft);
}

.home-services .offer-card:nth-child(3) {
    border-top-color: var(--primary-dark);
}

.home-services .offer-card:hover {
    z-index: 1;
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(36, 0, 70, 0.12);
}

.offer-card-number {
    margin-bottom: auto;
    padding-bottom: 34px;
    color: var(--primary);
    font-family: agency-fb, sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-services .offer-card h3 {
    max-width: 320px;
    margin: 0 0 16px;
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    line-height: 1.08;
}

.home-services .offer-card .text-link {
    margin-top: auto;
    padding-top: 18px;
}

.home-decision-band {
    --dd-split-left: 1.12fr;
    --dd-split-right: 0.88fr;
    --dd-cta-divider-left: 56%;
}

.home-decision-band .cta-band-panel--dark,
.home-final-cta .cta-band-panel--dark {
    align-items: flex-start;
}

.home-decision-copy,
.home-final-action {
    width: min(480px, 100%);
    display: grid;
    gap: 20px;
    justify-items: start;
}

.home-decision-copy strong,
.home-final-action strong {
    color: var(--white);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1.18;
}

.home-decision-band .cta-band-panel--dark p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.home-process {
    display: grid;
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(42px, 8vw, 120px);
    align-items: start;
    background: var(--paper);
}

.home-process-intro {
    position: sticky;
    top: 120px;
}

.home-process-intro > p:not(.eyebrow) {
    max-width: 520px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.home-process-steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.home-process-steps li {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 22px;
    padding: clamp(28px, 4vw, 42px) 0;
    border-bottom: 1px solid var(--line);
}

.home-process-steps li > span {
    color: var(--primary);
    font-family: agency-fb, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-process-steps h3 {
    margin: 0 0 10px;
    font-size: clamp(1.3rem, 2vw, 1.72rem);
    line-height: 1.12;
}

.home-process-steps p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.home-continuity {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(32px, 7vw, 94px);
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--primary-dark);
}

.home-continuity::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -160px;
    width: 420px;
    aspect-ratio: 1;
    border: 1px solid rgba(199, 125, 255, 0.2);
    transform: rotate(24deg);
}

.home-continuity > * {
    position: relative;
    z-index: 1;
}

.home-continuity .eyebrow {
    color: rgba(255, 255, 255, 0.74) !important;
}

.home-continuity > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.72;
}

.home-proof {
    background: var(--white);
}

.home-proof-heading {
    width: min(820px, 100%);
    margin-bottom: clamp(40px, 6vw, 68px);
}

.home-proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.65fr);
    gap: 18px;
    align-items: stretch;
}

.home-case-spotlight {
    display: grid;
    grid-template-columns: minmax(300px, 1.1fr) minmax(300px, 0.9fr);
    min-height: 480px;
    overflow: hidden;
    background: var(--paper);
    border: 1px solid var(--line);
}

.home-case-spotlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--ink);
}

.home-case-spotlight > div,
.home-insight-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(30px, 4vw, 50px);
}

.home-case-spotlight h3,
.home-insight-card h3 {
    margin: 0 0 18px;
    font-size: clamp(1.55rem, 2.5vw, 2.35rem);
    line-height: 1.07;
}

.home-case-spotlight p:not(.eyebrow),
.home-insight-card p:not(.eyebrow) {
    color: var(--muted);
}

.home-case-spotlight .text-link,
.home-insight-card .text-link {
    margin-top: auto;
    padding-top: 24px;
}

.home-insight-card {
    position: relative;
    overflow: hidden;
    justify-content: flex-start;
    color: var(--white);
    background: var(--ink);
}

.home-insight-card::after {
    content: "";
    position: absolute;
    right: -58px;
    bottom: -58px;
    width: 150px;
    aspect-ratio: 1;
    border: 1px solid rgba(199, 125, 255, 0.24);
    transform: rotate(20deg);
}

.home-insight-card > * {
    position: relative;
    z-index: 1;
}

.home-insight-card .eyebrow {
    color: rgba(255, 255, 255, 0.72) !important;
}

.home-insight-card p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.68);
}

.home-insight-card .text-link {
    color: var(--dd-purple-highlight);
}

.home-final-cta {
    --dd-split-left: 1.04fr;
    --dd-split-right: 0.96fr;
    --dd-cta-divider-left: 52%;
}

.commercial-cta-band {
    --dd-split-left: 1.08fr;
    --dd-split-right: 0.92fr;
    --dd-cta-divider-left: 54%;
}

.commercial-cta-band .cta-band-panel--dark {
    align-items: flex-start;
}

.commercial-cta-action {
    width: min(480px, 100%);
    display: grid;
    gap: 22px;
    justify-items: start;
}

.commercial-cta-action strong {
    color: var(--white);
    font-size: clamp(1.32rem, 2.1vw, 1.85rem);
    line-height: 1.2;
}

.work-context {
    align-items: center;
    background: var(--white);
}

.work-context > div > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.work-context-list {
    display: grid;
    gap: 0;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.work-context-list li {
    position: relative;
    padding: 14px 12px 14px 32px;
    border-bottom: 1px solid var(--line);
    font-weight: 650;
}

.work-context-list li::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 4px;
    width: 14px;
    height: 2px;
    background: var(--primary);
}

.solution-faq {
    background: var(--white);
}

.solution-faq .section-heading {
    width: min(840px, 100%);
    margin-bottom: clamp(34px, 5vw, 58px);
}

.solution-faq-grid article {
    min-height: 250px;
    border-top: 5px solid var(--primary);
}

.solution-faq-grid article:nth-child(2) {
    border-top-color: var(--primary-soft);
}

.solution-faq-grid article:nth-child(3) {
    border-top-color: var(--primary-dark);
}

.solution-faq-grid h3 {
    margin: 0 0 15px;
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    line-height: 1.18;
}

.solution-faq-grid p {
    color: var(--muted);
    line-height: 1.7;
}

.content-commercial-bridge {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
    gap: clamp(32px, 7vw, 90px);
    align-items: center;
    color: var(--white);
    background: var(--primary-dark);
    border-top: 0;
}

.content-commercial-bridge h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.content-commercial-bridge .eyebrow {
    color: rgba(255, 255, 255, 0.72) !important;
}

.content-commercial-bridge > div > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.06rem;
    line-height: 1.7;
}

.content-commercial-bridge--article {
    width: min(1040px, calc(100% - 40px));
    margin: 0 auto clamp(70px, 9vw, 110px);
    padding: clamp(34px, 5vw, 58px);
}

.content-commercial-bridge--article h2 {
    font-size: clamp(1.65rem, 3vw, 2.5rem);
}

@media (max-width: 1100px) {
    .home-services .offer-card {
        min-height: 330px;
    }

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

    .home-insight-card {
        min-height: 320px;
    }
}

@media (max-width: 880px) {
    .main-nav a:not(.nav-cta)::before {
        content: none;
    }

    .main-nav .nav-cta {
        margin: 6px clamp(20px, 5vw, 72px);
        justify-content: center;
        color: var(--white);
    }

    .hero-home {
        min-height: max(720px, calc(100svh - 76px));
    }

    .home-services-heading,
    .home-process,
    .home-continuity {
        grid-template-columns: 1fr;
    }

    .home-process-intro {
        position: static;
    }

    .home-case-spotlight {
        grid-template-columns: 1fr;
    }

    .home-case-spotlight img {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .home-decision-band,
    .home-final-cta,
    .commercial-cta-band {
        --dd-cta-divider-left: 50%;
    }

    .content-commercial-bridge {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .hero-home {
        min-height: calc(100svh - 76px);
        padding-top: 58px;
        background-position: 67% center;
    }

    .hero-home h1 {
        font-size: clamp(2.55rem, 11.6vw, 3.3rem);
        line-height: 0.98;
    }

    .hero-home .hero-text {
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-home .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .hero-reassurance {
        display: none;
    }

    .hero-home .proof-strip {
        display: grid;
        gap: 10px;
        padding-top: 18px;
    }

    .home-services-heading {
        margin-bottom: 34px;
    }

    .home-services .offer-card {
        min-height: 300px;
    }

    .home-process-steps li {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .home-case-spotlight {
        min-height: 0;
    }

    .home-case-spotlight > div,
    .home-insight-card {
        padding: 28px 24px;
    }
}

.responsive-picture {
    display: contents;
}

.local-service-hero {
    min-height: clamp(460px, 72vh, 700px);
}

.local-service-market-note {
    margin-top: 20px;
    color: var(--muted);
}

.local-market-angle {
    background: var(--paper);
}

.local-market-angle-heading {
    width: min(860px, 100%);
}

.local-market-angle-heading > p:not(.eyebrow) {
    color: var(--muted);
}

.local-situation-grid {
    margin-top: clamp(28px, 4vw, 48px);
}

.local-situation-grid article {
    min-height: 230px;
    background: var(--white);
    border-top: 6px solid var(--primary);
}

.local-situation-grid article:nth-child(2) {
    border-top-color: var(--teal);
}

.local-situation-grid article:nth-child(3) {
    border-top-color: var(--gold);
}

.local-situation-number {
    display: block;
    margin-bottom: 36px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.local-situation-grid p {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.08rem, 1.35vw, 1.35rem);
    font-weight: 800;
    line-height: 1.35;
}

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

.local-service-coverage {
    background: var(--white);
}

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

.local-service-coverage li {
    background: var(--paper);
    border: 1px solid var(--line);
}

.local-service-faq {
    background: var(--paper);
}

.local-service-faq-grid article {
    min-height: 0;
}

.local-service-faq-grid h3 {
    margin: 0 0 14px;
    font-size: clamp(1.2rem, 1.5vw, 1.55rem);
    line-height: 1.18;
}

.local-service-cta-actions {
    display: grid;
    gap: 16px;
    justify-items: start;
}

.local-related-solution {
    background: var(--paper);
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.92fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: start;
}

.local-related-solution-intro {
    width: min(620px, 100%);
}

.local-related-solution-intro p:not(.eyebrow) {
    color: var(--muted);
}

.local-related-solution-card {
    position: relative;
    padding: clamp(30px, 4vw, 42px);
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 6px solid var(--primary);
}

.local-related-solution-card h3 {
    margin: 0 0 14px;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.08;
}

.local-related-solution-card p:not(.eyebrow) {
    color: var(--muted);
}

@media (max-width: 900px) {
    .local-service-coverage ul {
        grid-template-columns: 1fr;
    }

    .local-related-solution {
        grid-template-columns: 1fr;
    }
}

.page-hero p {
    color: rgba(255, 255, 255, 0.78);
}

.page-hero h1,
.page-hero p {
    width: min(760px, 100%);
}

.split,
.statement {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 86px);
    align-items: start;
}

.split p,
.statement p {
    color: var(--muted);
}

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

.section.offer-grid--home {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.offer-card,
.values-grid article {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(23, 23, 23, 0.03);
}

.offer-card::after,
.values-grid article::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    aspect-ratio: 1;
    border: 1px solid rgba(39, 107, 111, 0.18);
    transform: rotate(18deg);
}

.offer-card:nth-child(2) {
    border-top: 6px solid var(--teal);
}

.offer-card:nth-child(3) {
    border-top: 6px solid var(--gold);
}

.offer-card:first-child {
    border-top: 6px solid var(--primary);
}

.values-grid article:nth-child(1) {
    border-top: 6px solid var(--primary);
}

.values-grid article:nth-child(2) {
    border-top: 6px solid var(--teal);
}

.values-grid article:nth-child(3) {
    border-top: 6px solid var(--gold);
}

.values-grid article:nth-child(4) {
    border-top: 6px solid var(--primary-soft);
}

.offer-card p,
.values-grid p,
.solution-item p,
.timeline-step p,
.contact-details p {
    color: var(--muted);
}

.statement {
    background: var(--white);
    border-block: 1px solid var(--line);
}

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

.feature-panel {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
}

.feature-panel img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.feature-panel div {
    display: grid;
    align-content: start;
    padding: 30px;
}

.feature-panel--decorated div {
    position: relative;
    overflow: hidden;
}

.feature-panel--decorated div::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    aspect-ratio: 1;
    border: 1px solid rgba(39, 107, 111, 0.18);
    transform: rotate(18deg);
}

.feature-panel--decorated .eyebrow::after {
    content: none;
}

.feature-panel p:not(.eyebrow) {
    color: var(--muted);
}

.feature-panel .text-link {
    align-self: end;
}

.cta-band {
    color: var(--white);
    background: var(--primary-dark);
}

.cta-band p {
    color: rgba(255, 255, 255, 0.82);
}

/* Reusable signage-style divider prototype for split sections. */
.cta-band--split {
    --dd-cta-divider-width: clamp(53px, 5.4vw, 64px);
    --dd-cta-section-height: clamp(330px, 36vw, 460px);
    --dd-cta-divider-height: calc(var(--dd-cta-section-height) + 2px);
    --dd-cta-divider-skew: -20deg;
    --dd-cta-panel-padding-block: clamp(66px, 8vw, 110px);
    --dd-cta-panel-padding-inline: clamp(20px, 5vw, 72px);
    --dd-cta-divider-left: 50%;
    --dd-split-left: 1fr;
    --dd-split-right: 1fr;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, var(--dd-split-left)) minmax(280px, var(--dd-split-right));
    align-items: stretch;
    min-height: var(--dd-cta-section-height);
    padding: 0;
    color: var(--ink);
    background: var(--paper);
}

.cta-band--split::before,
.cta-band--split::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.cta-band--split::before {
    z-index: 1;
    inset-block: -2px;
    left: calc(var(--dd-cta-divider-left) + (var(--dd-cta-divider-width) * 0.24));
    right: -12vw;
    background: var(--dd-black);
    transform: skewX(var(--dd-cta-divider-skew));
    transform-origin: center;
}

.cta-band--split::after {
    display: none;
}

.cta-band-panel {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: inherit;
    padding-block: var(--dd-cta-panel-padding-block);
}

.cta-band-panel > * {
    position: relative;
    z-index: 7;
}

.cta-band-panel--light {
    align-items: flex-start;
    margin-right: calc(var(--dd-cta-divider-width) * 2);
    padding-inline: var(--dd-cta-panel-padding-inline) 0;
    color: var(--ink);
}

.cta-band-divider {
    position: absolute;
    z-index: 6;
    top: -1px;
    bottom: -1px;
    left: calc(var(--dd-cta-divider-left) - (var(--dd-cta-divider-width) * 0.42));
    width: var(--dd-cta-divider-width);
    background: transparent;
    transform: skewX(var(--dd-cta-divider-skew));
    transform-origin: center;
    pointer-events: none;
    animation: dd-divider-fade-in 700ms ease both;
}

.cta-band-divider::before,
.cta-band-divider::after {
    content: "";
    position: absolute;
    inset: 0;
}

.cta-band-divider::before {
    background: linear-gradient(to top, #240046 0%, #5a189a 55%, #7b2cbf 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0 30%, #000 30% 90%, transparent 90% 100%);
    mask-image: linear-gradient(to right, transparent 0 30%, #000 30% 90%, transparent 90% 100%);
}

.cta-band-divider::after {
    --dd-divider-solid-block: 20%;
    --dd-divider-white-length: 30%;
    --dd-divider-white-overpaint: 1%;
    background:
        linear-gradient(#240046 0 0) top / 100% var(--dd-divider-solid-block) no-repeat,
        linear-gradient(to bottom, #fff 0 100%) right bottom / calc(15% + var(--dd-divider-white-overpaint)) calc(var(--dd-divider-white-length) + var(--dd-divider-white-overpaint)) no-repeat,
        linear-gradient(to bottom, #fff 0 100%) right 1% bottom / calc(15% + var(--dd-divider-white-overpaint)) calc(var(--dd-divider-white-length) + var(--dd-divider-white-overpaint)) no-repeat,
        linear-gradient(to top, #240046 0%, #5a189a 55%, #7b2cbf 100%) right / 15% 100% no-repeat;
    animation:
        dd-divider-solid-size 5s ease-in-out infinite,
        dd-divider-white-size 12.5s ease-in-out infinite;
    will-change: --dd-divider-solid-block, --dd-divider-white-length;
}

.cta-band-panel--dark {
    align-items: center;
    padding-inline: calc(var(--dd-cta-divider-width) * 1.3);
    color: var(--dd-white);
}

.cta-band--split h2,
.cta-band--split p {
    max-width: 620px;
}

.cta-band-panel--light h2,
.cta-band-panel--light p {
    max-width: 100%;
}

.cta-band--split h2 {
    color: var(--ink);
}

.cta-band--split p {
    color: var(--muted);
}

.cta-band-panel--dark .button.primary {
    color: var(--dd-black);
    background: var(--dd-white);
}

.cta-band-panel--dark .button.primary:hover {
    color: var(--dd-white);
    background: var(--dd-purple);
}

.site-newsletter-split {
    --dd-cta-section-height: clamp(260px, 30vw, 380px);
    --dd-cta-panel-padding-block: clamp(42px, 6vw, 74px);
}

.cta-band--split.site-newsletter-split.bg-white {
    background: var(--white);
}

.site-newsletter-split .newsletter-form {
    width: min(620px, 100%);
}

.site-newsletter-split .form-status {
    color: rgba(255, 255, 255, 0.76);
}

.site-newsletter-split .form-status.is-success {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

@keyframes dd-divider-fade-in {
    from {
        opacity: 0;
        translate: -5px 0;
    }

    to {
        opacity: 1;
        translate: 0 0;
    }
}

@keyframes dd-divider-solid-size {
    0%,
    100% {
        --dd-divider-solid-block: 20%;
    }

    50% {
        --dd-divider-solid-block: 27%;
    }
}

@keyframes dd-divider-white-size {
    0%,
    100% {
        --dd-divider-white-length: 30%;
    }

    50% {
        --dd-divider-white-length: 12%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-band-divider,
    .cta-band-divider::after {
        animation: none;
    }
}

@media (max-width: 880px) {
    .cta-band--split {
        --dd-mobile-divider-height: clamp(25px, 6.6vw, 34px);
        --dd-mobile-dark-overlap: calc((var(--dd-mobile-divider-height) / 2) * -1);
        --dd-cta-divider-width: clamp(180px, 58vw, 300px);
        --dd-cta-divider-skew: 0deg;
        --dd-cta-mobile-divider-skew: 4deg;
        grid-template-columns: 1fr;
        min-height: 0;
        background: var(--paper);
    }

    .cta-band--split.site-newsletter-split.bg-white {
        background: var(--white);
    }

    .cta-band--split::before {
        display: none;
    }

    .cta-band--split::after {
        display: none;
    }

    .cta-band-panel {
        min-height: 0;
        padding-inline: 16px;
    }

    .cta-band-panel--light {
        order: 1;
        margin-right: 0;
        padding-block: clamp(58px, 14vw, 82px) calc((var(--dd-mobile-divider-height) / 2) + 28px);
    }

    .cta-band-panel--dark {
        order: 3;
        align-items: flex-start;
        padding-block: calc((var(--dd-mobile-divider-height) / 2) + 32px) clamp(58px, 14vw, 82px);
    }

    .cta-band-panel--dark::before {
        content: "";
        position: absolute;
        z-index: 1;
        inset: var(--dd-mobile-dark-overlap) -10vw -10vw;
        background: var(--dd-black);
        transform: skewY(var(--dd-cta-mobile-divider-skew));
        transform-origin: center top;
        pointer-events: none;
    }

    .cta-band-divider {
        position: relative;
        order: 2;
        top: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: var(--dd-mobile-divider-height);
        background: transparent;
        transform: skewY(var(--dd-cta-mobile-divider-skew));
        transform-origin: center;
    }

    .cta-band-divider {
        background: transparent;
    }

    .cta-band-divider::before {
        display: block;
        background: linear-gradient(to right, #240046 0%, #5a189a 55%, #7b2cbf 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0 30%, #000 30% 101%);
        mask-image: linear-gradient(to bottom, transparent 0 30%, #000 30% 101%);
        -webkit-mask-size: 91% 100%;
        mask-size: 91% 100%;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .cta-band-divider::after {
        --dd-divider-solid-block: 10%;
        --dd-divider-white-length: 36%;
        --dd-divider-white-overpaint: 1%;
        display: block;
        background:
            linear-gradient(#240046 0 0) right / var(--dd-divider-solid-block) 100% no-repeat,
            linear-gradient(to right, #fff 0 100%) left bottom / calc(var(--dd-divider-white-length) + var(--dd-divider-white-overpaint)) calc(11% + var(--dd-divider-white-overpaint)) no-repeat,
            linear-gradient(to right, #fff 0 100%) left 1% bottom / calc(var(--dd-divider-white-length) + var(--dd-divider-white-overpaint)) calc(11% + var(--dd-divider-white-overpaint)) no-repeat;
        animation-name: dd-divider-solid-size-mobile, dd-divider-white-size-mobile;
    }

    @keyframes dd-divider-solid-size-mobile {
        0%,
        100% {
            --dd-divider-solid-block: 10%;
        }

        50% {
            --dd-divider-solid-block: 15%;
        }
    }

    @keyframes dd-divider-white-size-mobile {
        0%,
        100% {
            --dd-divider-white-length: 36%;
        }

        50% {
            --dd-divider-white-length: 16%;
        }
    }

    .cta-band--split h2,
    .cta-band--split p {
        max-width: 100%;
    }
}

.solution-list {
    display: grid;
    gap: 18px;
}

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

.listing-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 32px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(23, 23, 23, 0.03);
}

.listing-card-image {
    width: calc(100% + 64px);
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin: -32px -32px 24px;
    border-bottom: 1px solid var(--line);
}

.listing-card p:not(.eyebrow) {
    color: var(--muted);
}

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

.listing-grid--work .listing-card {
    position: relative;
}

.listing-grid--work .listing-card > * {
    position: relative;
    z-index: 1;
}

.listing-grid--work .listing-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    aspect-ratio: 1;
    border: 1px solid rgba(39, 107, 111, 0.18);
    transform: rotate(18deg);
    z-index: 0;
    pointer-events: none;
}

.listing-grid--blog .listing-card .eyebrow::after {
    content: none;
}

.listing-grid--work .listing-card .eyebrow::after {
    content: none;
}

.listing-grid--blog .listing-card {
    position: relative;
}

.listing-grid--blog .listing-card > * {
    position: relative;
    z-index: 1;
}

.listing-grid--blog .listing-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    aspect-ratio: 1;
    border: 1px solid rgba(39, 107, 111, 0.18);
    transform: rotate(18deg);
    z-index: 0;
    pointer-events: none;
}

.solution-item {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
    gap: 34px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
}

.solution-item > * {
    position: relative;
    z-index: 1;
}

.solution-item::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    aspect-ratio: 1;
    border: 1px solid rgba(39, 107, 111, 0.18);
    transform: rotate(18deg);
    z-index: 0;
    pointer-events: none;
}

.solution-item ul {
    display: grid;
    gap: 10px;
    align-content: start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.solution-item li {
    padding: 10px 12px;
    background: var(--paper);
    font-weight: 750;
}

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

.section.solution-detail-grid--no-top {
    padding-top: 0;
    border-top: 0;
}

.section.solution-detail-grid--no-top article .eyebrow::after,
.section.insight-grid--no-top article .eyebrow::after {
    content: none;
}

.section.solution-detail-grid--no-top article:nth-child(1) {
    border-top: 6px solid var(--primary);
}

.section.solution-detail-grid--no-top article:nth-child(2) {
    border-top: 6px solid var(--teal);
}

.solution-detail-grid article {
    padding: clamp(30px, 4vw, 42px);
    background: var(--white);
    border: 1px solid var(--line);
}

.solution-detail-grid ul {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.solution-detail-grid li {
    padding: 13px 14px;
    background: var(--paper);
    color: var(--muted);
    font-weight: 800;
}

.section-heading {
    width: min(760px, 100%);
    margin-bottom: clamp(30px, 4vw, 46px);
}

.solution-growth-support .section-heading > .eyebrow {
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.section.solution-growth-support--web-growth {
    background: var(--white);
}

.solution-growth-support .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-growth-support .insight-grid article:nth-child(1) {
    border-top: 6px solid var(--primary);
}

.solution-growth-support .insight-grid article:nth-child(2) {
    border-top: 6px solid var(--teal);
}

.solution-growth-support .insight-grid article:nth-child(3) {
    border-top: 6px solid var(--gold);
}

.solution-growth-support .insight-grid article:nth-child(4) {
    border-top: 6px solid var(--primary-soft);
}

.related-solutions .section-heading > .eyebrow {
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.section.statement--web-growth-swap {
    background: var(--paper);
}

.section.statement--web-growth-swap.checklist-band li {
    background: var(--white);
    border: 1px solid var(--line);
}

.section.related-solutions--web-growth-swap {
    background: var(--white);
}

.section.solution-growth-support--web-growth .insight-grid article,
.section.related-solutions--web-growth-swap .related-solution-grid article {
    background: var(--paper);
}

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

.related-solution-grid article .eyebrow::after {
    content: none;
}

.related-solution-grid article {
    min-height: 280px;
    padding: clamp(30px, 4vw, 42px);
    background: var(--white);
    border: 1px solid var(--line);
}

.related-solution-grid h3 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.08;
}

.related-solution-grid p:not(.eyebrow) {
    color: var(--muted);
}

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

.section.insight-grid--no-top {
    padding-top: 0;
    border-top: 0;
}

.section.insight-grid--no-top article:nth-child(1) {
    border-top: 6px solid var(--primary);
}

.section.insight-grid--no-top article:nth-child(2) {
    border-top: 6px solid var(--teal);
}

.section.insight-grid--no-top article:nth-child(3) {
    border-top: 6px solid var(--gold);
}

.section.insight-grid--no-top article:nth-child(4) {
    border-top: 6px solid var(--primary-soft);
}

.insight-grid article {
    min-height: 260px;
    padding: clamp(30px, 4vw, 42px);
    background: var(--white);
    border: 1px solid var(--line);
}

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

.section.process-principles-grid {
    padding-top: 0;
    border-top: 0;
    background: var(--white);
}

.process-principles-grid article {
    position: relative;
    overflow: hidden;
    background: var(--paper);
    border: 0;
}

.process-principles-grid article:nth-child(1) {
    border-top: 6px solid var(--primary);
}

.process-principles-grid article:nth-child(2) {
    border-top: 6px solid var(--teal);
}

.process-principles-grid article:nth-child(3) {
    border-top: 6px solid var(--gold);
}

.process-principles-grid article::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    aspect-ratio: 1;
    border: 1px solid var(--white);
    transform: rotate(18deg);
    pointer-events: none;
}

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

.process-deliverables.checklist-band li {
    background: var(--white);
    border: 1px solid var(--line);
}

.process-deliverables.checklist-band li {
    padding-left: 18px;
}

.process-deliverables.checklist-band li::before {
    content: none;
}

.about-story {
    background: var(--white);
}

.section.statement.about-best-fit {
    background: var(--paper);
}

.about-best-fit.checklist-band li {
    background: var(--white);
    border: 1px solid var(--line);
    padding-left: 18px;
}

.about-best-fit.checklist-band li::before {
    content: none;
}

.insight-grid p:not(.eyebrow),
.contact-next li,
.checklist-band li {
    color: var(--muted);
}

.checklist-band {
    align-items: start;
}

.checklist-band ul,
.contact-next ul,
.contact-next ol {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.checklist-band li,
.contact-next li {
    position: relative;
    padding: 16px 18px 16px 48px;
    background: var(--paper);
    font-weight: 800;
}

.checklist-band li::before,
.contact-next li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 20px;
    width: 10px;
    aspect-ratio: 1;
    background: var(--primary);
}

.checklist-band--no-marker li {
    padding-left: 18px;
}

.checklist-band--accented li:nth-child(1) {
    border-top: 6px solid var(--primary);
}

.checklist-band--accented li:nth-child(2) {
    border-top: 6px solid var(--teal);
}

.checklist-band--accented li:nth-child(3) {
    border-top: 6px solid var(--gold);
}

.checklist-band--no-marker li::before {
    content: none;
}

.section.related-solutions--accented .related-solution-grid article:nth-child(4n + 1) {
    border-top: 6px solid var(--primary);
}

.section.related-solutions--accented .related-solution-grid article:nth-child(4n + 2) {
    border-top: 6px solid var(--teal);
}

.section.related-solutions--accented .related-solution-grid article:nth-child(4n + 3) {
    border-top: 6px solid var(--gold);
}

.section.related-solutions--accented .related-solution-grid article:nth-child(4n + 4) {
    border-top: 6px solid var(--primary-soft);
}

.timeline {
    display: grid;
    gap: 1px;
}

.timeline-step {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 28px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.timeline > .timeline-step:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.timeline-step span {
    color: var(--primary);
    font-weight: 900;
}

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

.values-grid h2 {
    overflow-wrap: anywhere;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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

.form-fields[hidden] {
    display: none !important;
}

.contact-calendar-header h2 {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: clamp(1.42rem, 2.2vw, 2rem);
}

.contact-calendar-header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

.contact-calendar-shell {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.contact-calendar-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
}

.contact-calendar-current-month {
    margin: 0;
    text-align: center;
    font-size: 0.96rem;
    font-weight: 900;
    text-transform: capitalize;
}

.button.calendar-nav-button {
    min-height: 40px;
    min-width: 40px;
    padding: 8px 10px;
    color: var(--ink);
    border-color: var(--line);
    background: var(--white);
    font-size: 1.05rem;
    line-height: 1;
}

.button.calendar-nav-button:not([disabled]):hover {
    border-color: rgba(89, 48, 104, 0.42);
    background: #fff;
}

.button.calendar-nav-button[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.button.calendar-nav-button[disabled]:hover {
    border-color: var(--line);
    background: var(--white);
    transform: none;
    box-shadow: none;
}

.contact-calendar-month {
    display: grid;
}

.calendar-loading {
    display: grid;
    min-height: 220px;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 88% 0%, rgba(90, 24, 154, 0.08), transparent 52%),
        #fbfaf7;
    color: var(--muted);
    text-align: center;
}

.calendar-loading p {
    margin: 0;
    font-size: 0.94rem;
    font-weight: 700;
}

.calendar-loading-spinner {
    width: 34px;
    aspect-ratio: 1;
    border: 3px solid rgba(89, 48, 104, 0.24);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: calendar-spin 900ms linear infinite;
}

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

.contact-time-step {
    display: grid;
    gap: 18px;
}

.contact-time-step[hidden] {
    display: none;
}

.contact-time-shell {
    display: grid;
}

.contact-time-slots {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 88% 0%, rgba(90, 24, 154, 0.08), transparent 52%),
        #fbfaf7;
}

.calendar-hour-button {
    min-height: 44px;
    border: 1px solid rgba(89, 48, 104, 0.2);
    color: var(--ink);
    background: var(--white);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 160ms ease,
        color 160ms ease,
        border-color 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease;
}

.calendar-hour-button:hover,
.calendar-hour-button:focus-visible {
    border-color: rgba(89, 48, 104, 0.52);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(89, 48, 104, 0.12);
}

.calendar-hour-button[disabled] {
    cursor: not-allowed;
}

.calendar-hour-button[disabled]:hover,
.calendar-hour-button[disabled]:focus-visible {
    transform: none;
    box-shadow: none;
}

.calendar-hour-button.is-selected {
    border: 3px solid var(--white);
    box-shadow: 0 12px 26px rgba(89, 48, 104, 0.28);
}

.calendar-hour-button.is-random-occupied {
    border-color: rgba(117, 20, 20, 0.58);
    color: #fff3f2;
    background:
        linear-gradient(145deg, rgba(141, 30, 28, 0.9), rgba(79, 8, 8, 0.9)),
        var(--white);
}

.calendar-month-panel {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 88% 0%, rgba(90, 24, 154, 0.08), transparent 52%),
        #fbfaf7;
}

.calendar-month-title {
    margin: 0;
    text-transform: capitalize;
    font-size: 0.95rem;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 5px;
}

.calendar-weekdays span {
    display: grid;
    min-height: 24px;
    place-items: center;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.calendar-day-empty {
    min-height: 40px;
}

.calendar-day-button {
    min-height: 40px;
    border: 1px solid rgba(89, 48, 104, 0.2);
    color: var(--ink);
    background: var(--white);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform 160ms ease,
        color 160ms ease,
        border-color 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease;
}

.calendar-day-button:not([disabled]):hover,
.calendar-day-button:not([disabled]):focus-visible {
    border-color: rgba(89, 48, 104, 0.52);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(89, 48, 104, 0.12);
}

.calendar-day-button.is-past {
    opacity: 0.36;
    cursor: not-allowed;
    box-shadow: none;
}

.calendar-day-button.is-weekend-blocked {
    opacity: 0.36;
    cursor: not-allowed;
    box-shadow: none;
}

.calendar-day-button.is-unavailable,
.calendar-day-button.is-unavailable:hover,
.calendar-day-button.is-unavailable:focus-visible {
    opacity: 1;
    cursor: not-allowed;
    border-color: rgba(89, 48, 104, 0.07);
    color: rgba(30, 22, 36, 0.36);
    background: rgba(255, 255, 255, 0.36);
    transform: none;
    box-shadow: none;
    transition: none;
}

.calendar-day-button[disabled]:hover,
.calendar-day-button[disabled]:focus-visible {
    border-color: rgba(89, 48, 104, 0.2);
    transform: none;
    box-shadow: none;
}

.calendar-day-button[data-tooltip] {
    position: relative;
}

.calendar-hour-button[data-tooltip] {
    position: relative;
}

.calendar-day-button[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    padding: 7px 10px;
    border: 1px solid #4a1f68;
    background: #4a1f68;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 4;
    box-shadow: 0 10px 20px rgba(89, 48, 104, 0.26);
}

.calendar-hour-button[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    padding: 7px 10px;
    border: 1px solid #4a1f68;
    background: #4a1f68;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 4;
    box-shadow: 0 10px 20px rgba(89, 48, 104, 0.26);
}

.calendar-day-button[data-tooltip]:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 4px);
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 1px solid #4a1f68;
    border-bottom: 1px solid #4a1f68;
    background: #4a1f68;
    pointer-events: none;
    z-index: 3;
}

.calendar-hour-button[data-tooltip]:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 4px);
    transform: translateX(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 1px solid #4a1f68;
    border-bottom: 1px solid #4a1f68;
    background: #4a1f68;
    pointer-events: none;
    z-index: 3;
}

.calendar-day-button.is-selected {
    border: 3px solid var(--white);
    box-shadow: 0 12px 26px rgba(89, 48, 104, 0.24);
}

.calendar-day-button.is-selected.is-today {
    border-color: var(--white);
}

.calendar-day-button.is-coverage-critical {
    border-color: rgba(186, 108, 24, 0.55);
    color: #7a3005;
    background:
        linear-gradient(145deg, rgba(255, 190, 109, 0.78), rgba(238, 122, 43, 0.78)),
        var(--white);
}

.calendar-day-button.is-selected.is-coverage-critical {
    border-color: var(--white);
}

.calendar-day-button.is-today {
    border-color: var(--dd-purple-light);
    border-width: 2px;
}

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

.contact-form-step[hidden],
.contact-selected-day[hidden] {
    display: none;
}

.contact-selected-day {
    padding: 18px 20px;
    border: 1px solid rgba(89, 48, 104, 0.26);
    background:
        radial-gradient(circle at top right, rgba(89, 48, 104, 0.13), transparent 45%),
        linear-gradient(150deg, #ffffff, #f5f0ff);
    box-shadow: 0 20px 44px rgba(23, 23, 23, 0.14);
    transform-origin: 50% 0%;
}

.contact-selected-day--time {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
    row-gap: 8px;
    align-items: start;
    padding-right: 20px;
}

.contact-selected-day--time .eyebrow {
    grid-column: 1;
    min-width: 0;
    color: rgba(255, 255, 255, 0.78) !important;
}

.contact-selected-day--time .contact-selected-day-value {
    grid-column: 1 / -1;
    min-width: 0;
}

.contact-selected-day.is-zooming {
    animation: selected-day-pop 340ms cubic-bezier(0.2, 0.86, 0.24, 1);
}

.contact-selected-day .eyebrow {
    margin-bottom: 8px;
}

.contact-selected-day-value {
    margin: 0;
    font-size: clamp(1.1rem, 1.6vw, 1.34rem);
    font-weight: 900;
    text-transform: capitalize;
}

.form-main-fields {
    display: grid;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 88% 0%, rgba(90, 24, 154, 0.08), transparent 52%),
        #fbfaf7;
    box-shadow: 0 20px 44px rgba(23, 23, 23, 0.12);
}

.form-main-fields[hidden] {
    display: none;
}

.form-main-fields .field-submit {
    justify-self: start;
}

.form-submit-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
    min-height: 56px;
}

.form-inline-status {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.92rem;
    line-height: 1.2;
}

.form-inline-status[hidden] {
    display: none;
}

.form-inline-status.is-loading {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
}

.form-inline-status.is-loading::before {
    content: "";
    width: 18px;
    aspect-ratio: 1;
    border: 2px solid rgba(89, 48, 104, 0.24);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: calendar-spin 900ms linear infinite;
}

.form-main-fields label > span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.button.calendar-back {
    margin-top: 16px;
    color: var(--ink);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.84);
}

.button.calendar-back:hover {
    border-color: rgba(89, 48, 104, 0.36);
    background: #fff;
}

.button.calendar-back--compact {
    position: absolute;
    top: 12px;
    right: 12px;
    margin: 0;
    min-height: 34px;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 800;
}

.contact-selected-day--time .button.calendar-back--compact {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
}

.form-status {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.form-status.is-success {
    display: grid;
    min-height: 160px;
    align-content: center;
    padding: 24px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    line-height: 1.35;
}

.form-status[hidden] {
    display: none;
}

.contact-form .button[disabled] {
    opacity: 0.64;
    cursor: progress;
}

.contact-form .button[disabled]:hover,
.contact-form .button[disabled]:focus-visible {
    transform: none;
}

.contact-form .button.primary[disabled]:hover,
.contact-form .button.primary[disabled]:focus-visible {
    background: var(--primary);
}

.contact-modal .contact-form .button.primary[disabled]:hover,
.contact-modal .contact-form .button.primary[disabled]:focus-visible {
    color: var(--dd-black);
    background: var(--dd-white);
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.newsletter-form label {
    min-width: 0;
}

.newsletter-form .form-status {
    grid-column: auto;
}

.newsletter-form .button {
    width: 100%;
}

.newsletter-form .form-status.is-success {
    min-height: 112px;
}

.newsletter-form .button[disabled] {
    opacity: 0.64;
    cursor: progress;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

@keyframes selected-day-pop {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

input,
textarea {
    width: 100%;
    border: 1px solid #c9c2b9;
    padding: 14px 15px;
    color: var(--ink);
    background: #fbfaf7;
    font: inherit;
}

input:focus,
textarea:focus {
    outline: 3px solid rgba(89, 48, 104, 0.2);
    border-color: var(--primary);
}

.contact-details {
    display: grid;
    gap: 12px;
    padding: 28px;
    background: var(--ink);
    color: var(--white);
}

.contact-details a {
    color: var(--white);
    font-weight: 800;
}

.contact-next {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
    column-gap: clamp(24px, 5vw, 64px);
    row-gap: clamp(12px, 1.2vw, 32px);
    background: var(--white);
}

.contact-next > .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.contact-next > div,
.contact-next aside {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4vw, 42px);
    background: var(--paper);
    border: 0;
}

.contact-next > div {
    border-top: 6px solid var(--primary);
}

.contact-next > aside {
    border-top: 6px solid var(--teal);
}

.contact-next > div > *,
.contact-next aside > * {
    position: relative;
    z-index: 1;
}

.contact-next > div::after,
.contact-next aside::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    aspect-ratio: 1;
    border: 1px solid var(--white);
    transform: rotate(18deg);
    z-index: 0;
    pointer-events: none;
}

.contact-next li {
    background: var(--white);
    border: 1px solid var(--line);
    padding-left: 18px;
}

.contact-next li::before {
    content: none;
}

.contact-modal[hidden] {
    display: none;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    align-items: center;
    justify-items: center;
    overflow-y: auto;
    padding: clamp(16px, 4vw, 46px);
}

.contact-modal-backdrop {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(90, 24, 154, 0.22), transparent 28%),
        rgba(10, 10, 10, 0.62);
    backdrop-filter: blur(8px);
}

.contact-modal-panel {
    --dd-cta-section-height: min(760px, calc(100vh - 48px));
    --dd-cta-divider-width: clamp(52px, 5vw, 72px);
    --dd-cta-panel-padding-block: clamp(42px, 6vw, 76px);
    --dd-cta-panel-padding-inline: clamp(28px, 5vw, 70px);
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin-block: auto;
    grid-template-columns: minmax(0, var(--dd-split-left)) minmax(380px, var(--dd-split-right));
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.44);
}

.contact-modal-copy {
    display: grid;
    align-content: center;
}

.contact-modal-copy p:not(.eyebrow) {
    max-width: 460px;
    color: var(--muted);
    font-size: 1.08rem;
}

.contact-modal .contact-form {
    position: relative;
    z-index: 4;
    align-self: center;
    width: min(620px, calc(100% - 48px));
    margin-inline: auto;
    padding: 0;
    color: var(--dd-white);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.contact-modal-panel .cta-band-panel--dark {
    padding-left: calc(var(--dd-cta-divider-width) * 2.6);
}

.contact-modal .form-fields {
    display: grid;
    gap: 18px;
}

.contact-modal .contact-form label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-modal .contact-form-step,
.contact-modal .contact-form .form-status,
.contact-modal .contact-form .contact-calendar-step,
.contact-modal .contact-form .contact-selected-day {
    grid-column: 1 / -1;
}

.contact-modal .button.calendar-nav-button {
    color: var(--dd-white);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.contact-modal .button.calendar-nav-button:not([disabled]):hover {
    color: var(--dd-black);
    background: var(--dd-white);
    border-color: var(--dd-white);
}

.contact-modal .button.calendar-nav-button[disabled]:hover {
    color: var(--dd-white);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: none;
    box-shadow: none;
}

.contact-modal .calendar-month-panel {
    background:
        radial-gradient(circle at 100% 0%, rgba(199, 125, 255, 0.22), transparent 56%),
        rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-modal .calendar-loading {
    border-color: rgba(255, 255, 255, 0.2);
    background:
        radial-gradient(circle at 100% 0%, rgba(199, 125, 255, 0.22), transparent 56%),
        rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
}

.contact-modal .calendar-loading-spinner {
    border-color: rgba(255, 255, 255, 0.24);
    border-top-color: var(--dd-white);
}

.contact-modal .calendar-month-title,
.contact-modal .calendar-weekdays span,
.contact-modal .contact-calendar-header p,
.contact-modal .contact-calendar-current-month {
    color: rgba(255, 255, 255, 0.82);
}

.contact-modal .calendar-day-button {
    border-color: rgba(255, 255, 255, 0.26);
    color: var(--dd-white);
    background: rgba(255, 255, 255, 0.09);
}

.contact-modal .calendar-day-button:not([disabled]):hover,
.contact-modal .calendar-day-button:not([disabled]):focus-visible {
    border-color: rgba(255, 255, 255, 0.52);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.contact-modal .calendar-day-button[disabled]:hover,
.contact-modal .calendar-day-button[disabled]:focus-visible {
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: none;
}

.contact-modal .calendar-day-button.is-unavailable,
.contact-modal .calendar-day-button.is-unavailable:hover,
.contact-modal .calendar-day-button.is-unavailable:focus-visible {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.03);
    transform: none;
    box-shadow: none;
    transition: none;
}

.contact-modal .calendar-day-button.is-selected {
    border: 3px solid var(--dd-white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.contact-modal .calendar-day-button.is-selected.is-today {
    border-color: var(--dd-white);
}

.contact-modal .calendar-day-button.is-coverage-critical {
    border-color: rgba(255, 205, 146, 0.7);
    color: #4f1e00;
    background:
        linear-gradient(145deg, rgba(255, 197, 122, 0.86), rgba(240, 115, 44, 0.86)),
        rgba(255, 255, 255, 0.09);
}

.contact-modal .calendar-day-button.is-selected.is-coverage-critical {
    border-color: var(--dd-white);
}

.contact-modal .calendar-day-button.is-today {
    border-color: var(--dd-purple-highlight);
}

.contact-modal .contact-time-slots {
    border-color: rgba(255, 255, 255, 0.2);
    background:
        radial-gradient(circle at 100% 0%, rgba(199, 125, 255, 0.22), transparent 56%),
        rgba(255, 255, 255, 0.08);
}

.contact-modal .calendar-hour-button {
    border-color: rgba(255, 255, 255, 0.26);
    color: var(--dd-white);
    background: rgba(255, 255, 255, 0.09);
}

.contact-modal .calendar-hour-button:hover,
.contact-modal .calendar-hour-button:focus-visible {
    border-color: rgba(255, 255, 255, 0.52);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.24);
}

.contact-modal .calendar-hour-button.is-selected {
    border: 3px solid var(--dd-white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.contact-modal .calendar-hour-button.is-random-occupied {
    border-color: rgba(117, 20, 20, 0.58);
    color: #fff3f2;
    background:
        linear-gradient(145deg, rgba(141, 30, 28, 0.9), rgba(79, 8, 8, 0.9)),
        rgba(255, 255, 255, 0.09);
}

.contact-modal .contact-selected-day {
    border-color: rgba(255, 255, 255, 0.3);
    background:
        radial-gradient(circle at top right, rgba(199, 125, 255, 0.26), transparent 55%),
        rgba(255, 255, 255, 0.1);
}

.contact-modal .contact-selected-day-value {
    color: var(--dd-white);
}

.contact-modal .button.calendar-back {
    color: var(--dd-white);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.contact-modal .button.calendar-back:hover {
    color: var(--dd-black);
    background: var(--dd-white);
    border-color: var(--dd-white);
}

.contact-modal .button.calendar-back--compact {
    top: 10px;
    right: 10px;
}

.contact-modal .form-main-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    border-color: rgba(255, 255, 255, 0.2);
    background:
        radial-gradient(circle at 100% 0%, rgba(199, 125, 255, 0.22), transparent 56%),
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.contact-modal .form-main-fields .field-company,
.contact-modal .form-main-fields .field-message,
.contact-modal .form-main-fields .field-submit {
    grid-column: 1 / -1;
}

.contact-modal .form-submit-row {
    grid-column: 1 / -1;
}

.contact-modal .form-inline-status {
    color: rgba(255, 255, 255, 0.82);
}

.contact-modal .form-inline-status.is-loading::before {
    border-color: rgba(255, 255, 255, 0.24);
    border-top-color: var(--dd-white);
}

.contact-modal .contact-form input,
.contact-modal .contact-form textarea {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.96);
}

.contact-modal .form-main-fields label > span {
    color: rgba(255, 255, 255, 0.82);
}

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

.contact-modal .contact-form .button.primary {
    min-height: 56px;
    color: var(--dd-black);
    background: var(--dd-white);
}

.contact-modal .contact-form .button.primary:hover {
    color: var(--dd-white);
    background: var(--dd-purple);
}

.contact-form .button.primary[disabled]:hover,
.contact-form .button.primary[disabled]:focus-visible {
    transform: none !important;
    background: var(--primary) !important;
    color: var(--white) !important;
}

.contact-modal .contact-form .button.primary[disabled]:hover,
.contact-modal .contact-form .button.primary[disabled]:focus-visible {
    transform: none !important;
    color: var(--dd-black) !important;
    background: var(--dd-white) !important;
}

.contact-modal .form-status {
    color: rgba(255, 255, 255, 0.76);
}

.contact-modal .form-status.is-success {
    color: var(--dd-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.contact-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 6;
    display: grid;
    place-items: center;
    width: 44px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: var(--dd-white);
    cursor: pointer;
    transition:
        background 180ms ease,
        border-color 180ms ease,
        transform 180ms ease;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
    background: var(--dd-white);
    border-color: var(--dd-white);
    color: var(--dd-black);
    transform: translateY(-1px);
}

.contact-modal-close span {
    grid-area: 1 / 1;
    width: 18px;
    height: 2px;
    background: currentColor;
}

.contact-modal-close span:first-child {
    transform: rotate(45deg);
}

.contact-modal-close span:last-child {
    transform: rotate(-45deg);
}

html.is-contact-modal-open,
body.is-contact-modal-open {
    overflow: hidden;
    height: 100%;
    overscroll-behavior: none;
}

.is-contact-modal-open .site-header,
.is-contact-modal-open main,
.is-contact-modal-open .site-footer,
.is-contact-modal-open .case-topbar,
.is-contact-modal-open .case-page {
    filter: blur(8px);
}

.legal-content {
    display: grid;
    gap: 18px;
}

.legal-content article {
    padding: clamp(28px, 4vw, 42px);
    background: var(--white);
    border: 1px solid var(--line);
}

.legal-content--media article,
.legal-content--legal article,
.legal-content--privacy article,
.legal-content--cookies article,
.legal-content--terms article {
    position: relative;
    overflow: hidden;
}

.legal-content--media article::after,
.legal-content--legal article::after,
.legal-content--privacy article::after,
.legal-content--cookies article::after,
.legal-content--terms article::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    aspect-ratio: 1;
    border: 1px solid rgba(39, 107, 111, 0.18);
    transform: rotate(18deg);
}

.legal-content p {
    max-width: 920px;
    color: var(--muted);
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(130px, 0.42fr) minmax(130px, 0.42fr) minmax(190px, 0.7fr);
    gap: clamp(22px, 4vw, 64px);
    padding: clamp(46px, 7vw, 82px) clamp(20px, 5vw, 72px);
    color: rgba(255, 255, 255, 0.76);
    background: var(--ink);
}

.site-footer p,
.site-footer h2 {
    margin-bottom: 0;
}

.footer-brand {
    display: grid;
    align-content: start;
    gap: 18px;
}

.footer-brand .brand {
    color: var(--white);
}

.brand--footer {
    align-self: start;
}

.footer-logo {
    display: block;
    width: min(100%, 260px);
    height: auto;
}

.footer-brand p {
    max-width: 300px;
}

.footer-newsletter {
    display: none;
    align-content: start;
    gap: 14px;
}

.contact-calendar-header[hidden],
.contact-calendar-nav[hidden],
.contact-calendar-month[hidden],
.calendar-loading[hidden] {
    display: none !important;
}
.footer-newsletter h2 {
    color: var(--white);
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    line-height: 1.1;
}

.footer-newsletter p {
    max-width: 390px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 28px;
    aspect-ratio: 1;
    color: var(--social-color, rgba(255, 255, 255, 0.76));
    text-decoration: none;
    transition:
        transform 180ms ease,
        color 180ms ease,
        opacity 180ms ease,
        filter 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    opacity: 1;
    filter: saturate(1.2) brightness(1.12);
    transform: translateY(-2px) scale(1.08);
}

.footer-social-link--x {
    --social-color: #ffffff;
}

.footer-social-link--facebook {
    --social-color: #1877f2;
}

.footer-social-link--instagram {
    --social-color: #e4405f;
}

.footer-social-link--linkedin {
    --social-color: #0a66c2;
}

.footer-social svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-link--x svg {
    fill: currentColor;
    stroke: none;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 9px;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 96px);
}

.blog-pagination span {
    font-weight: 700;
}

.footer-local-seo {
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-local-seo h2,
.footer-local-seo h3 {
    color: var(--white);
}

.footer-local-seo h2 {
    font-size: 0.9rem;
    line-height: 1.2;
}

.footer-local-seo h3 {
    margin: 0 0 6px;
    font-size: 0.92rem;
    line-height: 1.2;
}

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

.footer-local-seo-group {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-local-seo-group a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
}

.footer-links h2 {
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.2;
}

.who-intro {
    border-bottom: 1px solid var(--line);
}

.who-story {
    display: grid;
    gap: clamp(34px, 7vw, 88px);
    padding-top: 0;
    background: var(--white);
}

.who-story article {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 0;
    padding-block: clamp(28px, 5vw, 56px);
    border-top: 1px solid var(--line);
}

.who-story article:first-child {
    border-top: 0;
}

.who-story article:not(.who-story-has-image) {
    max-width: 900px;
}

.who-story-has-image {
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
    gap: clamp(28px, 5vw, 72px);
}

.who-story-has-image:nth-child(even) {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.88fr);
}

.who-story-has-image:nth-child(even) .who-story-copy {
    grid-column: 2;
}

.who-story-has-image:nth-child(even) .who-story-image {
    grid-column: 1;
    grid-row: 1;
}

.who-story-copy {
    display: grid;
    gap: 16px;
    align-content: center;
}

.who-story h2 {
    position: relative;
    z-index: 1;
    max-width: 780px;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    line-height: 1.08;
}

.who-story p:not(.eyebrow) {
    position: relative;
    z-index: 1;
    max-width: 820px;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.25vw, 1.14rem);
    line-height: 1.8;
}

.who-story .eyebrow::after {
    content: none;
}

.who-story-image {
    position: relative;
    overflow: hidden;
    margin: 0;
    aspect-ratio: 4 / 3;
    background: var(--ink);
}

.who-story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.who-story-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heart-intro {
    border-bottom: 1px solid var(--line);
}

.heart-mission {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    background: var(--white);
    color: var(--ink);
}

.heart-mission h2,
.heart-mission h3,
.heart-mission h4 {
    color: var(--ink);
}

.heart-mission .eyebrow {
    color: #593068 !important;
}

.heart-mission .eyebrow,
.heart-values-intro .eyebrow {
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.heart-mission-copy,
.heart-mission-list {
    display: grid;
    gap: 18px;
}

.heart-statement {
    color: var(--ink);
    font-size: clamp(1.22rem, 2.4vw, 1.75rem);
    line-height: 1.35;
}

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

.heart-check-grid article {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 230px;
    padding: clamp(24px, 3.5vw, 34px);
    background: var(--paper);
    border: 0;
}

.heart-check-grid article:nth-child(1) {
    border-top: 6px solid var(--primary);
}

.heart-check-grid article:nth-child(2) {
    border-top: 6px solid var(--teal);
}

.heart-check-grid article:nth-child(3) {
    border-top: 6px solid var(--gold);
}

.heart-check-grid article:nth-child(4) {
    border-top: 6px solid var(--primary-soft);
}

.heart-check-grid article::after,
.heart-values article::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    aspect-ratio: 1;
    border: 1px solid rgba(39, 107, 111, 0.18);
    transform: rotate(18deg);
}

.heart-check-grid span {
    display: none;
}

.heart-check-grid p {
    color: var(--muted);
}

.heart-values-intro {
    max-width: 920px;
    padding-bottom: clamp(28px, 5vw, 46px);
}

.heart-values {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-top: 0;
    background: var(--paper);
}

.section.heart-values {
    border-top: 0;
}

.heart-values article {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 330px;
    padding: clamp(30px, 5vw, 54px);
    background: var(--white);
    border: 1px solid var(--line);
}

.heart-values article:nth-child(1) {
    border-top: 6px solid var(--primary);
}

.heart-values article:nth-child(2) {
    border-top: 6px solid var(--teal);
}

.heart-values article:nth-child(3) {
    border-top: 6px solid var(--gold);
}

.heart-values article:nth-child(4) {
    border-top: 6px solid var(--primary-soft);
}

.heart-values h2 {
    max-width: 660px;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.18;
}

.heart-values p {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.72;
}

.heart-values .heart-value-emphasis {
    color: var(--ink);
    font-weight: 700;
}

.grants-intro {
    max-width: 880px;
    padding-bottom: clamp(28px, 5vw, 46px);
}

.grants-intro p {
    color: var(--muted);
    font-size: 1.08rem;
}

.grants-list {
    display: grid;
    gap: 16px;
    padding-top: 0;
    background: var(--paper);
}

.section.grants-list {
    border-top: 0;
}

.grant-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(72px, 0.2fr) minmax(0, 1fr) minmax(240px, 0.45fr);
    gap: clamp(22px, 4vw, 54px);
    align-items: start;
    padding: clamp(30px, 5vw, 56px);
    background: var(--white);
}

.grant-card::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 96px;
    aspect-ratio: 1;
    border: 1px solid rgba(39, 107, 111, 0.18);
    transform: rotate(18deg);
}

.grant-year {
    color: var(--accent);
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1;
}

.grant-copy {
    display: grid;
    gap: 16px;
}

.grant-copy h2 {
    max-width: 820px;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.16;
}

.grant-copy p {
    max-width: 860px;
    color: var(--muted);
    line-height: 1.72;
}

.grant-logos {
    display: grid;
    gap: 14px;
    align-items: start;
    padding: 18px;
    background: var(--white);
    border: 0;
}

.grant-logos img {
    display: block;
    width: 100%;
    max-height: 140px;
    object-fit: contain;
}

.footer-contact {
    display: grid;
    align-content: start;
    gap: 8px;
    font-style: normal;
    text-align: right;
    overflow-wrap: anywhere;
}

.site-footer a {
    color: var(--white);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    left: clamp(16px, 3vw, 34px);
    right: clamp(16px, 3vw, 34px);
    bottom: clamp(16px, 3vw, 34px);
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    padding: clamp(22px, 3vw, 32px);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: 0 22px 70px rgba(23, 23, 23, 0.22);
    backdrop-filter: blur(18px);
}

.cookie-banner[hidden],
.cookie-manage[hidden] {
    display: none;
}

.cookie-banner h2 {
    margin-bottom: 8px;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.cookie-banner p {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--muted);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.cookie-banner .button.secondary {
    color: var(--ink);
    border-color: var(--line);
    background: var(--paper);
}

.cookie-manage {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    width: 70px;
    aspect-ratio: 1;
    padding: 0;
    color: var(--paper);
    background: transparent;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    transform: translate(-24px, 24px);
    transition: color 160ms ease, transform 160ms ease;
}

.cookie-manage:hover,
.cookie-manage:focus-visible {
    color: var(--white);
    transform: translate(-6px, 6px);
}

.cookie-manage svg {
    width: 54px;
    height: 54px;
    fill: var(--primary);
    stroke: currentColor;
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 8px 14px rgba(23, 23, 23, 0.22));
}

.case-shell {
    background: #111111;
}

.case-topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    min-height: 58px;
    padding: 12px clamp(16px, 4vw, 46px);
    color: var(--white);
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.case-back-icon {
    display: none;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.case-topbar a,
.case-language-switcher a {
    color: rgba(255, 255, 255, 0.74);
    font-weight: 900;
    text-decoration: none;
}

.case-topbar a:hover,
.case-language-switcher a:hover,
.case-language-switcher a[aria-current="true"] {
    color: var(--white);
}

.case-language-switcher a[aria-current="true"] {
    display: none;
}

.case-topbar strong {
    text-align: center;
}

.case-language-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.case-page {
    min-height: 100vh;
    background: #111111;
    color: var(--white);
}

.case-theme-operations {
    background: linear-gradient(135deg, #111111, #1e3335 55%, #102225);
}

.case-theme-web {
    background: linear-gradient(135deg, #17101c, #593068 58%, #c4984c);
}

.case-theme-finance {
    background: linear-gradient(135deg, #073322, #0f6b49 58%, #d6c15a);
}

.case-theme-neuro {
    background: linear-gradient(135deg, #060710, #111a36 58%, #2ae3ff);
}

.case-theme-carismatic {
    background: linear-gradient(135deg, #0d0d0d, #25211b 58%, #c8a653);
}

.case-theme-dlk {
    background: linear-gradient(135deg, #061a28, #0f6b7b 58%, #74d4e8);
}

.case-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(78vh - 58px);
    display: grid;
    align-content: end;
    padding: clamp(84px, 12vw, 150px) clamp(20px, 6vw, 96px);
}

.case-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.55;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.7) 45%, rgba(17, 17, 17, 0.22)),
        var(--case-image, linear-gradient(135deg, #111111, #2b1714)) center / cover no-repeat;
}

.case-hero > * {
    position: relative;
    z-index: 1;
}

.case-hero h1 {
    max-width: 980px;
}

.case-hero p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.case-meta,
.case-story,
.case-results {
    margin-inline: clamp(20px, 6vw, 96px);
}

.case-nav {
    position: sticky;
    top: 58px;
    z-index: 15;
    display: flex;
    gap: 4px;
    padding: 0 clamp(20px, 6vw, 96px);
    background: rgba(5, 5, 5, 0.68);
    border-block: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.case-nav a {
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 900;
    text-decoration: none;
}

.case-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.case-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.case-meta div {
    display: grid;
    gap: 6px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.08);
}

.case-meta span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.case-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 90px);
    padding-block: clamp(70px, 10vw, 130px);
}

.case-story p:not(.eyebrow),
.case-results li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.case-results {
    padding-bottom: clamp(70px, 10vw, 130px);
}

.case-results ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.case-results li {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.article-page {
    background: var(--paper);
}

.article-hero,
.article-body,
.article-image {
    width: min(860px, calc(100% - 40px));
    margin-inline: auto;
}

.article-hero {
    padding-block: clamp(72px, 10vw, 130px) 44px;
}

.article-hero h1 {
    color: var(--ink);
}

.article-hero p:not(.eyebrow) {
    color: var(--muted);
    font-size: clamp(1.12rem, 1.8vw, 1.35rem);
}

.article-body {
    display: grid;
    gap: 0;
    padding-bottom: clamp(70px, 10vw, 120px);
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.78;
}

.site-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    padding: clamp(34px, 5vw, 58px);
    background: var(--primary-dark);
    color: var(--white);
}

.site-newsletter {
    padding-inline: clamp(20px, 5vw, 72px);
}

.site-newsletter--light {
    background: var(--paper);
    color: var(--ink);
    border-top: 1px solid var(--line);
}

.site-newsletter--light p:not(.eyebrow) {
    color: var(--muted);
}

.site-newsletter--light .newsletter-form input {
    border-color: #c9c2b9;
    background: var(--white);
}

.site-newsletter--light .form-status {
    color: var(--muted);
}

.site-newsletter p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.78);
}

.site-newsletter .newsletter-form input {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.96);
}

.site-newsletter .form-status {
    color: rgba(255, 255, 255, 0.76);
}

.site-newsletter .form-status.is-success {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.site-newsletter.site-newsletter--light {
    background: var(--paper);
    color: var(--ink);
    border-top: 1px solid var(--line);
}

.site-newsletter.site-newsletter--light h2 {
    color: var(--ink);
}

.site-newsletter.site-newsletter--light p:not(.eyebrow) {
    color: var(--muted);
}

.site-newsletter.site-newsletter--light .newsletter-form input {
    border-color: #b9afa4;
    background: var(--white);
}

.site-newsletter.site-newsletter--light .form-status {
    color: var(--muted);
}

.site-newsletter.site-newsletter--light.bg-white {
    background: var(--white);
}

.article-image {
    margin-block: 0 clamp(48px, 7vw, 84px);
}

.article-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.article-body section {
    padding-top: 34px;
    border-top: 1px solid var(--line);
}

.article-body > * + * {
    margin-top: 1.15em;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    color: var(--ink);
    line-height: 1.18;
}

.article-body h2 {
    margin-top: clamp(44px, 7vw, 72px);
    padding-top: clamp(28px, 5vw, 42px);
    border-top: 1px solid var(--line);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.article-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.article-body h3 {
    margin-top: clamp(30px, 5vw, 48px);
    font-size: clamp(1.24rem, 2vw, 1.55rem);
}

.article-body h4 {
    margin-top: 28px;
    font-size: 1.12rem;
}

.article-body p,
.article-body li {
    color: var(--muted);
}

.article-body strong {
    color: var(--ink);
    font-weight: 700;
}

.article-body ul,
.article-body ol {
    display: grid;
    gap: 10px;
    margin-left: 0;
    padding-left: 1.25em;
}

.article-body li::marker {
    color: var(--accent);
}

.article-body a {
    color: var(--accent);
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.ops-case {
    color: var(--white);
    background:
        radial-gradient(circle at 78% 10%, rgba(39, 107, 111, 0.42), transparent 28%),
        linear-gradient(145deg, #0b0d0e, #14292b 52%, #0d1618);
}

.ops-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(82vh - 58px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
    gap: clamp(30px, 7vw, 96px);
    align-items: end;
    padding: clamp(86px, 12vw, 150px) clamp(20px, 6vw, 96px) clamp(46px, 7vw, 84px);
}

.ops-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.36;
    background:
        linear-gradient(90deg, rgba(11, 13, 14, 1), rgba(11, 13, 14, 0.82) 46%, rgba(11, 13, 14, 0.18)),
        var(--ops-image, none) center / cover no-repeat;
}

.ops-hero > * {
    position: relative;
    z-index: 1;
}

.ops-hero-compact {
    min-height: 48vh;
    padding-block: clamp(54px, 8vw, 90px);
}

.ops-hero-compact h1 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.ops-hero h1 {
    max-width: 980px;
}

.ops-hero p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.ops-panel {
    display: grid;
    gap: 8px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
}

.ops-panel span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ops-panel strong + span {
    margin-top: 18px;
}

.ops-nav {
    position: sticky;
    top: 58px;
    z-index: 15;
    display: flex;
    gap: 4px;
    padding: 0 clamp(20px, 6vw, 96px);
    background: rgba(5, 5, 5, 0.72);
    border-block: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.ops-nav a {
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 900;
    text-decoration: none;
}

.ops-nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.ops-nav a[aria-current="page"] {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.ops-before,
.ops-system,
.ops-impact,
.ops-process-page,
.ops-results-page {
    padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 96px);
}

.ops-before {
    background: #f3eee7;
    color: var(--ink);
}

.ops-before h2 {
    max-width: 960px;
}

.ops-friction-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.ops-friction-grid div {
    min-height: 150px;
    padding: 24px;
    color: var(--white);
    background: var(--primary-dark);
    font-weight: 900;
}

.ops-system {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: clamp(32px, 7vw, 96px);
    align-items: center;
}

.ops-system h2 {
    max-width: 720px;
}

.ops-dashboard {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.32);
}

.ops-dashboard-bar,
.ops-chart {
    grid-column: 1 / -1;
    min-height: 90px;
    background:
        linear-gradient(90deg, rgba(196, 152, 76, 0.9) 0 24%, transparent 24% 30%, rgba(39, 107, 111, 0.9) 30% 58%, transparent 58% 64%, rgba(89, 48, 104, 0.94) 64% 100%);
}

.ops-metric {
    min-height: 150px;
    display: grid;
    align-content: end;
    padding: 22px;
    background: rgba(255, 255, 255, 0.1);
}

.ops-metric strong {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1;
}

.ops-metric span {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

.ops-chart {
    min-height: 210px;
    background:
        linear-gradient(180deg, transparent 0 74%, rgba(255, 255, 255, 0.12) 74% 75%, transparent 75%),
        linear-gradient(90deg, rgba(39, 107, 111, 0.95) 0 16%, transparent 16% 22%, rgba(196, 152, 76, 0.95) 22% 42%, transparent 42% 48%, rgba(89, 48, 104, 0.95) 48% 69%, transparent 69% 76%, rgba(255, 255, 255, 0.82) 76% 100%);
}

.ops-impact {
    background: #101112;
}

.ops-impact ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ops-impact li {
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    font-weight: 800;
}

.ops-process-page {
    background: #f3eee7;
    color: var(--ink);
}

.ops-process-page h2,
.ops-results-page h2 {
    max-width: 920px;
}

.ops-process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
}

.ops-process-steps article {
    min-height: 320px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
}

.ops-process-steps span {
    color: var(--primary);
    font-weight: 900;
}

.ops-process-steps p {
    color: var(--muted);
}

.ops-results-page {
    min-height: calc(100vh - 58px);
    display: grid;
    align-content: center;
    background:
        radial-gradient(circle at 82% 18%, rgba(196, 152, 76, 0.24), transparent 28%),
        #101112;
}

.ops-results-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 44px;
}

.ops-results-board div {
    min-height: 260px;
    display: grid;
    align-content: end;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.ops-results-board strong {
    font-size: clamp(3rem, 7vw, 6.4rem);
    line-height: 1;
}

.ops-results-board span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
    font-weight: 900;
}

.finance-case {
    color: #123525;
    background: #f4efd8;
}

.finance-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(82vh - 58px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
    gap: clamp(30px, 7vw, 96px);
    align-items: end;
    padding: clamp(86px, 12vw, 150px) clamp(20px, 6vw, 96px) clamp(46px, 7vw, 84px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(6, 39, 27, 0.96), rgba(6, 39, 27, 0.76) 48%, rgba(6, 39, 27, 0.18)),
        url("/assets/images/case-federation-finance.svg") center / cover no-repeat;
}

.finance-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 8px;
    background: linear-gradient(90deg, #0f6b49, #d6c15a, #ffffff);
}

.finance-hero > * {
    position: relative;
    z-index: 1;
}

.finance-hero-copy h1 {
    max-width: 1000px;
}

.finance-hero-copy p:not(.eyebrow) {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.finance-case .eyebrow {
    color: #123525 !important;
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.finance-hero .eyebrow,
.finance-platform .eyebrow,
.finance-impact .eyebrow {
    color: var(--white) !important;
}

.neuro-case .eyebrow {
    color: #10172f !important;
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.neuro-hero .eyebrow,
.neuro-admin .eyebrow,
.neuro-impact .eyebrow {
    color: var(--white) !important;
}

.car-case .eyebrow {
    color: #17130d !important;
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.car-hero .eyebrow,
.car-leads .eyebrow,
.car-impact .eyebrow {
    color: var(--white) !important;
}

.dlk-case .eyebrow {
    color: #071d2c !important;
    font-size: clamp(1.06rem, 1.7vw, 1.32rem);
}

.dlk-hero .eyebrow,
.dlk-platform .eyebrow,
.dlk-scale .eyebrow {
    color: var(--white) !important;
}

.finance-case .eyebrow::after,
.neuro-case .eyebrow::after,
.car-case .eyebrow::after,
.dlk-case .eyebrow::after {
    content: none;
    display: none;
}

.finance-hero-card {
    display: grid;
    gap: 8px;
    padding: 28px;
    color: #123525;
    background: rgba(244, 239, 216, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.finance-hero-card span,
.finance-hero-card small {
    color: rgba(18, 53, 37, 0.68);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.finance-hero-card > strong {
    margin-bottom: 12px;
}

.finance-hero-card div {
    display: grid;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(18, 53, 37, 0.18);
}

.finance-hero-card div strong {
    color: #0b4f35;
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    line-height: 1;
}

.finance-nav {
    position: sticky;
    top: 58px;
    z-index: 15;
    display: flex;
    gap: 4px;
    padding: 0 clamp(20px, 6vw, 96px);
    background: rgba(244, 239, 216, 0.86);
    border-bottom: 1px solid rgba(18, 53, 37, 0.14);
    backdrop-filter: blur(16px);
}

.finance-nav a {
    padding: 16px 18px;
    color: rgba(18, 53, 37, 0.68);
    font-weight: 900;
    text-decoration: none;
}

.finance-nav a:hover {
    color: #123525;
    background: rgba(15, 107, 73, 0.08);
}

.finance-intro,
.finance-workflow,
.finance-platform,
.finance-modules,
.finance-impact {
    padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 96px);
}

.finance-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 7vw, 90px);
    background: #f4efd8;
}

.finance-intro p:not(.eyebrow),
.finance-platform p,
.finance-flow-grid p {
    color: rgba(18, 53, 37, 0.72);
    font-size: 1.08rem;
}

.finance-workflow {
    background: #ffffff;
}

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

.finance-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(18, 53, 37, 0.16);
    border: 1px solid rgba(18, 53, 37, 0.16);
}

.finance-flow-grid article {
    min-height: 310px;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: clamp(24px, 3vw, 34px);
    background: #f8f5e7;
}

.finance-flow-grid span {
    color: #0f6b49;
    font-weight: 900;
}

.finance-flow-grid h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.08;
}

.finance-platform {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    gap: clamp(34px, 7vw, 96px);
    align-items: center;
    color: var(--white);
    background: #073322;
}

.finance-platform p:not(.eyebrow),
.finance-platform h2 {
    color: inherit;
}

.finance-platform p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.finance-ui {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.finance-ui-header,
.finance-ui-row,
.finance-ui-chart {
    min-height: 82px;
    background: rgba(255, 255, 255, 0.9);
}

.finance-ui-header {
    grid-column: 1 / -1;
    background:
        linear-gradient(90deg, #d6c15a 0 20%, transparent 20% 25%, #ffffff 25% 100%),
        rgba(255, 255, 255, 0.9);
}

.finance-ui-row {
    background:
        linear-gradient(90deg, #0f6b49 0 18%, transparent 18% 25%, rgba(18, 53, 37, 0.2) 25% 100%),
        #ffffff;
}

.finance-ui-chart {
    grid-column: 1 / -1;
    min-height: 190px;
    background:
        linear-gradient(180deg, transparent 0 72%, rgba(18, 53, 37, 0.12) 72% 73%, transparent 73%),
        linear-gradient(90deg, #0f6b49 0 18%, transparent 18% 24%, #d6c15a 24% 42%, transparent 42% 48%, #0b4f35 48% 70%, transparent 70% 76%, rgba(18, 53, 37, 0.28) 76% 100%),
        #ffffff;
}

.finance-modules {
    background: #f4efd8;
}

.finance-modules ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.finance-modules li {
    display: grid;
    padding: 24px;
    color: #123525;
    background: #ffffff;
    border-top: 6px solid #0f6b49;
    font-weight: 900;
}

.finance-modules li:nth-child(2n) {
    border-top-color: #d6c15a;
}

.finance-impact {
    background: #0b4f35;
    color: var(--white);
}

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

.finance-impact-grid article {
    display: grid;
    padding: 26px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.08rem;
    font-weight: 800;
}

.neuro-case {
    color: #10172f;
    background: #f7fbff;
}

.neuro-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(82vh - 58px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
    gap: clamp(30px, 7vw, 96px);
    align-items: end;
    padding: clamp(86px, 12vw, 150px) clamp(20px, 6vw, 96px) clamp(46px, 7vw, 84px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(6, 7, 16, 0.96), rgba(6, 7, 16, 0.78) 48%, rgba(6, 7, 16, 0.08)),
        url("/assets/images/case-neuro-pay.svg") center / cover no-repeat;
}

.neuro-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 8px;
    background: linear-gradient(90deg, #6b5cff, #2ae3ff, #ffffff);
}

.neuro-hero > * {
    position: relative;
    z-index: 1;
}

.neuro-hero h1 {
    max-width: 1000px;
}

.neuro-hero p:not(.eyebrow) {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.neuro-product-card {
    display: grid;
    gap: 8px;
    padding: 28px;
    color: #10172f;
    background: rgba(247, 251, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.neuro-product-card span,
.neuro-product-card small {
    color: rgba(16, 23, 47, 0.62);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.neuro-product-card > strong {
    margin-bottom: 12px;
}

.neuro-product-card div {
    display: grid;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(16, 23, 47, 0.14);
}

.neuro-product-card div strong {
    color: #111a36;
    font-size: clamp(1.45rem, 2.8vw, 2.45rem);
    line-height: 1;
}

.neuro-nav {
    position: sticky;
    top: 58px;
    z-index: 15;
    display: flex;
    gap: 4px;
    padding: 0 clamp(20px, 6vw, 96px);
    background: rgba(247, 251, 255, 0.9);
    border-bottom: 1px solid rgba(16, 23, 47, 0.12);
    backdrop-filter: blur(16px);
}

.neuro-nav a {
    padding: 16px 18px;
    color: rgba(16, 23, 47, 0.64);
    font-weight: 900;
    text-decoration: none;
}

.neuro-nav a:hover {
    color: #10172f;
    background: rgba(42, 227, 255, 0.1);
}

.neuro-intro,
.neuro-gateway,
.neuro-admin,
.neuro-features,
.neuro-impact {
    padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 96px);
}

.neuro-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 7vw, 90px);
    background: #f7fbff;
}

.neuro-intro p:not(.eyebrow),
.neuro-flow p {
    color: rgba(16, 23, 47, 0.7);
    font-size: 1.08rem;
}

.neuro-gateway {
    background: #ffffff;
}

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

.neuro-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(16, 23, 47, 0.14);
    border: 1px solid rgba(16, 23, 47, 0.14);
}

.neuro-flow article {
    min-height: 300px;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: clamp(24px, 3vw, 34px);
    background: #f7fbff;
}

.neuro-flow span {
    color: #6b5cff;
    font-weight: 900;
}

.neuro-flow h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.08;
}

.neuro-admin {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    gap: clamp(34px, 7vw, 96px);
    align-items: center;
    color: var(--white);
    background: #060710;
}

.neuro-admin h2 {
    color: inherit;
}

.neuro-admin-ui {
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
}

.neuro-admin-header,
.neuro-admin-line,
.neuro-admin-methods {
    min-height: 82px;
    background: rgba(255, 255, 255, 0.94);
}

.neuro-admin-header {
    background:
        linear-gradient(90deg, #2ae3ff 0 22%, transparent 22% 28%, #ffffff 28% 100%),
        rgba(255, 255, 255, 0.94);
}

.neuro-admin-line {
    background:
        linear-gradient(90deg, #10172f 0 18%, transparent 18% 25%, rgba(16, 23, 47, 0.18) 25% 70%, transparent 70% 78%, #2ae3ff 78% 100%),
        #ffffff;
}

.neuro-admin-methods {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    align-items: center;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.neuro-admin-methods span {
    display: grid;
    min-height: 56px;
    place-items: center;
    color: #10172f;
    background: #ffffff;
    font-weight: 900;
}

.neuro-features {
    background: #f7fbff;
}

.neuro-features ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.neuro-features li {
    display: grid;
    padding: 24px;
    background: #ffffff;
    border-top: 6px solid #2ae3ff;
    font-weight: 900;
}

.neuro-features li:nth-child(2n) {
    border-top-color: #6b5cff;
}

.neuro-impact {
    background: #111a36;
    color: var(--white);
}

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

.neuro-impact-grid article {
    display: grid;
    padding: 26px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.08rem;
    font-weight: 800;
}

.car-case {
    color: #17130d;
    background: #f7f2e7;
}

.car-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(82vh - 58px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
    gap: clamp(30px, 7vw, 96px);
    align-items: end;
    padding: clamp(86px, 12vw, 150px) clamp(20px, 6vw, 96px) clamp(46px, 7vw, 84px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(13, 13, 13, 0.96), rgba(13, 13, 13, 0.76) 48%, rgba(13, 13, 13, 0.1)),
        url("/assets/images/case-carismatic-odoo.svg") center / cover no-repeat;
}

.car-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 8px;
    background: linear-gradient(90deg, #111111, #c8a653, #f7f2e7);
}

.car-hero > * {
    position: relative;
    z-index: 1;
}

.car-hero h1 {
    max-width: 1000px;
}

.car-hero p:not(.eyebrow) {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.car-card {
    display: grid;
    gap: 8px;
    padding: 28px;
    color: #17130d;
    background: rgba(247, 242, 231, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.44);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.car-card span,
.car-card small {
    color: rgba(23, 19, 13, 0.62);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.car-card > strong {
    margin-bottom: 12px;
}

.car-card div {
    display: grid;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(23, 19, 13, 0.14);
}

.car-card div strong {
    color: #111111;
    font-size: clamp(1.45rem, 2.8vw, 2.45rem);
    line-height: 1;
}

.car-nav {
    position: sticky;
    top: 58px;
    z-index: 15;
    display: flex;
    gap: 4px;
    padding: 0 clamp(20px, 6vw, 96px);
    background: rgba(247, 242, 231, 0.9);
    border-bottom: 1px solid rgba(23, 19, 13, 0.12);
    backdrop-filter: blur(16px);
}

.car-nav a {
    padding: 16px 18px;
    color: rgba(23, 19, 13, 0.64);
    font-weight: 900;
    text-decoration: none;
}

.car-nav a:hover {
    color: #17130d;
    background: rgba(200, 166, 83, 0.14);
}

.car-intro,
.car-stock,
.car-leads,
.car-automation,
.car-impact {
    padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 96px);
}

.car-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 7vw, 90px);
    background: #f7f2e7;
}

.car-intro p:not(.eyebrow),
.car-stock-grid p,
.car-leads p {
    color: rgba(23, 19, 13, 0.7);
    font-size: 1.08rem;
}

.car-stock {
    background: #ffffff;
}

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

.car-stock-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(23, 19, 13, 0.14);
    border: 1px solid rgba(23, 19, 13, 0.14);
}

.car-stock-grid article {
    min-height: 300px;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: clamp(24px, 3vw, 34px);
    background: #f7f2e7;
}

.car-stock-grid span {
    color: #9b7830;
    font-weight: 900;
}

.car-stock-grid h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.08;
}

.car-leads {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    gap: clamp(34px, 7vw, 96px);
    align-items: center;
    color: var(--white);
    background: #0d0d0d;
}

.car-leads h2 {
    color: inherit;
}

.car-leads p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

.car-pipeline {
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
}

.car-pipeline div {
    min-height: 86px;
    display: grid;
    place-items: center;
    padding: 18px;
    color: #17130d;
    background: #f7f2e7;
    border-left: 8px solid #c8a653;
    font-weight: 900;
}

.car-automation {
    background: #f7f2e7;
}

.car-automation ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.car-automation li {
    display: grid;
    padding: 24px;
    background: #ffffff;
    border-top: 6px solid #111111;
    font-weight: 900;
}

.car-automation li:nth-child(2n) {
    border-top-color: #c8a653;
}

.car-impact {
    background: #25211b;
    color: var(--white);
}

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

.car-impact-grid article {
    display: grid;
    padding: 26px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.08rem;
    font-weight: 800;
}

.dlk-case {
    color: #071d2c;
    background: #f6fbfc;
}

.dlk-hero {
    position: relative;
    overflow: hidden;
    min-height: calc(82vh - 58px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
    gap: clamp(30px, 7vw, 96px);
    align-items: end;
    padding: clamp(86px, 12vw, 150px) clamp(20px, 6vw, 96px) clamp(46px, 7vw, 84px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(6, 26, 40, 0.96), rgba(6, 26, 40, 0.76) 48%, rgba(6, 26, 40, 0.08)),
        url("/assets/images/case-digitala-lagkassan.svg") center / cover no-repeat;
}

.dlk-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 8px;
    background: linear-gradient(90deg, #061a28, #34b6cc, #ffffff);
}

.dlk-hero > * {
    position: relative;
    z-index: 1;
}

.dlk-hero h1 {
    max-width: 1000px;
}

.dlk-hero p:not(.eyebrow) {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
}

.dlk-card {
    display: grid;
    gap: 8px;
    padding: 28px;
    color: #071d2c;
    background: rgba(246, 251, 252, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.46);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.dlk-card span,
.dlk-card small {
    color: rgba(7, 29, 44, 0.62);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dlk-card > strong {
    margin-bottom: 12px;
}

.dlk-card div {
    display: grid;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(7, 29, 44, 0.14);
}

.dlk-card div strong {
    color: #0c6170;
    font-size: clamp(1.45rem, 2.8vw, 2.45rem);
    line-height: 1;
}

.dlk-nav {
    position: sticky;
    top: 58px;
    z-index: 15;
    display: flex;
    gap: 4px;
    padding: 0 clamp(20px, 6vw, 96px);
    background: rgba(246, 251, 252, 0.9);
    border-bottom: 1px solid rgba(7, 29, 44, 0.12);
    backdrop-filter: blur(16px);
}

.dlk-nav a {
    padding: 16px 18px;
    color: rgba(7, 29, 44, 0.64);
    font-weight: 900;
    text-decoration: none;
}

.dlk-nav a:hover {
    color: #071d2c;
    background: rgba(52, 182, 204, 0.12);
}

.dlk-intro,
.dlk-journey,
.dlk-platform,
.dlk-features,
.dlk-scale {
    padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 96px);
}

.dlk-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(30px, 7vw, 90px);
    background: #f6fbfc;
}

.dlk-intro p:not(.eyebrow),
.dlk-journey-grid p,
.dlk-platform p {
    color: rgba(7, 29, 44, 0.7);
    font-size: 1.08rem;
}

.dlk-journey {
    background: #ffffff;
}

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

.dlk-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(7, 29, 44, 0.14);
    border: 1px solid rgba(7, 29, 44, 0.14);
}

.dlk-journey-grid article {
    min-height: 310px;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: clamp(24px, 3vw, 34px);
    background: #f6fbfc;
}

.dlk-journey-grid span {
    color: #0f6b7b;
    font-weight: 900;
}

.dlk-journey-grid h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.08;
}

.dlk-platform {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
    gap: clamp(34px, 7vw, 96px);
    align-items: center;
    color: var(--white);
    background: #061a28;
}

.dlk-platform h2 {
    color: inherit;
}

.dlk-platform p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

.dlk-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}

.dlk-interface-header,
.dlk-interface-card,
.dlk-interface-chart {
    min-height: 88px;
    background: rgba(255, 255, 255, 0.94);
}

.dlk-interface-header {
    grid-column: 1 / -1;
    background:
        linear-gradient(90deg, #34b6cc 0 22%, transparent 22% 28%, #ffffff 28% 100%),
        rgba(255, 255, 255, 0.94);
}

.dlk-interface-card {
    background:
        linear-gradient(90deg, #0f6b7b 0 22%, transparent 22% 30%, rgba(7, 29, 44, 0.18) 30% 100%),
        #ffffff;
}

.dlk-interface-chart {
    grid-column: 1 / -1;
    min-height: 190px;
    background:
        linear-gradient(180deg, transparent 0 72%, rgba(7, 29, 44, 0.12) 72% 73%, transparent 73%),
        linear-gradient(90deg, #0f6b7b 0 18%, transparent 18% 24%, #34b6cc 24% 44%, transparent 44% 50%, #061a28 50% 72%, transparent 72% 78%, rgba(7, 29, 44, 0.28) 78% 100%),
        #ffffff;
}

.dlk-features {
    background: #f6fbfc;
}

.dlk-features ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dlk-features li {
    display: grid;
    padding: 24px;
    background: #ffffff;
    border-top: 6px solid #0f6b7b;
    font-weight: 900;
}

.dlk-features li:nth-child(2n) {
    border-top-color: #34b6cc;
}

.dlk-scale {
    background: #0c6170;
    color: var(--white);
}

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

.dlk-scale-grid article {
    display: grid;
    padding: 26px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.08rem;
    font-weight: 800;
}

.js-case-sections [data-case-section][hidden] {
    display: none;
}

.case-section-stage {
    scroll-margin-top: 116px;
    min-height: calc(100vh + 140px);
}

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

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

    .offer-grid > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
        min-height: 220px;
    }

    .grant-card {
        grid-template-columns: minmax(64px, 0.2fr) minmax(0, 1fr);
    }

    .grant-logos {
        grid-column: 2;
    }

    .listing-grid > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

}

@media (max-width: 880px) {
    .site-header {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 12px;
        position: sticky;
    }

    .menu-toggle {
        display: grid;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 40;
        margin: 0;
        padding: 8px 0 12px;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 26px 50px rgba(23, 23, 23, 0.12);
        backdrop-filter: blur(18px);
    }

    .site-header.is-menu-open .main-nav {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .main-nav a {
        display: flex;
        min-height: 44px;
        align-items: center;
        padding: 12px clamp(20px, 5vw, 72px);
        background: transparent;
    }

    .main-nav a:hover,
    .main-nav a[aria-current="page"] {
        background: var(--paper);
    }

    .language-switcher {
        grid-column: 2;
        grid-row: 1;
        margin-left: auto;
    }

    .menu-toggle {
        grid-column: 3;
        grid-row: 1;
    }

    .hero {
        min-height: 720px;
        align-items: end;
    }

    .split,
    .statement,
    .solution-item,
    .solution-detail-grid,
    .insight-grid,
    .related-solution-grid,
    .listing-grid,
    .feature-pair,
    .contact-layout,
    .contact-next,
    .contact-modal-panel,
    .site-newsletter,
    .finance-hero,
    .finance-intro,
    .finance-platform,
    .neuro-hero,
    .neuro-intro,
    .neuro-admin,
    .car-hero,
    .car-intro,
    .car-leads,
    .dlk-hero,
    .dlk-intro,
    .dlk-platform,
    .case-story,
    .ops-hero,
    .ops-system {
        grid-template-columns: 1fr;
    }

    .contact-modal {
        align-items: start;
        padding: 12px;
    }

    .contact-modal-panel {
        --dd-mobile-divider-height: clamp(25px, 6.6vw, 34px);
        --dd-cta-divider-skew: 0deg;
        --dd-cta-mobile-divider-skew: 4deg;
        min-height: 0;
        background: var(--white);
    }

    .contact-modal-panel::before,
    .contact-modal-panel::after {
        display: none;
    }

    .contact-modal-copy {
        order: 1;
        margin-right: 0;
        padding-block: clamp(42px, 10vw, 64px) calc((var(--dd-mobile-divider-height) / 2) + 28px);
        padding-inline: 24px;
    }

    .contact-modal .contact-form {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .contact-modal-panel .cta-band-panel--dark {
        order: 3;
        align-items: stretch;
        padding: calc((var(--dd-mobile-divider-height) / 2) + 32px) 24px 32px;
        background: var(--dd-black);
    }

    .contact-modal-panel .cta-band-divider {
        position: relative;
        order: 2;
        top: 0;
        bottom: auto;
        left: 0;
        width: 100%;
        height: var(--dd-mobile-divider-height);
        background: transparent;
        transform: skewY(var(--dd-cta-mobile-divider-skew));
        transform-origin: center;
    }

    .contact-modal-panel .cta-band-divider::before {
        display: block;
        background: linear-gradient(to right, #240046 0%, #5a189a 55%, #7b2cbf 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0 30%, #000 30% 101%);
        mask-image: linear-gradient(to bottom, transparent 0 30%, #000 30% 101%);
        -webkit-mask-size: 91% 100%;
        mask-size: 91% 100%;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .contact-modal-panel .cta-band-divider::after {
        --dd-divider-solid-block: 10%;
        --dd-divider-white-length: 36%;
        --dd-divider-white-overpaint: 1%;
        display: block;
        background:
            linear-gradient(#240046 0 0) right / var(--dd-divider-solid-block) 100% no-repeat,
            linear-gradient(to right, #fff 0 100%) left bottom / calc(var(--dd-divider-white-length) + var(--dd-divider-white-overpaint)) calc(11% + var(--dd-divider-white-overpaint)) no-repeat,
            linear-gradient(to right, #fff 0 100%) left 1% bottom / calc(var(--dd-divider-white-length) + var(--dd-divider-white-overpaint)) calc(11% + var(--dd-divider-white-overpaint)) no-repeat;
        animation-name: dd-divider-solid-size-mobile, dd-divider-white-size-mobile;
    }

    .contact-modal-close {
        top: 12px;
        right: 12px;
        background: var(--dd-black);
        color: var(--dd-white);
    }

    .contact-modal .form-fields {
        gap: 16px;
    }

    .contact-calendar-nav {
        grid-template-columns: auto 1fr auto;
        gap: 8px;
    }

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

    .contact-modal .form-main-fields {
        grid-template-columns: 1fr;
    }

    .case-results ul,
    .ops-friction-grid,
    .ops-impact ul,
    .ops-process-steps,
    .ops-results-board,
    .finance-flow-grid,
    .finance-modules ul,
    .finance-impact-grid,
    .neuro-flow,
    .neuro-features ul,
    .neuro-impact-grid,
    .car-stock-grid,
    .car-automation ul,
    .car-impact-grid,
    .dlk-journey-grid,
    .dlk-features ul,
    .dlk-scale-grid {
        grid-template-columns: 1fr;
    }

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

    .insight-grid > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
        min-height: 220px;
    }

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

    .footer-local-seo {
        grid-column: 1 / -1;
    }

}

@media (max-width: 620px) {
    .site-header {
        padding: 14px 16px;
        gap: 14px;
    }

    .brand-mark {
        width: 36px;
    }

    .main-nav {
        gap: 18px;
    }

    h1 {
        font-size: clamp(2.25rem, 12vw, 3.75rem);
    }

    .hero,
    .section,
    .page-hero,
    .cta-band,
    .site-newsletter {
        padding-inline: 16px;
    }

    .cta-band--split {
        padding-inline: 0;
    }

    .hero-home {
        background-position: 63% center;
    }

    .offer-grid,
    .values-grid,
    .who-story,
    .heart-mission,
    .heart-check-grid,
    .heart-values,
    .feature-pair,
    .listing-grid,
    .insight-grid,
    .related-solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-growth-support .insight-grid {
        grid-template-columns: 1fr;
    }

    .offer-grid > :last-child:nth-child(odd),
    .listing-grid > :last-child:nth-child(odd),
    .insight-grid > :last-child:nth-child(odd) {
        grid-column: auto;
    }

    .listing-card {
        min-height: auto;
        padding: 24px;
    }

    .listing-card-image {
        width: calc(100% + 48px);
        margin: -24px -24px 22px;
    }

    .timeline-step {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-form {
        padding: 22px;
    }

    .calendar-day-button,
    .calendar-day-empty {
        min-height: 36px;
    }

    .contact-selected-day--time {
        padding-right: 20px;
    }

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

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .newsletter-form .button {
        width: 100%;
    }

    .case-topbar {
        grid-template-columns: auto 1fr auto;
        min-height: 50px;
        padding: 8px 14px;
        gap: 10px;
    }

    .case-topbar strong {
        text-align: center;
        font-size: 0.88rem;
    }

    .case-language-switcher {
        justify-content: flex-end;
    }

    .case-back-full {
        display: none;
    }

    .case-back-icon {
        display: block;
    }

    .case-nav {
        overflow-x: auto;
        padding-inline: 16px;
    }

    .ops-nav {
        top: 50px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow-x: hidden;
        padding-inline: 0;
    }

    .ops-nav a {
        display: grid;
        place-items: center;
        white-space: nowrap;
        padding: 14px 4px;
        font-size: 0.86rem;
    }

    .case-section-stage {
        scroll-margin-top: 104px;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .footer-local-seo-grid {
        grid-template-columns: 1fr;
    }

    .who-story article,
    .who-story-has-image,
    .who-story-has-image:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .who-story-has-image:nth-child(even) .who-story-copy,
    .who-story-has-image:nth-child(even) .who-story-image {
        grid-column: 1;
        grid-row: auto;
    }

    .who-story-image {
        aspect-ratio: 16 / 10;
    }

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

    .grant-logos {
        grid-column: auto;
    }

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

    .cookie-actions {
        justify-content: stretch;
    }

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