:root {
    --cream: #f7f2e8;
    --paper: #fbf8f1;
    --ocean: #063d59;
    --ocean-deep: #032f47;
    --orange: #f45124;
    --mint: #b8dad3;
    --charcoal: #202529;
    --muted: #5f6568;
    --rule: #d9d0c0;
    --site-gutter: clamp(1.5rem, 3.1vw, 3rem);
    --site-width: 1440px;
    --content-width: 1240px;
    --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: clip;
    background: var(--cream);
    color: var(--charcoal);
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(244, 81, 36, .42);
    outline-offset: 4px;
}
.section-shell {
    width: min(calc(100% - (2 * var(--site-gutter))), var(--content-width));
    margin: 0 auto;
}
.section-kicker {
    margin: 0 0 17px;
    color: var(--orange);
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .13em;
    line-height: 1.35;
    text-transform: uppercase;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-height);
    border-bottom: 1px solid rgba(63, 52, 40, .11);
    background: rgba(247, 242, 232, .97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.site-header__inner {
    width: min(100%, var(--site-width));
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.site-logo__img {
    height: 46px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}
.wordmark {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #181d23;
    line-height: 1;
    text-decoration: none;
}
.wordmark__name {
    margin-right: -.28em;
    font-size: 30px;
    font-weight: 750;
    letter-spacing: .28em;
}
.wordmark__subline {
    margin-top: 8px;
    margin-right: -.52em;
    font-size: 14px;
    font-weight: 550;
    letter-spacing: .52em;
}
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a {
    position: relative;
    color: var(--ocean-deep);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease;
}
.desktop-nav a:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -17px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
    transform: translateY(-50%);
}
.desktop-nav a:hover { color: var(--orange); }
.mobile-menu-button, .mobile-menu-close {
    display: none;
    border: 0;
    background: transparent;
    color: var(--ocean);
    cursor: pointer;
}
.mobile-menu-button span, .mobile-menu-close span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px 0;
    background: currentColor;
}
.mobile-menu { display: none; }

/* Hero */
.hero-reference {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}
.hero-stage {
    --fish-nudge-x: 0px;
    --fish-nudge-y: 0px;
    --fish-focus-y: 0px;
    --fish-rotate: 0deg;
    position: relative;
    width: min(100%, var(--site-width));
    min-height: 720px;
    margin: 0 auto;
    padding: 70px var(--site-gutter) 76px;
}
.hero-copy {
    position: relative;
    z-index: 8;
    width: min(590px, 43vw);
}
.hero-title {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(3.35rem, 4.45vw, 4rem);
    font-weight: 680;
    letter-spacing: -.04em;
    line-height: 1.01;
    text-wrap: balance;
}
.hero-title__line { display: block; white-space: nowrap; }
.hero-title__period { color: var(--orange); }
.hero-intro { max-width: 590px; margin-top: 27px; }
.hero-insight {
    margin: 0;
    color: var(--charcoal);
    font-size: clamp(1.2rem, 1.56vw, 1.4rem);
    font-weight: 620;
    line-height: 1.45;
    text-wrap: pretty;
}
.hero-description {
    margin: 13px 0 0;
    color: #3f474b;
    font-size: clamp(1.02rem, 1.3vw, 1.16rem);
    font-weight: 450;
    line-height: 1.55;
    text-wrap: pretty;
}
.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 23px;
    margin-top: 30px;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 319px;
    min-height: 62px;
    padding: 0 24px 0 28px;
    border: 1px solid var(--orange);
    border-radius: 8px;
    background: var(--orange);
    color: #fffaf3;
    box-shadow: 0 6px 8px rgba(187, 63, 28, .13);
    font-size: 16px;
    font-weight: 680;
    text-decoration: none;
    transition: transform 160ms cubic-bezier(.16, 1, .3, 1), background-color 160ms ease;
}
.hero-cta:hover { background: #dc401a; transform: translateY(-2px); }
.hero-cta:active { transform: translateY(1px); }
.hero-cta__arrow { font-size: 24px; font-weight: 400; line-height: 1; }
.hero-secondary-cta {
    padding: 8px 0 7px;
    border-bottom: 1px solid var(--ocean);
    color: var(--ocean);
    font-size: 15px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
}
.hero-secondary-cta:hover { border-color: var(--orange); color: var(--orange); }
.hero-visual { position: absolute; inset: 0; pointer-events: none; }
.hero-fish, .hero-fish-hand {
    position: absolute;
    top: 61px;
    right: 340px;
    width: 540px;
    height: 540px;
    object-fit: contain;
    object-position: center;
    transform: translate(var(--fish-nudge-x), calc(var(--fish-nudge-y) + var(--fish-focus-y))) rotate(var(--fish-rotate));
    transform-origin: 55% 54%;
    transition: transform 720ms cubic-bezier(.16, 1, .3, 1);
}
.hero-fish { z-index: 2; filter: drop-shadow(0 28px 20px rgba(31, 30, 27, .28)); }
.hero-fish-hand { z-index: 5; clip-path: ellipse(5.2% 7.2% at 75.5% 62%); }
.hero-stage.fish-attends-cta { --fish-focus-y: 9px; --fish-rotate: -1.6deg; }
.hero-stage.kuno-is-speaking .hero-fish,
.hero-stage.kuno-is-speaking .hero-fish-hand {
    animation: hero-kuno-speak var(--kuno-speaking-duration, 1100ms) cubic-bezier(.22, 1, .36, 1) 1;
}
.hero-poster {
    --poster-marker-travel: clamp(52px, 5.2vw, 68px);
    position: absolute;
    z-index: 4;
    top: 38px;
    right: 0;
    width: 480px;
    height: 650px;
    overflow: hidden;
    border: 1px solid rgba(109, 91, 63, .23);
    border-radius: 9px;
    background: var(--paper);
    box-shadow: 0 4px 6px rgba(66, 52, 34, .17), 0 14px 20px rgba(66, 52, 34, .07);
}
.hero-poster__label {
    position: absolute;
    top: 48px;
    left: 44px;
    margin: 0;
    color: var(--ocean);
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .035em;
    line-height: 1.45;
    text-transform: uppercase;
}
.hero-poster__label span { color: var(--orange); }
.hero-poster__mark {
    position: absolute;
    top: 42px;
    right: 43px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #fffaf3;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}
.hero-poster__rule {
    position: absolute;
    top: 122px;
    right: 43px;
    left: 44px;
    height: 1px;
    background: var(--rule);
}
.hero-poster__story {
    position: absolute;
    z-index: 2;
    top: 145px;
    bottom: 5px;
    left: 8px;
    width: 194px;
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
}
.hero-poster__story p {
    align-self: center;
    margin: 0;
    color: var(--ocean);
    font-family: inherit;
    font-size: 20px;
    font-weight: 680;
    letter-spacing: -.035em;
    line-height: 1.16;
    text-align: center;
    text-wrap: balance;
}
.hero-poster__process-image {
    position: absolute;
    z-index: 1;
    top: 145px;
    right: 0;
    bottom: 5px;
    width: auto;
    height: calc(100% - 150px);
    object-fit: contain;
    object-position: right center;
}
.hero-poster__steps {
    position: absolute;
    top: 150px;
    right: 43px;
    left: 44px;
    display: grid;
    gap: 18px;
}
.hero-poster__step {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
}
.hero-poster__number {
    padding-top: 2px;
    color: #718186;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .045em;
    line-height: 1.4;
}
.hero-poster__step strong {
    display: block;
    color: var(--ocean);
    font-size: 14px;
    font-weight: 780;
    letter-spacing: .025em;
    line-height: 1.25;
    text-transform: uppercase;
}
.hero-poster__step p {
    margin: 3px 0 0;
    color: #526166;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}
.hero-poster__impact {
    position: absolute;
    right: 38px;
    bottom: 31px;
    left: 38px;
    height: 226px;
    display: grid;
    grid-template-columns: minmax(82px, .78fr) minmax(58px, .56fr) minmax(142px, 1.35fr);
    align-items: end;
    gap: 9px;
}
.hero-poster__impact-item,
.hero-poster__bridge {
    min-width: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-poster__impact-item > span:last-child,
.hero-poster__bridge > span:last-child {
    margin-top: 9px;
    color: var(--ocean);
    font-size: 9px;
    font-weight: 720;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
}
.poster-shape {
    display: block;
    width: 100%;
    border-radius: 999px 999px 0 0;
    transform-origin: center bottom;
}
.poster-shape--mint { max-width: 92px; height: 80px; background: var(--mint); }
.poster-shape--ocean { max-width: 168px; height: 154px; background: var(--ocean); }
.hero-poster__bridge { padding-bottom: 1px; }
.hero-poster__track {
    position: relative;
    width: 100%;
    height: 22px;
    display: block;
}
.hero-poster__track::before {
    content: "";
    position: absolute;
    top: 10px;
    right: 2px;
    left: 2px;
    height: 1px;
    background: rgba(244, 81, 36, .42);
}
.hero-poster__marker {
    position: absolute;
    top: 5px;
    right: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px var(--paper);
}
.hero-poster__step--one { animation: poster-step-one 10s cubic-bezier(.16, 1, .3, 1) both; }
.hero-poster__step--two { animation: poster-step-two 10s cubic-bezier(.16, 1, .3, 1) both; }
.hero-poster__step--three { animation: poster-step-three 10s cubic-bezier(.16, 1, .3, 1) both; }
.hero-poster__marker { animation: poster-marker 10s cubic-bezier(.65, 0, .35, 1) both; }
.poster-shape--ocean { animation: poster-impact-grow 10s cubic-bezier(.16, 1, .3, 1) both; }

@keyframes poster-step-one {
    0%, 3% { opacity: 0; transform: translateY(6px); }
    11%, 100% { opacity: 1; transform: translateY(0); }
}
@keyframes poster-step-two {
    0%, 11% { opacity: 0; transform: translateY(6px); }
    21%, 100% { opacity: 1; transform: translateY(0); }
}
@keyframes poster-step-three {
    0%, 21% { opacity: 0; transform: translateY(6px); }
    31%, 100% { opacity: 1; transform: translateY(0); }
}
@keyframes poster-marker {
    0%, 31% { opacity: 0; transform: translateX(calc(-1 * var(--poster-marker-travel))); }
    37% { opacity: 1; transform: translateX(calc(-1 * var(--poster-marker-travel))); }
    59%, 100% { opacity: 1; transform: translateX(0); }
}
@keyframes poster-impact-grow {
    0%, 49% { opacity: 0; transform: scaleY(.05); }
    68%, 100% { opacity: 1; transform: scaleY(1); }
}
.kuno-check {
    position: relative;
    z-index: 10;
    width: min(calc(100% - (2 * var(--site-gutter))), var(--content-width));
    margin: 0 auto 2px;
    padding: 30px 0 34px;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}
.kuno-check [hidden] { display: none !important; }
.kuno-check__portrait {
    --kuno-speaking-duration: 1100ms;
    position: relative;
    width: 72px;
    height: 72px;
}
.kuno-check__portrait-frame {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(6, 61, 89, .17);
    border-radius: 50%;
    background: var(--mint);
}
.kuno-check__portrait-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}
.kuno-check__portrait-video {
    position: absolute;
    top: 16%;
    left: 2%;
    width: 78%;
    height: 78%;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
    transform-origin: 52% 58%;
}
.kuno-check__portrait.is-thinking .kuno-check__portrait-frame { animation: kuno-think 720ms cubic-bezier(.16, 1, .3, 1) 1; }
.kuno-check__portrait.is-speaking .kuno-check__portrait-frame { animation: kuno-speak var(--kuno-speaking-duration) cubic-bezier(.22, 1, .36, 1) 1; }
.kuno-check__portrait.is-speaking .kuno-check__portrait-video { animation: kuno-speak-face 310ms ease-in-out infinite alternate; }
.kuno-check__content { min-width: 0; }
.kuno-check__heading-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.kuno-check__eyebrow {
    margin: 1px 0 6px;
    color: var(--orange);
    font-size: .72rem;
    font-style: normal;
    font-weight: 760;
    letter-spacing: .11em;
    line-height: 1.3;
    text-transform: uppercase;
}
.kuno-check h2 {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(1.3rem, 2vw, 1.72rem);
    font-weight: 670;
    letter-spacing: -.025em;
    line-height: 1.2;
}
.kuno-check__typewriter {
    min-height: 3.15em;
    max-width: 720px;
    margin: 10px 0 2px;
    color: var(--charcoal);
    font-size: clamp(.94rem, 1.4vw, 1.08rem);
    font-weight: 650;
    letter-spacing: -.012em;
    line-height: 1.48;
}
.kuno-check__typewriter:not(.is-complete)::after {
    width: 2px;
    height: 1.05em;
    display: inline-block;
    margin-left: 3px;
    background: var(--orange);
    content: "";
    vertical-align: -.13em;
    animation: kuno-caret 720ms steps(1, end) infinite;
}
.kuno-check__intro > p:first-child { max-width: 690px; margin: 11px 0 19px; color: #4a5154; font-size: .98rem; line-height: 1.55; }
.kuno-check__privacy { max-width: 790px; margin: 15px 0 0; color: #687073; font-size: .78rem; line-height: 1.5; }
.kuno-check__privacy a { color: var(--ocean); text-underline-offset: 3px; }

/* Use-Case Showcase */
.usecase-showcase {
    width: 100%;
    margin: 32px 0 20px;
    padding: 28px 0;
    background: var(--ocean);
}
.usecase-showcase__shell {
    width: min(calc(100% - (2 * var(--site-gutter))), var(--content-width));
    margin: 0 auto 14px;
}
.usecase-showcase__title {
    margin: 0;
    color: #fff;
    font-size: clamp(1rem, 1.6vw, 1.22rem);
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.3;
}

/* Use-Case Marquee */
.kuno-usecase-marquee {
    position: relative;
    overflow: hidden;
    width: min(calc(100% - (2 * var(--site-gutter))), var(--content-width));
    margin: 0 auto;
    padding: 4px 0;
    mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
}
.kuno-usecase-marquee__track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: marquee-scroll 32s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .kuno-usecase-marquee__track { animation: none; overflow-x: auto; }
}
a.kuno-usecase-pill,
.kuno-usecase-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    padding: 6px 16px 6px 6px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: .8rem;
    font-weight: 620;
    letter-spacing: -.01em;
    line-height: 1.35;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
a.kuno-usecase-pill:hover,
.kuno-usecase-pill:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
    transform: translateY(-1px);
}
.kuno-usecase-pill__tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--ocean);
    font-size: .65rem;
    font-weight: 740;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.4;
}
@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.kuno-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--ocean);
    border-radius: 6px;
    font: inherit;
    font-size: .88rem;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.kuno-button:hover { transform: translateY(-1px); }
.kuno-button:disabled { opacity: .52; cursor: wait; transform: none; }
.kuno-button--primary { border-color: var(--ocean); background: var(--ocean); color: var(--paper); }
.kuno-button--primary:hover { background: var(--ocean-deep); }
.kuno-button--secondary { background: transparent; color: var(--ocean); }
.kuno-button--secondary:hover { background: rgba(6, 61, 89, .07); }
.kuno-dialog { max-width: 840px; margin-top: 24px; }
.kuno-dialog__transcript { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.kuno-dialog__entry { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 16px; padding: 17px 0; border-bottom: 1px solid rgba(217, 208, 192, .72); }
.kuno-dialog__entry strong { padding-top: 2px; color: var(--orange); font-size: .69rem; font-weight: 760; letter-spacing: .09em; text-transform: uppercase; }
.kuno-dialog__entry p { margin: 0; color: var(--ocean); font-size: 1rem; font-weight: 590; line-height: 1.55; }
.kuno-dialog__entry--visitor p { color: #4c5457; font-weight: 480; }
.kuno-dialog__entry--visitor strong { color: #737a7c; }
.kuno-dialog__form { margin-top: 23px; }
.kuno-dialog__form > label { display: block; margin-bottom: 8px; color: var(--ocean); font-size: .86rem; font-weight: 700; }
.kuno-dialog__form textarea {
    width: 100%;
    min-height: 96px;
    resize: vertical;
    padding: 13px 14px;
    border: 1px solid rgba(6, 61, 89, .31);
    border-radius: 6px;
    background: rgba(251, 248, 241, .82);
    color: var(--charcoal);
    font: inherit;
    font-size: 1rem;
    line-height: 1.5;
}
.kuno-dialog__form textarea:disabled { opacity: .68; }
.kuno-dialog__meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 7px; color: #757b7e; font-size: .72rem; line-height: 1.45; }
.kuno-dialog__choices { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.kuno-choice {
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(6, 61, 89, .34);
    border-radius: 999px;
    background: transparent;
    color: var(--ocean);
    font: inherit;
    font-size: .85rem;
    font-weight: 660;
    cursor: pointer;
}
.kuno-choice:hover { border-color: var(--orange); background: rgba(244, 81, 36, .06); }
.kuno-dialog__actions { margin-top: 15px; }
.kuno-dialog__status { min-height: 24px; margin: 15px 0 0; color: var(--ocean); font-size: .9rem; font-style: italic; font-weight: 600; }
.kuno-dialog__error { margin: 11px 0 0; color: #a63217; font-size: .88rem; font-weight: 620; }
.kuno-result, .kuno-fallback {
    margin-top: 24px;
    padding: clamp(22px, 3.2vw, 34px);
    border: 1px solid rgba(6, 61, 89, .2);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 5px 14px rgba(67, 52, 34, .06);
}
.kuno-result h3 { margin: 0 0 8px; color: var(--ocean); font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 700; letter-spacing: -.025em; }
.kuno-result h3:not(:first-child) { margin-top: 25px; padding-top: 24px; border-top: 1px solid var(--rule); }
.kuno-result p, .kuno-fallback p { margin: 0; color: #444c50; font-size: .98rem; line-height: 1.6; }
.kuno-result__question { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--rule); color: var(--ocean); font-size: 1.08rem; font-weight: 720; }
.kuno-fallback p + p { margin-top: 8px; }
.kuno-result__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.kuno-dialog__reset { margin-top: 18px; padding: 0 0 3px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: #667074; font: inherit; font-size: .78rem; cursor: pointer; }
@keyframes kuno-think {
    0%, 100% { transform: translate3d(0, 0, 0); }
    45% { transform: translate3d(4px, -3px, 0) rotate(1deg); }
    72% { transform: translate3d(-1px, 1px, 0); }
}
@keyframes kuno-speak {
    0%, 100% { transform: translate3d(0, 0, 0); }
    18% { transform: translate3d(2px, -2px, 0) rotate(.7deg); }
    44% { transform: translate3d(0, 1px, 0) rotate(-.4deg); }
    70% { transform: translate3d(2px, -1px, 0) rotate(.45deg); }
}
@keyframes kuno-speak-face {
    from { transform: scale(1) translate3d(0, 0, 0); }
    to { transform: scale(1.014) translate3d(0, 1px, 0); }
}
@keyframes kuno-caret {
    0%, 48% { opacity: 1; }
    49%, 100% { opacity: 0; }
}
@keyframes hero-kuno-speak {
    0%, 100% {
        transform: translate(var(--fish-nudge-x), calc(var(--fish-nudge-y) + var(--fish-focus-y))) rotate(var(--fish-rotate)) scale(1);
    }
    20% {
        transform: translate(calc(var(--fish-nudge-x) + 4px), calc(var(--fish-nudge-y) + var(--fish-focus-y) - 5px)) rotate(calc(var(--fish-rotate) + .8deg)) scale(1.012);
    }
    48% {
        transform: translate(calc(var(--fish-nudge-x) - 1px), calc(var(--fish-nudge-y) + var(--fish-focus-y) + 2px)) rotate(calc(var(--fish-rotate) - .45deg)) scale(1.004);
    }
    74% {
        transform: translate(calc(var(--fish-nudge-x) + 3px), calc(var(--fish-nudge-y) + var(--fish-focus-y) - 3px)) rotate(calc(var(--fish-rotate) + .5deg)) scale(1.009);
    }
}

/* Problems */
.problem-section { padding-top: 104px; padding-bottom: 122px; scroll-margin-top: 22px; }
.section-heading--compact { max-width: 790px; margin-bottom: 46px; }
.section-heading h2, .principles-intro h2, .case-heading h2 {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(2.55rem, 5.4vw, 5rem);
    font-weight: 690;
    letter-spacing: -.045em;
    line-height: 1;
    text-wrap: balance;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.problem-card {
    min-height: 390px;
    padding: 34px 33px 31px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(106, 88, 62, .23);
    border-radius: 8px;
    background: rgba(251, 248, 241, .94);
    box-shadow: 0 4px 7px rgba(67, 52, 34, .07);
    transition: transform 160ms cubic-bezier(.16, 1, .3, 1), border-color 160ms ease, box-shadow 160ms ease;
}
.problem-card:hover {
    border-color: rgba(6, 61, 89, .38);
    box-shadow: 0 7px 13px rgba(67, 52, 34, .09);
    transform: translateY(-3px);
}
.problem-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: block;
    margin-bottom: 37px;
    border-radius: 50%;
}
.problem-icon--ocean { background: var(--ocean); color: var(--paper); }
.problem-icon--orange { background: var(--orange); color: var(--paper); }
.problem-icon--mint { background: var(--mint); color: var(--ocean); }
.problem-icon::before, .problem-icon::after, .problem-icon i { content: ""; position: absolute; display: block; }
.problem-icon--lines::before { top: 21px; left: 17px; width: 30px; height: 21px; border: 2px solid currentColor; }
.problem-icon--lines::after { top: 28px; left: 23px; width: 18px; border-top: 2px solid currentColor; box-shadow: 0 7px 0 currentColor; }
.problem-icon--frame::before { inset: 18px; border: 2px solid currentColor; transform: rotate(7deg); }
.problem-icon--frame::after { top: 24px; left: 24px; width: 16px; height: 16px; border: 2px solid currentColor; transform: rotate(-8deg); }
.problem-icon--focus::before { inset: 17px; border: 2px solid currentColor; border-radius: 50%; }
.problem-icon--focus::after { top: 29px; left: 29px; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.problem-card h3 {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(1.75rem, 2.35vw, 2.15rem);
    font-weight: 680;
    letter-spacing: -.035em;
    line-height: 1.04;
}
.problem-card p { margin: 20px 0 28px; color: #42494c; font-size: 1.02rem; line-height: 1.58; }
.problem-card a {
    width: fit-content;
    margin-top: auto;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(6, 61, 89, .55);
    color: var(--ocean);
    font-size: .95rem;
    font-weight: 680;
    text-decoration: none;
}
.problem-card a span { margin-left: 6px; color: var(--orange); }

/* Principles */
.principles-section {
    padding: 124px 0 128px;
    border-top: 1px solid rgba(107, 88, 61, .14);
    border-bottom: 1px solid rgba(107, 88, 61, .14);
    background: var(--paper);
    scroll-margin-top: 0;
}
.principles-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    column-gap: 92px;
    align-items: end;
    margin-bottom: 82px;
}
.principles-intro .section-kicker { grid-column: 1 / -1; }
.principles-intro > p:last-child { margin: 0; color: #4a5053; font-size: 1.16rem; line-height: 1.65; }
.principle-list { margin: 0; padding: 0; list-style: none; }
.principle-item {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) minmax(220px, .55fr);
    gap: 40px;
    align-items: start;
    padding: 46px 0 50px;
    border-top: 1px solid var(--rule);
}
.principle-item:last-child { border-bottom: 1px solid var(--rule); }
.principle-icon {
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}
.principle-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.principle-copy h3 {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(1.8rem, 2.7vw, 2.5rem);
    font-weight: 680;
    letter-spacing: -.035em;
    line-height: 1.08;
}
.principle-copy p { max-width: 660px; margin: 19px 0 0; color: #42494c; font-size: 1.04rem; line-height: 1.62; }
.fish-note {
    align-self: end;
    margin: 0 0 3px;
    padding: 13px 0 0 19px;
    border-top: 1px solid rgba(6, 61, 89, .19);
    color: #586367;
    font-size: .91rem;
    font-style: italic;
    line-height: 1.5;
}
.fish-note span { margin-right: 6px; color: var(--orange); font-style: normal; }

/* Expectations */
.expectations-section {
    padding: 104px 0 116px;
    border-bottom: 1px solid var(--rule);
    background: var(--cream);
}
.expectations-intro {
    max-width: 820px;
    margin-bottom: 54px;
}
.expectations-intro h2 {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(2.3rem, 4.8vw, 4.2rem);
    font-weight: 690;
    letter-spacing: -.04em;
    line-height: 1.05;
}
.expectations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.expectations-column {
    padding: 38px 36px 36px;
    border: 1px solid rgba(106, 88, 62, .22);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 4px 8px rgba(67, 52, 34, .06);
}
.expectations-column--need {
    border-color: rgba(244, 81, 36, .28);
    background: #fdfaf4;
}
.expectations-subtitle {
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
    color: var(--ocean);
    font-size: clamp(1.35rem, 2.1vw, 1.75rem);
    font-weight: 720;
    letter-spacing: -.025em;
}
.expectations-column--need .expectations-subtitle {
    color: var(--charcoal);
}
.expectations-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px;
}
.expectations-item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    color: #3f474b;
    font-size: 1.04rem;
    font-weight: 540;
    line-height: 1.5;
}
.expectations-bullet {
    color: var(--ocean);
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.4;
}
.expectations-bullet--orange {
    color: var(--orange);
    font-weight: 800;
}

/* Case study - 4-Step Storyboard Showcase */
.case-section { padding: 104px 0 116px; background: var(--ocean); color: var(--paper); }
.case-section .section-kicker { color: var(--orange); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 760; }
.case-heading { margin-bottom: 48px; max-width: 820px; }
.case-heading h2 { color: var(--paper); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 750; letter-spacing: -.04em; line-height: 1.08; }

.case-storyboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.case-storyboard-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 220ms cubic-bezier(.16, 1, .3, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.case-storyboard-card:hover {
    transform: translateY(-4px);
    border-color: rgba(128, 210, 184, .45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
}

.case-storyboard-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(0, 0, 0, .2);
}

.case-storyboard-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.case-storyboard-card:hover .case-storyboard-card__img {
    transform: scale(1.04);
}

.case-storyboard-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 6px;
    background: rgba(6, 61, 89, .92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .18);
    color: var(--paper);
    font-size: .75rem;
    font-weight: 760;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.case-storyboard-card__badge .badge-num {
    color: var(--orange);
    font-weight: 800;
}

.case-storyboard-card__badge .badge-label {
    color: var(--mint);
}

.case-storyboard-card__body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.case-storyboard-card__title {
    margin: 0;
    color: var(--paper);
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    font-weight: 720;
    letter-spacing: -.02em;
    line-height: 1.25;
}

.case-storyboard-card__text {
    margin: 0;
    color: rgba(251, 248, 241, .82);
    font-size: .98rem;
    line-height: 1.6;
}

.case-section__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.fish-note--case { margin: 0; border-top: none; padding: 0; color: rgba(251, 248, 241, .78); font-size: .92rem; }

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(251, 248, 241, .7);
    border-radius: 7px;
    color: var(--paper);
    font-weight: 680;
    font-size: .92rem;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease;
}

.case-link:hover { background: var(--paper); color: var(--ocean); }

/* Workshop */
.homepage-followup { padding: 128px var(--site-gutter) 124px; background: var(--cream); }
.homepage-followup__inner { width: min(100%, var(--content-width)); margin: 0 auto; }
.homepage-followup h2 {
    max-width: 850px;
    margin: 0;
    color: var(--ocean);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: .98;
}
.homepage-followup__copy {
    max-width: 820px;
    margin: 46px 0 35px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: 55px;
}
.homepage-followup__copy p { margin: 0; font-size: 1.16rem; line-height: 1.65; }
.homepage-followup__responsibility { padding-left: 25px; border-left: 3px solid var(--orange); color: #434a4d; font-weight: 620; }
.homepage-followup__links { display: flex; flex-wrap: wrap; gap: 13px; }
.workshop-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 53px;
    padding: 0 23px;
    border: 1px solid var(--ocean);
    border-radius: 7px;
    color: var(--ocean);
    font-weight: 680;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.workshop-link:hover { transform: translateY(-2px); }
.workshop-link--filled { background: var(--ocean); color: var(--paper); }
.workshop-link--filled:hover { background: var(--ocean-deep); }

/* Deliverables */
.deliverables-section {
    padding: 110px 0 118px;
    border-top: 1px solid var(--rule);
    background: var(--paper);
}
.deliverables-intro {
    max-width: 840px;
    margin-bottom: 54px;
}
.deliverables-intro h2 {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    font-weight: 690;
    letter-spacing: -.04em;
    line-height: 1.05;
}
.deliverables-grid {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.deliverable-card {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(106, 88, 62, .18);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: 0 3px 6px rgba(67, 52, 34, .04);
    transition: transform 160ms cubic-bezier(.16, 1, .3, 1), border-color 160ms ease;
}
.deliverable-card:hover {
    border-color: rgba(6, 61, 89, .32);
    transform: translateY(-2px);
}
.deliverable-icon {
    color: var(--orange);
    font-size: 1.25rem;
    line-height: 1;
}
.deliverable-label {
    color: var(--ocean);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.35;
}
.deliverables-note {
    margin-top: 38px;
    padding: 20px 26px;
    border-left: 3px solid var(--orange);
    background: rgba(244, 81, 36, .05);
    border-radius: 0 6px 6px 0;
}
.deliverables-note p {
    margin: 0;
    color: var(--ocean);
    font-size: 1.12rem;
    font-weight: 720;
    letter-spacing: -.01em;
}

/* Closing CTA */
.closing-cta-section {
    padding: 120px 0 130px;
    border-top: 1px solid var(--rule);
    background: var(--cream);
}
.closing-cta-intro {
    max-width: 860px;
    margin-bottom: 54px;
}
.closing-cta-intro h2 {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.02;
}
.closing-cta-paths {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.closing-path-card {
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    border: 1px solid rgba(6, 61, 89, .22);
    border-radius: 9px;
    background: var(--paper);
    box-shadow: 0 6px 14px rgba(67, 52, 34, .07);
    transition: transform 160ms cubic-bezier(.16, 1, .3, 1), border-color 160ms ease;
}
.closing-path-card:hover {
    border-color: var(--ocean);
    transform: translateY(-3px);
}
.closing-path-card--personal {
    border-color: rgba(244, 81, 36, .35);
    background: #fffaf4;
}
.closing-path-card--personal:hover {
    border-color: var(--orange);
}
.closing-path-badge {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--ocean);
    font-size: .74rem;
    font-weight: 760;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.closing-path-badge--orange {
    color: var(--orange);
}
.closing-path-card h3 {
    margin: 0 0 10px;
    color: var(--ocean);
    font-size: clamp(1.5rem, 2.4vw, 2.05rem);
    font-weight: 720;
    letter-spacing: -.03em;
    line-height: 1.15;
}
.closing-path-card p {
    margin: 0;
    color: #4a5154;
    font-size: 1.04rem;
    line-height: 1.55;
}
.closing-path-card__action {
    margin-top: 32px;
}
.kuno-button--orange {
    border-color: var(--orange);
    background: var(--orange);
    color: #fffaf3;
}
.kuno-button--orange:hover {
    background: #dc401a;
}

/* Footer */
.site-footer { border-top: 1px solid var(--rule); background: var(--paper); }
.site-footer__inner { width: min(calc(100% - (2 * var(--site-gutter))), var(--content-width)); margin: 0 auto; padding: 74px 0 30px; }
.site-footer__brand { max-width: 560px; margin-bottom: 56px; display: flex; align-items: center; gap: 42px; }
.site-footer__brand p { margin: 0; color: #5b6265; font-size: .98rem; line-height: 1.55; }
.site-footer__columns { display: grid; grid-template-columns: 1.3fr 1fr .8fr .9fr; gap: 48px; padding: 46px 0 54px; border-top: 1px solid var(--rule); }
.site-footer__columns h2 { margin: 0 0 20px; color: var(--ocean); font-size: .76rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.site-footer__columns ul { margin: 0; padding: 0; list-style: none; }
.site-footer__columns li + li { margin-top: 11px; }
.site-footer__columns a, .site-footer__columns button {
    padding: 0;
    border: 0;
    background: none;
    color: #596164;
    font: inherit;
    font-size: .94rem;
    line-height: 1.4;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}
.site-footer__columns a:hover, .site-footer__columns button:hover { color: var(--orange); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 26px; border-top: 1px solid var(--rule); }
.site-footer__bottom p, .site-footer__bottom a { margin: 0; color: #777d7f; font-size: .8rem; text-decoration: none; }
.site-footer__bottom a:hover { color: var(--ocean); }

/* ==========================================================================
   Services Page Styles
   ========================================================================== */

/* Hero */
.services-hero {
    position: relative;
    aspect-ratio: 1915 / 821;
    background-size: 100% auto;
    background-position: top right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.services-hero__overlay {
    width: 50%;
    max-width: 720px;
    padding: 0 clamp(28px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}
.services-hero__overlay .section-kicker {
    margin-bottom: 14px;
    font-size: .8rem;
    letter-spacing: .14em;
    color: var(--ocean);
}
.services-hero__overlay h1 {
    margin: 0 0 20px;
    color: var(--ocean);
    font-size: clamp(1.5rem, 2.75vw, 2.75rem);
    font-weight: 750;
    letter-spacing: -.04em;
    line-height: 1.08;
}
.services-hero__lead {
    max-width: 520px;
    margin: 0 0 28px;
    color: #3b4245;
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.58;
    font-weight: 420;
}
.services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}
.services-hero__actions .kuno-button {
    font-size: .9rem;
    padding: 0 22px;
    min-height: 46px;
}
.services-hero__actions .workshop-link {
    font-size: .9rem;
    min-height: 46px;
    padding: 0 22px;
}
.workshop-link--dark {
    border-color: var(--ocean);
    color: var(--ocean);
}
@media (max-width: 900px) {
    .services-hero {
        aspect-ratio: auto;
        background-size: cover;
        background-position: center;
        min-height: 420px;
    }
    .services-hero__overlay {
        width: 100%;
        max-width: 100%;
        background: rgba(253, 249, 244, 0.92);
        padding: 40px 24px;
    }
    .services-hero__overlay h1 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }
    .services-hero__lead {
        font-size: 1rem;
        max-width: 100%;
    }
}



/* Principle & Process Flow */
.services-principle {
    padding: 100px 0 110px;
    border-top: 1px solid var(--rule);
    background: var(--cream);
}
.services-principle__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, .6fr);
    gap: 60px;
    align-items: center;
    margin-bottom: 54px;
}
.services-principle__intro h2 {
    margin: 0 0 20px;
    color: var(--ocean);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.08;
}
.services-principle__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.services-principle__kuno {
    width: clamp(140px, 16vw, 220px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(6, 61, 89, .12));
}
.services-principle__text p {
    margin: 0 0 16px;
    color: #42494c;
    font-size: 1.14rem;
    line-height: 1.62;
}
.services-principle__text p:last-child {
    margin-bottom: 0;
    font-weight: 680;
    color: var(--ocean);
}

.services-flow {
    margin-top: 50px;
    padding: 34px 38px;
    border: 1px solid rgba(6, 61, 89, .18);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: 0 4px 12px rgba(67, 52, 34, .05);
}
.services-flow__title {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.services-flow__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}
.services-flow__title span {
    color: var(--ocean);
    font-size: .8rem;
    font-weight: 760;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.services-flow__steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-flow__step {
    flex: 1;
    padding: 16px 14px 12px;
    text-align: center;
    border: 1px solid rgba(6, 61, 89, .12);
    border-radius: 8px;
    background: var(--cream);
    color: var(--ocean);
    font-size: 1.02rem;
    font-weight: 720;
    letter-spacing: -.01em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.services-flow__step-label {
    display: block;
}
.services-flow__step-icon {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.services-flow__step--highlight {
    border-color: var(--orange);
    background: rgba(244, 81, 36, .06);
    color: var(--orange);
}
.services-flow__arrow {
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 700;
    user-select: none;
    align-self: center;
    padding-bottom: 30px; /* visually center the arrow between text, not icon */
}

/* Featured Service: Strategische Projektauftritte */
.services-featured-section {
    padding: 110px 0 120px;
    border-top: 1px solid var(--rule);
    background: var(--paper);
}
.services-featured-card {
    position: relative;
    padding: clamp(38px, 6vw, 64px);
    border: 2px solid var(--ocean);
    border-radius: 14px;
    background: linear-gradient(135deg, #fbf8f1 0%, #f4ede0 100%);
    box-shadow: 0 16px 36px rgba(6, 61, 89, .08);
}
.services-featured-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 16px;
    border-radius: 20px;
    background: var(--ocean);
    color: var(--paper);
    font-size: .75rem;
    font-weight: 760;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.services-featured-card h2 {
    margin: 0 0 20px;
    color: var(--ocean);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 750;
    letter-spacing: -.04em;
    line-height: 1.04;
}
.services-featured-card p {
    max-width: 820px;
    margin: 0 0 34px;
    color: #3b4245;
    font-size: 1.18rem;
    line-height: 1.62;
}
.services-tags-heading {
    margin-bottom: 16px;
    color: var(--ocean);
    font-size: .85rem;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.services-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}
.services-tag {
    padding: 8px 18px;
    border: 1px solid rgba(6, 61, 89, .22);
    border-radius: 6px;
    background: var(--paper);
    color: var(--ocean);
    font-size: .98rem;
    font-weight: 680;
}

/* System-Flow in Featured Card – offene, hochwertige Darstellung */
.services-system-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 36px 0 40px;
    /* kein Rahmen, kein Hintergrund – offen und hochwertig */
}
.services-system-flow__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.services-system-node {
    padding: 12px 24px;
    border-radius: 0;
    background: transparent;
    border: none;
    color: var(--ocean);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 750;
    letter-spacing: -.02em;
    white-space: nowrap;
    /* Trennlinie unter jedem Begriff */
    border-bottom: 2px solid rgba(6, 61, 89, .18);
    line-height: 2;
}
.services-system-node--first { border-bottom-color: var(--orange); }
.services-system-arrow {
    padding: 0 14px;
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 700;
    user-select: none;
    line-height: 2;
}
/* Ergebnis-Zeile: visuell dominant */
.services-system-result {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    padding: 20px 24px;
    border-radius: 8px;
    background: var(--orange);
}
.services-system-result__arrow {
    color: var(--paper);
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
}
.services-system-result__label {
    color: var(--paper);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.3;
}

/* Dezente Einblend-Animation der Systemknoten */
@keyframes sf-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.services-system-flow.is-visible .services-system-node,
.services-system-flow.is-visible .services-system-arrow {
    animation: sf-fade-in 400ms cubic-bezier(.16,1,.3,1) both;
}
.services-system-flow.is-visible .services-system-node:nth-of-type(1) { animation-delay:   0ms; }
.services-system-flow.is-visible .services-system-arrow:nth-of-type(2) { animation-delay: 120ms; }
.services-system-flow.is-visible .services-system-node:nth-of-type(3) { animation-delay: 200ms; }
.services-system-flow.is-visible .services-system-arrow:nth-of-type(4) { animation-delay: 320ms; }
.services-system-flow.is-visible .services-system-node:nth-of-type(5) { animation-delay: 400ms; }
.services-system-flow.is-visible .services-system-arrow:nth-of-type(6) { animation-delay: 520ms; }
.services-system-flow.is-visible .services-system-node:nth-of-type(7) { animation-delay: 600ms; }
.services-system-flow.is-visible .services-system-result { animation: sf-fade-in 500ms 750ms cubic-bezier(.16,1,.3,1) both; }
@media (prefers-reduced-motion: reduce) {
    .services-system-flow.is-visible .services-system-node,
    .services-system-flow.is-visible .services-system-arrow,
    .services-system-flow.is-visible .services-system-result { animation: none; }
}

/* Simple list for service cards */
.services-impl-list {
    margin: 0 0 28px;
    padding: 0 0 0 0;
    list-style: none;
}
.services-impl-list li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(6, 61, 89, .1);
    color: #42494c;
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px;
}
.services-impl-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}
.services-impl-list li:first-child { border-top: 1px solid rgba(6, 61, 89, .1); }

/* 3 Umsetzungsbereiche */
.services-implementations-section {
    padding: 110px 0 120px;
    border-top: 1px solid var(--rule);
    background: var(--cream);
}
.services-implementations-intro {
    max-width: 780px;
    margin-bottom: 54px;
}
.services-implementations-intro h2 {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.06;
}
.services-implementations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.services-impl-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(6, 61, 89, .18);
    border-radius: 10px;
    background: var(--paper);
    box-shadow: 0 4px 12px rgba(67, 52, 34, .05);
    overflow: hidden;
    transition: transform 160ms cubic-bezier(.16, 1, .3, 1), border-color 160ms ease;
}
.services-impl-card:hover {
    border-color: var(--ocean);
    transform: translateY(-3px);
}
/* Icon-Kopfbereich jeder Karte */
.services-impl-card__head {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(6,61,89,.05) 0%, rgba(6,61,89,.02) 100%);
    border-bottom: 1px solid rgba(6, 61, 89, .1);
}
.services-impl-card__head-icon {
    width: 144px;
    height: 144px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(6,61,89,.1));
}
/* Platzhalter wenn kein Asset vorhanden */
.services-impl-card__head-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(6, 61, 89, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean);
    font-size: .7rem;
    font-weight: 760;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    padding: 8px;
}
.services-impl-card__body {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.services-impl-card h3 {
    margin: 0 0 12px;
    color: var(--ocean);
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 720;
    letter-spacing: -.025em;
    line-height: 1.18;
}
.services-impl-card p {
    margin: 0 0 20px;
    color: #42494c;
    font-size: 1rem;
    line-height: 1.58;
}
.services-impl-card .services-tags-grid {
    margin-bottom: 30px;
    gap: 8px;
}
.services-impl-card .services-tag {
    padding: 6px 12px;
    font-size: .88rem;
    background: var(--cream);
}
.services-impl-card__action {
    margin-top: auto;
    padding-top: 4px;
}

/* Karatuna Haltung */
.services-mindset-section {
    padding: 110px 0 120px;
    background: var(--ocean);
    color: var(--paper);
}
.services-mindset-inner {
    max-width: 860px;
    margin: 0 auto;
}
.services-mindset-section .section-kicker {
    color: var(--orange);
}
.services-mindset-inner h2 {
    margin: 0 0 24px;
    color: var(--paper);
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 750;
    letter-spacing: -.04em;
    line-height: 1.04;
}
.services-mindset-inner p {
    margin: 0;
    color: rgba(251, 248, 241, .92);
    font-size: clamp(1.12rem, 1.8vw, 1.32rem);
    line-height: 1.65;
}

/* ==========================================================================
   Anonymisierter Projektauftritt (Beweis-Abschnitt)
   ========================================================================== */
.services-proof-section {
    padding: 0;
    border-top: 1px solid var(--rule);
    background: var(--ocean);
    color: var(--paper);
}

/* Große Visuelle Projektfläche (Mock-up) */
.services-proof-visual-wrapper {
    padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 40px);
    background: linear-gradient(180deg, rgba(4, 45, 66, 0.95) 0%, var(--ocean) 100%);
    border-bottom: 1px solid rgba(251, 248, 241, .12);
    display: flex;
    justify-content: center;
}

.services-proof-visual-mockup {
    width: 100%;
    max-width: 1040px;
    border: 1px solid rgba(251, 248, 241, .2);
    border-radius: 12px;
    overflow: hidden;
    background: #042435;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .4);
}

.mockup-browser-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(6, 61, 89, .9);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    gap: 16px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-url {
    font-size: .76rem;
    color: rgba(251, 248, 241, .6);
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: rgba(0, 0, 0, .2);
    padding: 4px 14px;
    border-radius: 4px;
    flex: 1;
    max-width: 440px;
    text-align: center;
}

.mockup-badge {
    font-size: .7rem;
    font-weight: 760;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--mint);
    background: rgba(128, 210, 184, .12);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(128, 210, 184, .25);
}

.mockup-canvas {
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(244, 81, 36, .08) 0%, transparent 60%);
}

.mockup-hero {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mockup-tag {
    align-self: flex-start;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    color: var(--orange);
    text-transform: uppercase;
}

.mockup-headline-skeleton {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 680px;
}

.skeleton-line {
    height: 14px;
    border-radius: 4px;
    background: rgba(251, 248, 241, .15);
}

.skeleton-line--title1 { height: 28px; width: 85%; background: rgba(251, 248, 241, .85); }
.skeleton-line--title2 { height: 28px; width: 60%; background: var(--mint); }
.skeleton-line--short { width: 45%; }

.mockup-subline-skeleton {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 520px;
    margin-top: 4px;
}

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

.mockup-card {
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 160ms ease, border-color 160ms ease;
}

.mockup-card--highlight {
    background: rgba(6, 61, 89, .6);
    border-color: rgba(128, 210, 184, .3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.mockup-card__badge {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--orange);
}

.mockup-card__title {
    font-size: .94rem;
    font-weight: 700;
    color: var(--paper);
}

.mockup-card__wireframe {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
}

.wf-block {
    height: 8px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .1);
}

.wf-block--primary { background: rgba(251, 248, 241, .4); height: 10px; width: 70%; }
.wf-block--accent { background: var(--orange); height: 10px; width: 85%; }
.wf-block--sub { background: rgba(128, 210, 184, .4); width: 50%; }
.wf-block--text { width: 90%; }

.mockup-watermark {
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    color: rgba(251, 248, 241, .25);
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, .08);
}

/* Inhaltsbereich (Haltung, Vertraulichkeit, 4 Phasen) */
.services-proof-inner {
    padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 44px;
    max-width: 1040px;
    margin: 0 auto;
}

.services-proof-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-proof-heading {
    margin: 0;
    color: var(--paper);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 750;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.services-proof-privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    color: rgba(251, 248, 241, .88);
    font-size: .95rem;
    line-height: 1.5;
}

.privacy-note__icon {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Narrative Grid (Ausgangslage, Aufgabe, Ansatz, Ergebnis) */
.services-proof-narrative {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.proof-narrative-item {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .09);
}

.proof-narrative-num {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.proof-narrative-body h3 {
    margin: 0 0 8px;
    color: var(--paper);
    font-size: 1.15rem;
    font-weight: 720;
    letter-spacing: -.02em;
}

.proof-narrative-body p {
    margin: 0;
    color: rgba(251, 248, 241, .8);
    font-size: .98rem;
    line-height: 1.6;
}

.services-proof-actions {
    display: flex;
    justify-content: flex-start;
}

/* ==========================================================================
   Excerpts Modal (Dialog)
   ========================================================================== */
.excerpts-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
}

.excerpts-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.excerpts-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 25, 37, .82);
    backdrop-filter: blur(6px);
}

.excerpts-modal__dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    color: var(--charcoal);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
    overflow: hidden;
    transform: translateY(16px);
    transition: transform 200ms cubic-bezier(.16, 1, .3, 1);
}

.excerpts-modal.is-open .excerpts-modal__dialog {
    transform: translateY(0);
}

.excerpts-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 18px;
    border-bottom: 1px solid var(--rule);
}

.excerpts-modal__badge {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: var(--orange);
    text-transform: uppercase;
}

.excerpts-modal__title {
    margin: 4px 0 0;
    color: var(--ocean);
    font-size: 1.45rem;
    font-weight: 750;
    letter-spacing: -.03em;
}

.excerpts-modal__close {
    background: transparent;
    border: none;
    color: #667074;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 140ms ease, background-color 140ms ease;
}

.excerpts-modal__close:hover {
    color: var(--ocean);
    background: rgba(6, 61, 89, .08);
}

.excerpts-modal__notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 18px 28px 0;
    padding: 14px 18px;
    background: #fff8f5;
    border: 1px solid rgba(244, 81, 36, .25);
    border-radius: 6px;
    color: #4a403a;
    font-size: .88rem;
    line-height: 1.5;
}

.excerpts-modal__notice svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.excerpts-modal__notice p {
    margin: 0;
}

.excerpts-modal__body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
}

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

.excerpt-card {
    border: 1px solid rgba(6, 61, 89, .14);
    border-radius: 8px;
    overflow: hidden;
    background: #fcfbfa;
    display: flex;
    flex-direction: column;
}

.excerpt-card__preview {
    height: 160px;
    padding: 16px;
    background: var(--ocean);
    color: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.preview-header {
    display: flex;
    justify-content: space-between;
}

.preview-tag {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--mint);
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dummy-heading { height: 14px; width: 75%; background: var(--paper); border-radius: 3px; }
.dummy-paragraph { height: 8px; width: 90%; background: rgba(251, 248, 241, .4); border-radius: 2px; }
.dummy-paragraph--short { width: 60%; }
.dummy-stats { display: flex; gap: 8px; margin-top: 4px; }
.dummy-stat-box { height: 24px; width: 45px; background: rgba(244, 81, 36, .4); border-radius: 4px; }

.dummy-quote-mark { font-size: 2rem; line-height: 1; color: var(--orange); font-family: Georgia, serif; }
.dummy-quote-line { height: 10px; width: 85%; background: rgba(251, 248, 241, .8); border-radius: 3px; }
.dummy-quote-line--short { width: 50%; }
.dummy-author { height: 8px; width: 35%; background: var(--mint); border-radius: 2px; margin-top: 4px; }

.dummy-browser-window { width: 100%; height: 100px; background: #042435; border-radius: 4px; border: 1px solid rgba(255, 255, 255, .15); padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.dummy-browser-nav { height: 8px; width: 100%; background: rgba(255, 255, 255, .2); border-radius: 2px; }
.dummy-browser-hero { height: 32px; width: 100%; background: rgba(128, 210, 184, .3); border-radius: 3px; }
.dummy-browser-blocks { display: flex; gap: 4px; }
.dummy-browser-blocks span { height: 20px; flex: 1; background: rgba(255, 255, 255, .1); border-radius: 2px; }

.excerpt-card__info {
    padding: 16px;
}

.excerpt-card__info h4 {
    margin: 0 0 6px;
    color: var(--ocean);
    font-size: 1.02rem;
    font-weight: 700;
}

.excerpt-card__info p {
    margin: 0;
    color: #555e62;
    font-size: .86rem;
    line-height: 1.5;
}

.excerpts-modal__footer {
    padding: 16px 28px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: flex-end;
    background: #f8f5f0;
}

@media (max-width: 900px) {
    .mockup-grid { grid-template-columns: 1fr; }
    .services-proof-narrative { grid-template-columns: 1fr; }
    .excerpts-grid { grid-template-columns: 1fr; }
    .excerpts-modal__dialog { max-height: 95vh; margin: 10px; }
}

/* Ausgangssituationen – typografisch stärker, weniger Boxen */
.services-situations-section {
    padding: 100px 0 110px;
    border-top: 1px solid var(--rule);
    background: var(--paper);
}
.services-situations-intro {
    max-width: 780px;
    margin-bottom: 56px;
}
.services-situations-intro h2 {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.05;
}
/* Offene Liste – kein Raster-Rahmen */
.services-situations-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}
.situation-row {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 26px 0;
    border-bottom: 1px solid var(--rule);
    background: transparent;
    align-items: start;
}
/* Linke Spalten-Elemente haben rechts etwas Platz */
.situation-row:nth-child(odd) {
    padding-right: 48px;
    border-right: none;
}
.situation-row:nth-child(even) {
    padding-left: 0;
}
.situation-row:nth-last-child(-n+2) { border-bottom: none; }
.situation-row__num {
    color: var(--orange);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .07em;
    padding-top: 3px;
    line-height: 1;
}
.situation-row h3 {
    margin: 0 0 6px;
    color: var(--ocean);
    font-size: 1.12rem;
    font-weight: 720;
    letter-spacing: -.018em;
    line-height: 1.28;
}
.situation-row p {
    margin: 0;
    color: #4a5154;
    font-size: .95rem;
    line-height: 1.52;
}

/* Projektablauf – horizontale Timeline */
.services-process-section {
    padding: 100px 0 110px;
    border-top: 1px solid var(--rule);
    background: var(--cream);
}
.services-process-intro {
    max-width: 780px;
    margin-bottom: 54px;
}
.services-process-intro h2 {
    margin: 0;
    color: var(--ocean);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1.05;
}
.services-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}
/* Connecting line */
.services-timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(244,81,36,.25) 100%);
    z-index: 0;
}
.timeline-step {
    position: relative;
    padding: 0 12px;
    z-index: 1;
}
.timeline-step__dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--paper);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--orange);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    position: relative;
    z-index: 2;
}
.timeline-step:first-child .timeline-step__dot {
    background: var(--orange);
    color: var(--paper);
}
.timeline-step__title {
    display: block;
    text-align: center;
    color: var(--ocean);
    font-size: 1.08rem;
    font-weight: 720;
    letter-spacing: -.015em;
    margin-bottom: 8px;
}
.timeline-step__text {
    display: block;
    text-align: center;
    color: #4a5154;
    font-size: .88rem;
    line-height: 1.48;
}

/* Abschlussbereich mit Kuno */
.services-closing-section {
    padding: 120px 0 130px;
    border-top: 1px solid var(--rule);
    background: var(--paper);
}
.services-closing-card {
    padding: clamp(40px, 6vw, 68px);
    border: 1px solid rgba(6, 61, 89, .22);
    border-radius: 12px;
    background: var(--cream);
    box-shadow: 0 8px 20px rgba(67, 52, 34, .06);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 40px;
    align-items: center;
}
.services-closing-card h2 {
    margin: 0 0 16px;
    color: var(--ocean);
    font-size: clamp(2.1rem, 4.5vw, 3.6rem);
    font-weight: 750;
    letter-spacing: -.04em;
    line-height: 1.05;
}
.services-closing-card p {
    margin: 0;
    color: #42494c;
    font-size: 1.15rem;
    line-height: 1.6;
}
.services-closing-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}
.services-closing-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 36px;
    border-radius: 8px;
    background: var(--orange);
    color: var(--paper);
    font-size: 1.1rem;
    font-weight: 720;
    letter-spacing: -.01em;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(244,81,36,.35);
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.services-closing-primary:hover {
    background: #d63e12;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244,81,36,.45);
}
.services-closing-primary:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}
.services-closing-secondary {
    display: block;
    text-align: center;
    color: var(--ocean);
    font-size: .96rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    min-height: 44px;
    line-height: 44px;
}
.services-closing-secondary:hover { color: var(--orange); }
.services-closing-secondary:focus-visible { outline: 2px solid var(--ocean); outline-offset: 3px; border-radius: 3px; }

@media (max-width: 1180px) {
    .desktop-nav { gap: 22px; }
    .desktop-nav a { font-size: 15px; }
    .desktop-nav a:not(:last-child)::after { right: -13px; }
    .problem-card { padding-right: 27px; padding-left: 27px; }
    .principle-item { grid-template-columns: 88px minmax(0, 1fr) minmax(200px, .48fr); gap: 30px; }
}

@media (min-width: 981px) and (max-width: 1400px) {
    .hero-stage { min-height: 735px; }
    .hero-copy { width: clamp(420px, 39vw, 550px); }
    .hero-title { font-size: clamp(3rem, 4.3vw, 3.75rem); }
    .hero-intro { max-width: 100%; }
    .hero-poster {
        right: clamp(-45px, calc(11vw - 154px), 0px);
        width: clamp(420px, 35vw, 480px);
    }
    .hero-fish, .hero-fish-hand {
        top: 80px;
        right: clamp(55px, calc(45vw - 386px), 245px);
        width: 460px;
        height: 460px;
    }
}

@media (max-width: 1100px) {
    .hero-stage { min-height: 0; padding: 55px var(--site-gutter) 450px; }
    .hero-copy { width: min(100%, 680px); }
    .hero-title { font-size: clamp(3.15rem, 7.1vw, 4rem); }
    .hero-visual { top: auto; bottom: 0; height: 420px; }
    .hero-poster { top: 14px; right: -20px; width: 365px; height: 390px; }
    .hero-poster__label { top: 30px; left: 28px; font-size: 11px; }
    .hero-poster__mark { top: 25px; right: 27px; width: 46px; height: 46px; font-size: 32px; }
    .hero-poster__rule { top: 94px; right: 27px; left: 28px; }
    .hero-poster__story {
        top: 107px;
        bottom: 5px;
        left: 5px;
        width: 202px;
    }
    .hero-poster__story p { font-size: 15px; }
    .hero-poster__process-image {
        top: 107px;
        bottom: 5px;
        height: calc(100% - 112px);
    }
    .hero-poster__steps { top: 112px; right: 27px; left: 28px; gap: 9px; }
    .hero-poster__step { grid-template-columns: 34px minmax(0, 1fr); }
    .hero-poster__number { font-size: 8px; }
    .hero-poster__step strong { font-size: 10.5px; }
    .hero-poster__step p { margin-top: 1px; font-size: 9px; }
    .hero-poster__impact {
        right: 23px;
        bottom: 17px;
        left: 23px;
        height: 128px;
        grid-template-columns: minmax(58px, .78fr) minmax(42px, .56fr) minmax(94px, 1.35fr);
        gap: 7px;
    }
    .poster-shape--mint { max-width: 58px; height: 48px; }
    .poster-shape--ocean { max-width: 104px; height: 89px; }
    .hero-poster__impact-item > span:last-child,
    .hero-poster__bridge > span:last-child { margin-top: 6px; font-size: 7.5px; }
    .hero-poster__track { height: 18px; }
    .hero-poster__track::before { top: 8px; }
    .hero-poster__marker { top: 3px; }
    .hero-poster { --poster-marker-travel: 38px; }
    .hero-fish, .hero-fish-hand { top: 40px; right: 270px; width: 345px; height: 345px; }
}

@media (max-width: 980px) {
    :root { --header-height: 76px; }
    .desktop-nav { display: none; }
    .mobile-menu-button, .mobile-menu-close { display: block; }
    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 60;
        display: flex;
        flex-direction: column;
        padding: 20px 24px 32px;
        background: var(--paper);
        transform: translateX(100%);
        transition: transform 280ms cubic-bezier(.16, 1, .3, 1);
    }
    .mobile-menu.is-open { transform: translateX(0); }
    .mobile-menu__head { display: flex; align-items: center; justify-content: space-between; }
    .mobile-menu-close { position: relative; width: 42px; height: 42px; }
    .mobile-menu-close span { position: absolute; top: 19px; left: 8px; margin: 0; }
    .mobile-menu-close span:first-child { transform: rotate(45deg); }
    .mobile-menu-close span:last-child { transform: rotate(-45deg); }
    .mobile-menu nav { display: grid; gap: 6px; margin-top: 52px; }
    .mobile-menu nav a {
        padding: 13px 0;
        border-bottom: 1px solid var(--rule);
        color: var(--ocean);
        font-size: clamp(1.55rem, 6vw, 2.35rem);
        font-weight: 700;
        text-decoration: none;
    }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-card { min-height: 0; display: grid; grid-template-columns: 76px minmax(0, 1fr); column-gap: 26px; }
    .problem-icon { grid-row: 1 / span 3; margin: 0; }
    .problem-card p { margin-bottom: 22px; }
    .problem-card a { grid-column: 2; }
    .principles-intro { grid-template-columns: 1fr; gap: 30px; }
    .principle-item { grid-template-columns: 80px minmax(0, 1fr); }
    .fish-note { grid-column: 2; max-width: 420px; }
    .expectations-grid { grid-template-columns: 1fr; gap: 20px; }
    .expectations-column { padding: 28px 24px 26px; }
    .deliverables-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .closing-cta-paths { grid-template-columns: 1fr; gap: 20px; }
    .services-implementations-grid { grid-template-columns: 1fr; }
    .services-situations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .services-process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .services-closing-card { grid-template-columns: 1fr; }
    .services-flow__steps { flex-direction: column; align-items: stretch; }
    .services-flow__step { width: 100%; }
    .services-flow__arrow { transform: rotate(90deg); margin: 4px auto; align-self: center; padding-bottom: 0; }
    .case-layout { grid-template-columns: 1fr; }
    .case-preview { min-height: 500px; }
    .case-story { max-width: 700px; }
    .site-footer__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    /* Proof-Sektion mobil */
    .services-proof-inner { grid-template-columns: 1fr; }
    .services-proof-intro { border-right: none; border-bottom: 1px solid rgba(251,248,241,.1); }
    /* Principle Layout mobil */
    .services-principle__layout { grid-template-columns: 1fr; gap: 32px; }
    .services-principle__visual { display: none; }
    /* Situations mobil: eine Spalte */
    .services-situations-list { grid-template-columns: 1fr; }
    .situation-row:nth-child(odd) { padding-right: 0; }
    .situation-row:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
    .situation-row:last-child { border-bottom: none; }
    /* System-Flow mobil: umbrechen */
    .services-system-flow__item { flex-wrap: wrap; }
    .services-system-node { white-space: normal; font-size: 1rem; }
}

@media (max-width: 640px) {
    .services-situations-grid { grid-template-columns: 1fr; }
    .services-process-steps { grid-template-columns: 1fr; }
    .deliverables-grid { grid-template-columns: 1fr; }
    :root { --site-gutter: 16px; }
    .site-header__inner { padding: 0 16px; }
    .wordmark__name { font-size: 21px; }
    .wordmark__subline { margin-top: 5px; font-size: 9px; }
    .hero-stage { padding: 42px 16px 370px; }
    .hero-title { font-size: clamp(2.22rem, 10.4vw, 2.72rem); line-height: 1; }
    .hero-title__line { white-space: normal; }
    .hero-intro { margin-top: 23px; }
    .hero-insight { font-size: 1.08rem; }
    .hero-description { font-size: .98rem; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 25px; }
    .hero-cta { width: 100%; min-width: 0; min-height: 58px; padding: 0 19px; font-size: 15px; }
    .hero-secondary-cta { align-self: flex-start; }
    .hero-visual { height: 340px; }
    .hero-poster { top: 8px; right: -21px; width: 67vw; min-width: 250px; height: 326px; }
    .hero-poster__label { top: 24px; left: 21px; font-size: 9px; }
    .hero-poster__mark { top: 20px; right: 21px; width: 40px; height: 40px; font-size: 27px; }
    .hero-poster__rule { top: 78px; right: 21px; left: 21px; }
    .hero-poster__story {
        top: 91px;
        bottom: 4px;
        left: 1px;
        width: 52%;
    }
    .hero-poster__story p {
        font-size: clamp(10px, 3vw, 12px);
        letter-spacing: -.025em;
    }
    .hero-poster__process-image {
        top: 91px;
        bottom: 4px;
        height: calc(100% - 95px);
    }
    .hero-poster__steps { top: 91px; right: 20px; left: 21px; gap: 6px; }
    .hero-poster__step { grid-template-columns: 29px minmax(0, 1fr); }
    .hero-poster__number { font-size: 7.5px; }
    .hero-poster__step strong { font-size: 9.5px; }
    .hero-poster__step p { font-size: 8.25px; line-height: 1.25; }
    .hero-poster__impact {
        right: 17px;
        bottom: 13px;
        left: 17px;
        height: 108px;
        grid-template-columns: minmax(48px, .78fr) minmax(34px, .56fr) minmax(72px, 1.35fr);
        gap: 6px;
    }
    .poster-shape--mint { max-width: 46px; height: 38px; }
    .poster-shape--ocean { max-width: 82px; height: 70px; }
    .hero-poster__impact-item > span:last-child,
    .hero-poster__bridge > span:last-child { margin-top: 5px; font-size: 7px; }
    .hero-poster__track { height: 16px; }
    .hero-poster__track::before { top: 7px; }
    .hero-poster__marker { top: 2px; }
    .hero-poster { --poster-marker-travel: 25px; }
    .hero-fish, .hero-fish-hand {
        top: 47px;
        right: 48vw;
        width: 61vw;
        height: 61vw;
        min-width: 228px;
        min-height: 228px;
        max-width: 292px;
        max-height: 292px;
    }
    .kuno-check { grid-template-columns: 62px minmax(0, 1fr); gap: 16px; padding: 24px 0 28px; }
    .kuno-check__portrait { width: 58px; height: 58px; }
    .kuno-check__eyebrow { font-size: .65rem; }
    .kuno-check__heading-row { align-items: flex-start; flex-direction: column; gap: 8px; }
    .kuno-check h2 { font-size: 1.25rem; }
    .kuno-check__intro > p:first-child { font-size: .93rem; }
    .kuno-button { width: 100%; }
    .kuno-dialog__entry { grid-template-columns: 1fr; gap: 5px; padding: 15px 0; }
    .kuno-dialog__entry p { font-size: .95rem; }
    .kuno-dialog__meta { align-items: flex-start; flex-direction: column; gap: 3px; }
    .kuno-dialog__choices { display: grid; grid-template-columns: 1fr; }
    .kuno-choice { width: 100%; }
    .kuno-result__actions { flex-direction: column; }
    .problem-section { padding-top: 78px; padding-bottom: 86px; }
    .section-heading--compact { margin-bottom: 32px; }
    .section-heading h2, .principles-intro h2, .case-heading h2 { font-size: clamp(2.25rem, 11vw, 3.3rem); }
    .problem-card { padding: 25px 23px 26px; grid-template-columns: 58px minmax(0, 1fr); column-gap: 18px; }
    .problem-icon { width: 54px; height: 54px; }
    .problem-icon--lines::before { top: 17px; left: 13px; }
    .problem-icon--lines::after { top: 24px; left: 19px; }
    .problem-icon--frame::before { inset: 14px; }
    .problem-icon--frame::after { top: 20px; left: 20px; width: 14px; height: 14px; }
    .problem-icon--focus::before { inset: 13px; }
    .problem-icon--focus::after { top: 24px; left: 24px; }
    .problem-card h3 { font-size: 1.55rem; }
    .problem-card p { margin-top: 15px; font-size: .97rem; }
    .principles-section { padding: 84px 0 88px; }
    .principles-intro { margin-bottom: 48px; }
    .principles-intro > p:last-child { font-size: 1.03rem; }
    .principle-item { grid-template-columns: 1fr; gap: 16px; padding: 35px 0 39px; }
    .principle-number { font-size: 3rem; }
    .principle-copy h3 { font-size: 1.72rem; }
    .principle-copy p { font-size: .98rem; }
    .fish-note { grid-column: 1; max-width: none; margin-top: 8px; padding-left: 0; }
    .case-section { padding: 84px 0 92px; }
    .case-heading { margin-bottom: 35px; }
    .case-layout { gap: 42px; }
    .case-preview { min-height: 380px; padding: 29px; }
    .case-preview__line { top: 68px; right: 29px; left: 29px; }
    .case-preview strong { right: 25px; bottom: 40px; font-size: clamp(5.4rem, 32vw, 7rem); }
    .case-preview__caption { bottom: 29px; left: 29px; }
    .case-preview__shape--orange { top: 102px; right: 34px; width: 96px; height: 96px; }
    .case-preview__shape--mint { left: 24px; width: 126px; height: 185px; }
    .case-story dl > div { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
    .homepage-followup { padding: 87px 16px 90px; }
    .homepage-followup h2 { font-size: clamp(2.5rem, 13vw, 3.5rem); }
    .homepage-followup__copy { grid-template-columns: 1fr; gap: 28px; margin-top: 33px; }
    .homepage-followup__copy p { font-size: 1.02rem; }
    .homepage-followup__responsibility { padding-left: 19px; }
    .homepage-followup__links { flex-direction: column; }
    .workshop-link { width: 100%; }
    .site-footer__inner { padding-top: 58px; }
    .site-footer__brand { align-items: flex-start; flex-direction: column; gap: 25px; margin-bottom: 40px; }
    .site-footer__columns { grid-template-columns: 1fr; gap: 35px; padding: 38px 0 43px; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-poster__step,
    .hero-poster__marker,
    .poster-shape--ocean { animation: none !important; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
