:root {
    color-scheme: light;
    --ak-blue: #0157e1;
    --ak-blue-deep: #003fbc;
    --ak-blue-soft: #dcecff;
    --ak-blue-pale: #f3f8ff;
    --ak-ink: #111318;
    --ak-muted: #4b5565;
    --ak-line: #d8dee8;
    --ak-success: #0a7d4f;
    --ak-error: #b42318;
    --ak-white: #fff;
    --ak-max: 1120px;
    --ak-readable: 760px;
    --ak-original-max: 1280px;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100%;
    margin: 0;
    background: var(--ak-white);
    color: var(--ak-ink);
    font-family: "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
}

.site-shell main {
    flex: 1;
}

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

.centered {
    text-align: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--ak-blue);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1:focus {
    outline: none;
}

.primary-button,
.ghost-button,
.booking-button,
.service-detail-meta a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ak-blue);
    border-radius: 6px;
    padding: 11px 18px;
    font-size: 16px;
    line-height: 1.25;
    text-align: center;
}

.primary-button {
    background: var(--ak-blue);
    color: #fff;
}

.ghost-button,
.booking-button,
.service-detail-meta a {
    background: #fff;
    color: var(--ak-blue);
}

.primary-button:focus-visible,
.ghost-button:focus-visible,
.booking-button:focus-visible,
.service-detail-meta a:focus-visible,
.main-nav a:focus-visible,
.contact-list a:focus-visible,
.contact-form button:focus-visible {
    outline: 3px solid rgba(1, 87, 225, 0.26);
    outline-offset: 3px;
}

.site-header {
    width: min(calc(100% - 40px), var(--ak-max));
    min-height: 108px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: #fff;
    position: relative;
    z-index: 20;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 158px;
    height: 40px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.main-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 8px 16px;
    color: var(--ak-ink);
    font-size: 16px;
    line-height: 1.25;
}

.main-nav a.active {
    color: var(--ak-blue);
    background: var(--ak-blue-pale);
}

.hero-section {
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.ak-container.hero-layout {
    --hero-copy-left: clamp(24px, 13vw, 170px);
    --hero-image-width: clamp(340px, 37.5vw, 490px);
    --hero-image-left: clamp(260px, 35.1vw, 460px);
    --hero-bg-offset: clamp(165px, 19.2vw, 251px);
    --hero-bg-left: calc(var(--hero-image-left) + var(--hero-bg-offset));
    width: min(100%, var(--ak-original-max));
    margin-left: 0;
    margin-right: auto;
    min-height: clamp(560px, 56.65vw, 742px);
    position: relative;
    display: block;
}

.hero-copy h1,
.section-copy h2,
.facts-section h2,
.partners-section h2,
.contact-info h2,
.map-copy h2 {
    margin: 0;
    color: var(--ak-blue);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.12;
}

.hero-copy p {
    max-width: 273px;
    margin: 0;
    color: var(--ak-muted);
    font-size: 16px;
    line-height: 1.38;
}

.hero-copy p + p {
    margin-top: 24px;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-card-image {
    width: var(--hero-image-width);
    height: auto;
    border-radius: 999px 999px 0 0;
    object-fit: cover;
    box-shadow: none;
    position: absolute;
    top: clamp(28px, 3.75vw, 49px);
    left: var(--hero-image-left);
    z-index: 2;
}

.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-visual::before {
    content: "";
    position: absolute;
    top: 0;
    right: min(0px, calc((var(--ak-original-max) - 100vw) / 2));
    left: var(--hero-bg-left);
    height: 100%;
    background: #cfe4fb;
    z-index: 1;
}

.hero-copy {
    width: min(446px, calc(100vw - var(--hero-copy-left) - 20px));
    padding-top: clamp(56px, 7.35vw, 96px);
    margin-left: var(--hero-copy-left);
    position: relative;
    z-index: 3;
}

.hero-copy h1 {
    max-width: 446px;
    font-size: 46px;
    line-height: 1.12;
    overflow-wrap: normal;
    text-wrap: balance;
}

.hero-copy p:first-of-type {
    margin-top: 24px;
}

.services-section {
    position: relative;
    padding: 78px 0 92px;
    overflow: hidden;
}

.cloud-background {
    position: absolute;
    inset: 52px 0 auto;
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: top center;
    opacity: 0.78;
    pointer-events: none;
}

.section-copy,
.service-grid,
.facts-section .ak-container,
.payments-section .ak-container,
.pos-section .ak-container,
.partners-section .ak-container,
.contact-section,
.map-section {
    position: relative;
    z-index: 1;
}

.section-copy {
    max-width: 920px;
    margin: 0 auto;
}

.section-copy p {
    max-width: 860px;
    margin: 20px auto 0;
    color: var(--ak-muted);
    font-size: 18px;
    line-height: 1.65;
}

.service-grid {
    margin-top: 58px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.service-grid article {
    min-width: 0;
    text-align: center;
}

.service-grid img {
    width: 121px;
    height: 121px;
    object-fit: contain;
    margin: 0 auto 26px;
}

.service-grid h3 {
    margin: 0 0 18px;
    color: var(--ak-blue);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
}

.service-grid p,
.facts-grid p {
    margin: 0;
    color: var(--ak-ink);
    font-size: 15px;
    line-height: 1.75;
}

.facts-section {
    padding: 50px 0 92px;
    background: #d7eafa;
    text-align: center;
}

.facts-grid {
    margin-top: 54px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.facts-grid article {
    min-width: 0;
}

.facts-grid strong {
    display: block;
    margin-bottom: 18px;
    color: #000;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    overflow-wrap: normal;
}

.payments-section {
    padding: 48px 0 72px;
    background: linear-gradient(to bottom, var(--ak-blue) 0 51%, #fff 51% 100%);
    color: var(--ak-ink);
    overflow: hidden;
}

.inverted h2,
.inverted p {
    color: #fff;
}

.terminal-strip {
    margin: 40px auto 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 30px;
}

.terminal-strip img {
    width: min(100%, 310px);
    height: auto;
    justify-self: center;
}

.terminal-strip img:nth-child(2) {
    transform: translateY(36px);
}

.payment-caption {
    margin: 42px 0 0;
    color: var(--ak-blue);
    font-size: 20px;
    text-align: center;
}

.payment-methods {
    width: min(100%, 415px);
    height: auto;
    margin: 18px auto 0;
}

.payment-detail {
    width: min(calc(100% - 80px), 1262px);
    height: 557px;
    margin: 0 auto;
    position: relative;
    --payment-left-width: 63.16%;
    --payment-offset-width: 36.84%;
}

.payment-detail::before {
    content: "";
    position: absolute;
    top: 67px;
    left: 0;
    width: var(--payment-left-width);
    height: 362px;
    background: #d7eafa;
}

.payment-illustration {
    width: 360px;
    height: 362px;
    min-height: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 53px;
    left: calc((var(--payment-offset-width) - 360px) / 2);
    z-index: 1;
}

.payment-illustration img {
    width: 360px;
    height: auto;
}

.payment-panel {
    width: var(--payment-left-width);
    min-height: 384px;
    background: var(--ak-blue);
    color: #fff;
    border-radius: 0;
    padding: 58px 96px 48px 107px;
    margin-left: 0;
    position: absolute;
    top: 137px;
    left: var(--payment-offset-width);
    z-index: 2;
}

.payment-panel img {
    width: 215px;
    height: auto;
    margin-bottom: 29px;
}

.payment-panel p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.42;
}

.payment-panel p:last-child {
    margin-bottom: 0;
}

.pos-section {
    padding: 0;
    background: linear-gradient(to bottom, var(--ak-blue) 0 374px, #fff 374px 100%);
    color: #fff;
    overflow: hidden;
}

.pos-section .ak-container {
    width: min(980px, 100%);
    height: 650px;
    position: relative;
}

.pos-section .section-copy {
    max-width: 980px;
    padding-top: 48px;
}

.pos-section .section-copy p {
    max-width: 750px;
}

.pos-product-grid {
    position: absolute;
    inset: 0;
    margin: 0;
}

.pos-product-grid img {
    max-width: none;
    height: auto;
    object-fit: contain;
}

.pos-device-left,
.pos-device-right,
.pos-orderbird-cluster {
    position: absolute;
}

.pos-device-left {
    left: 47px;
    top: 248px;
    width: 204px;
}

.pos-device-right {
    left: 739px;
    top: 248px;
    width: 177px;
}

.pos-orderbird-cluster {
    left: 332px;
    top: 294px;
    width: 501px;
    aspect-ratio: 501 / 313;
}

.pos-table-plan,
.pos-orderbird-device,
.pos-orderbird-pro-logo,
.pos-orderbird-mini-logo {
    position: absolute;
}

.pos-table-plan {
    left: 0;
    top: 0;
    width: 62.68%;
}

.pos-orderbird-device {
    left: 13.37%;
    top: 14.7%;
    width: 69.46%;
}

.pos-orderbird-pro-logo {
    left: 0.8%;
    top: 74.44%;
    width: 35.53%;
}

.pos-orderbird-mini-logo {
    left: 32.93%;
    top: 92.97%;
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    color: #595959;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.pos-orderbird-mini-logo strong {
    color: #019adb;
    font-weight: 700;
}

.partners-section {
    padding: 64px 0 70px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.partners-section h2 {
    color: #888f96;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
}

.partners-heading {
    width: min(calc(100% - 40px), var(--ak-max));
    margin: 0 auto;
}

.partners-carousel {
    --partners-marquee-gap: clamp(46px, 5vw, 96px);
    width: 100%;
    margin: 42px auto 0;
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.partners-marquee-track {
    width: max-content;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    animation: ak-partners-marquee 30s linear infinite;
    will-change: transform;
}

.partners-logo-set {
    box-sizing: border-box;
    width: max-content;
    min-width: max-content;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: var(--partners-marquee-gap);
    padding-right: var(--partners-marquee-gap);
}

.partner-logo-card {
    width: max-content;
    min-width: max-content;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-card img {
    width: auto;
    max-width: clamp(5.5rem, 14vw, 13.5rem);
    height: clamp(2.1rem, 4vw, 3.8rem);
    object-fit: contain;
}

.partners-carousel:hover .partners-marquee-track {
    animation-play-state: paused;
}

@keyframes ak-partners-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-33.3333%, 0, 0);
    }
}

.contact-section {
    width: min(calc(100% - 40px), var(--ak-max));
    margin: 0 auto;
    padding: 78px 0 92px;
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 70px;
}

.contact-info h2 {
    margin-bottom: 34px;
}

.contact-list {
    display: grid;
    gap: 24px;
}

.contact-list a {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    color: var(--ak-ink);
    font-size: 17px;
    line-height: 1.55;
}

.contact-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ak-blue-pale);
    color: var(--ak-blue);
}

.contact-icon svg,
.map-pin svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-form {
    align-self: start;
    display: grid;
    gap: 16px;
}

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

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label > span {
    color: var(--ak-ink);
    font-size: 14px;
    line-height: 1.25;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #000;
    border-radius: 3px;
    background: #fff;
    color: #000;
    font-size: 16px;
    line-height: 1.35;
    padding: 10px 11px;
}

.contact-form input {
    min-height: 42px;
}

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

.contact-form button {
    justify-self: end;
    min-width: 130px;
    min-height: 42px;
    border: 0;
    border-radius: 4px;
    background: #000;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.validation-message {
    color: var(--ak-error);
    font-size: 13px;
    line-height: 1.35;
}

.submit-status {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

.submit-status--success {
    color: var(--ak-success);
}

.submit-status--error {
    color: var(--ak-error);
}

.map-section {
    width: min(calc(100% - 40px), var(--ak-max));
    margin: 0 auto;
    padding: 0 0 94px;
}

.map-copy {
    max-width: 820px;
    margin-bottom: 34px;
}

.map-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

.map-place-card {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 18px;
    align-content: start;
    border: 1px solid var(--ak-line);
    border-radius: 8px;
    padding: 26px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(17, 19, 24, 0.08);
}

.map-pin {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e9322d;
    color: #fff;
}

.map-place-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.35;
}

.map-place-card p {
    margin: 0 0 14px;
    color: var(--ak-muted);
    font-size: 15px;
    line-height: 1.55;
}

.map-card-note {
    color: var(--ak-blue);
    font-weight: 700;
}

.map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.map-frame {
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--ak-line);
    border-radius: 8px;
    background: var(--ak-blue-pale);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.site-footer {
    width: min(calc(100% - 40px), var(--ak-max));
    min-height: 118px;
    margin: 0 auto;
    border-top: 1px solid var(--ak-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--ak-muted);
    font-size: 14px;
}

.site-footer nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer a {
    color: var(--ak-ink);
}

.site-footer p {
    margin: 0;
    text-align: right;
}

.leistungen-hero {
    height: 577px;
    min-height: 360px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.leistungen-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leistungen-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.14);
}

.leistungen-hero-content {
    width: min(calc(100% - 40px), 880px);
    position: relative;
    z-index: 1;
}

.leistungen-logo {
    width: min(100%, 600px);
    margin: 0 auto;
}

.leistungen-hero h1 {
    margin: 0;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.35;
}

.leistungen-intro {
    width: min(calc(100% - 40px), 800px);
    margin: 86px auto 75px;
    text-align: center;
}

.leistungen-intro h1 {
    margin: 0;
    color: var(--ak-ink);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
}

.bluecard-section {
    width: min(calc(100% - 40px), 980px);
    margin: 0 auto;
    padding: 0;
}

.content-column h2,
.booking-services h1,
.service-detail-header h1,
.legal-page h1,
.not-found-page h1 {
    margin: 0;
    color: var(--ak-blue);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.22;
}

.bluecard-section h2 {
    margin: 0;
    color: var(--ak-blue);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.4;
}

.bluecard-subtitle {
    margin: 0;
    color: var(--ak-ink);
    font-size: 16px;
    line-height: 1.4;
}

.content-column .lead {
    color: var(--ak-ink);
    font-size: 19px;
    line-height: 1.6;
}

.bluecard-section p,
.content-column p,
.orderbird-band p,
.gastronomy-copy p {
    margin: 18px 0 0;
    color: var(--ak-muted);
    font-size: 17px;
    line-height: 1.72;
}

.bluecard-section p {
    margin: 0;
    color: var(--ak-ink);
    font-size: 16px;
    line-height: 1.4;
}

.leistungen-copy-block p + p {
    margin-top: 22px;
}

.leistungen-copy-block .bluecard-subtitle + p {
    margin-top: 76px;
}

.bluecard-after-card p + p {
    margin-top: 44px;
}

.bluecard-emphasis {
    color: var(--ak-blue);
}

.credit-card-product {
    width: 451px;
    height: 310px;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 131px;
}

.bluecard-card-stage {
    width: 100%;
    height: 310px;
    margin: 37px 0 35px;
    position: relative;
}

.bluecard-payment-strip {
    width: 255px;
    height: 163px;
    position: absolute;
    top: 70px;
    left: 616px;
}

.bluecard-after-card {
    margin-bottom: 106px;
}

.quote-band {
    min-height: 326px;
    padding: 70px 20px;
    display: flex;
    align-items: center;
    background: var(--ak-blue);
}

.quote-band blockquote {
    width: min(calc(100% - 40px), 801px);
    margin: 0 auto;
    color: #fff;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
}

.cash-system-section {
    min-height: 385px;
    padding: 88px 20px 65px;
    background: #d7e5ff;
}

.cash-system-content {
    width: min(100%, 980px);
    margin: 0 auto;
    text-align: center;
}

.cash-system-content h2 {
    margin: 0 0 31px;
    color: var(--ak-blue);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.4;
}

.cash-system-content p {
    margin: 0;
    color: var(--ak-ink);
    font-size: 16px;
    line-height: 1.8;
}

.cash-cta {
    min-width: 187px;
    min-height: 42px;
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 14px;
    padding: 10px 18px;
    background: var(--ak-blue);
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.cash-cta span {
    font-size: 20px;
    line-height: 1;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: 58px;
    align-items: start;
}

.orderbird-band {
    width: min(calc(100% - 40px), 980px);
    margin: 0 auto;
    padding: 64px 0 70px;
}

.orderbird-title-row {
    min-height: 61px;
    display: flex;
    align-items: flex-start;
    gap: 31px;
}

.orderbird-title-row h2 {
    margin: 0;
    color: var(--ak-blue);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.4;
}

.orderbird-title-row img {
    width: 253px;
    margin-top: 9px;
    flex: 0 0 auto;
}

.orderbird-band p {
    margin: 23px 0 0;
    color: var(--ak-ink);
    font-size: 16px;
    line-height: 1.4;
}

.gastronomy-copy {
    padding: 0 0 90px;
}

.gastronomy-inner {
    width: min(calc(100% - 40px), 980px);
    margin: 0 auto;
}

.gastronomy-copy h2 {
    margin: 0 0 22px;
    color: var(--ak-blue);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.4;
}

.gastronomy-copy p {
    margin: 0;
    color: var(--ak-ink);
    font-size: 16px;
    line-height: 1.4;
}

.gastronomy-copy img {
    width: 100%;
    height: 330px;
    margin: 36px 0 88px;
    border-radius: 0;
    object-fit: cover;
}

.booking-page {
    padding: 62px 0 74px;
}

.booking-services {
    width: min(calc(100% - 40px), 980px);
    margin: 0 auto;
}

.booking-services h1 {
    margin-bottom: 48px;
    text-align: center;
}

.service-list {
    display: grid;
    border-top: 1px solid var(--ak-line);
}

.booking-service {
    min-width: 0;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) auto auto;
    gap: 28px;
    align-items: center;
    border-bottom: 1px solid var(--ak-line);
    padding: 28px 0;
}

.booking-service img {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.booking-service h2 {
    margin: 0 0 8px;
    color: var(--ak-ink);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.32;
}

.booking-service p,
.booking-service span {
    margin: 0;
    color: var(--ak-muted);
    font-size: 16px;
    line-height: 1.5;
}

.service-detail-page {
    padding: 58px 0 74px;
}

.service-detail {
    width: min(calc(100% - 40px), 760px);
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    color: var(--ak-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

.breadcrumbs a {
    color: var(--ak-blue);
}

.service-detail-header h1 {
    color: var(--ak-ink);
}

.service-detail-header p {
    margin: 12px 0 0;
    color: var(--ak-muted);
    font-size: 18px;
    line-height: 1.45;
}

.service-detail-meta {
    min-height: 118px;
    display: grid;
    grid-template-columns: 84px auto minmax(170px, auto);
    gap: 18px;
    align-items: center;
    padding: 30px 0;
}

.service-detail-meta img {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.service-detail-meta span {
    color: var(--ak-muted);
    font-size: 16px;
}

.service-description {
    border-top: 1px solid var(--ak-line);
    border-bottom: 1px solid var(--ak-line);
    padding: 32px 0;
}

.service-description h2 {
    margin: 0 0 18px;
    color: var(--ak-ink);
    font-size: 20px;
    font-weight: 400;
}

.service-description p {
    margin: 0;
    color: var(--ak-muted);
    font-size: 17px;
    line-height: 1.75;
}

.legal-page {
    padding: 56px 0 72px;
}

.legal-page section,
.not-found-page {
    width: min(calc(100% - 40px), 940px);
    margin: 0 auto;
}

.legal-page h1 {
    margin-bottom: 30px;
}

.legal-page h2 {
    margin: 30px 0 12px;
    color: var(--ak-ink);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
}

.legal-page h3 {
    margin: 22px 0 10px;
    color: var(--ak-ink);
    font-size: 18px;
    font-weight: 500;
}

.legal-page p {
    margin: 0 0 16px;
    color: var(--ak-muted);
    font-size: 16px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--ak-blue);
}

.not-found-page {
    padding: 96px 0 120px;
}

.not-found-page p {
    max-width: 520px;
    margin: 18px 0 28px;
    color: var(--ak-muted);
    font-size: 18px;
    line-height: 1.55;
}

.loading-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ak-blue);
    font-size: 18px;
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 980px) {
    .hero-copy h1,
    .section-copy h2,
    .facts-section h2,
    .contact-info h2,
    .map-copy h2 {
        font-size: 42px;
    }

    .partners-section h2 {
        font-size: 22px;
    }

    .partners-carousel {
        --partners-marquee-gap: 54px;
    }

    .partner-logo-card {
        width: max-content;
        min-width: max-content;
    }

    .partner-logo-card img {
        max-width: clamp(5.5rem, 17vw, 10rem);
        height: clamp(2rem, 5vw, 3.625rem);
    }

    .bluecard-section,
    .split-section,
    .orderbird-band,
    .contact-section,
    .map-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        max-width: 100%;
    }

    .hero-copy p {
        max-width: min(100%, 360px);
    }

    .payment-detail {
        width: min(calc(100% - 40px), var(--ak-max));
        height: auto;
        padding: 56px 0 64px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .payment-detail::before {
        display: none;
    }

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

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

    .terminal-strip {
        grid-template-columns: repeat(3, minmax(160px, 1fr));
        gap: 18px;
    }

    .payment-illustration {
        width: 100%;
        height: auto;
        min-height: 300px;
        padding: 24px;
        background: #d7eafa;
        position: relative;
        top: auto;
        left: auto;
        justify-content: center;
    }

    .payment-illustration img {
        width: min(100%, 360px);
    }

    .payment-panel {
        width: 100%;
        min-height: 0;
        padding: 36px 28px;
        position: relative;
        top: auto;
        left: auto;
        margin-left: 0;
    }

    .pos-section {
        padding: 56px 0 64px;
        background: linear-gradient(to bottom, var(--ak-blue) 0 45%, #fff 45% 100%);
    }

    .pos-section .ak-container {
        width: min(calc(100% - 40px), var(--ak-max));
        height: auto;
    }

    .pos-section .section-copy {
        padding-top: 0;
    }

    .pos-product-grid {
        position: relative;
        inset: auto;
        margin-top: 42px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: end;
        gap: 34px;
    }

    .pos-device-left,
    .pos-device-right,
    .pos-orderbird-cluster {
        position: relative;
        left: auto;
        top: auto;
        justify-self: center;
    }

    .pos-device-left {
        width: min(100%, 204px);
    }

    .pos-device-right {
        width: min(100%, 177px);
    }

    .pos-orderbird-cluster {
        width: min(100%, 501px);
    }

    .contact-section {
        gap: 34px;
    }
}

@media (max-width: 720px) {
    .site-header {
        min-height: auto;
        padding: 22px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .main-nav a {
        padding-left: 10px;
        padding-right: 10px;
    }

    .services-section,
    .facts-section,
    .payments-section,
    .pos-section,
    .partners-section,
    .contact-section,
    .bluecard-section,
    .cash-system-section,
    .orderbird-band,
    .gastronomy-copy {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .hero-copy h1,
    .section-copy h2,
    .facts-section h2,
    .contact-info h2,
    .map-copy h2,
    .bluecard-section h2,
    .content-column h2,
    .cash-system-section h2,
    .orderbird-band h2,
    .gastronomy-copy h2,
    .booking-services h1,
    .service-detail-header h1,
    .legal-page h1,
    .not-found-page h1 {
        font-size: 34px;
    }

    .partners-section {
        padding: 48px 0 54px;
    }

    .partners-section h2 {
        font-size: 20px;
    }

    .partners-carousel {
        --partners-marquee-gap: 34px;
        width: 100%;
        margin-top: 34px;
        -webkit-mask-image: linear-gradient(to right, transparent 0, transparent 8%, #000 16%, #000 84%, transparent 92%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, transparent 8%, #000 16%, #000 84%, transparent 92%, transparent 100%);
    }

    .partner-logo-card {
        width: max-content;
        min-width: max-content;
    }

    .partner-logo-card img {
        max-width: 7.25rem;
        height: 2rem;
    }

    .hero-copy p,
    .section-copy p,
    .payment-panel p,
    .content-column p,
    .orderbird-band p,
    .gastronomy-copy p,
    .service-description p {
        font-size: 16px;
    }

    .service-grid,
    .facts-grid,
    .terminal-strip,
    .service-mini-grid {
        grid-template-columns: 1fr;
    }

    .terminal-strip img {
        width: min(100%, 260px);
    }

    .terminal-strip img:nth-child(2) {
        transform: none;
    }

    .payment-caption {
        margin-top: 32px;
    }

    .pos-product-grid {
        grid-template-columns: 1fr;
    }

    .pos-product-grid img {
        max-height: 230px;
    }

    .pos-orderbird-cluster img {
        max-height: none;
    }

    .leistungen-hero {
        height: 360px;
        min-height: 360px;
    }

    .leistungen-logo {
        width: min(100%, 330px);
    }

    .leistungen-intro {
        width: min(calc(100% - 32px), 800px);
        margin: 52px auto 48px;
    }

    .leistungen-intro h1 {
        font-size: 18px;
    }

    .bluecard-section p,
    .bluecard-subtitle {
        font-size: 16px;
    }

    .bluecard-section {
        width: min(calc(100% - 28px), 980px);
    }

    .leistungen-copy-block .bluecard-subtitle + p {
        margin-top: 42px;
    }

    .bluecard-after-card p + p {
        margin-top: 22px;
    }

    .bluecard-card-stage {
        height: auto;
        margin: 34px 0;
        display: grid;
        justify-items: center;
        gap: 24px;
    }

    .credit-card-product {
        width: min(100%, 451px);
        height: auto;
        position: static;
    }

    .bluecard-payment-strip {
        width: min(100%, 255px);
        height: auto;
        position: static;
    }

    .bluecard-after-card {
        margin-bottom: 60px;
    }

    .quote-band {
        min-height: 0;
        padding: 52px 20px;
    }

    .quote-band blockquote {
        width: min(100%, 801px);
        font-size: 30px;
    }

    .cash-system-section {
        min-height: 0;
        padding: 58px 20px 60px;
    }

    .cash-system-content h2 {
        font-size: 38px;
    }

    .orderbird-title-row {
        flex-direction: column;
        gap: 16px;
    }

    .orderbird-title-row h2,
    .gastronomy-copy h2 {
        font-size: 36px;
    }

    .gastronomy-copy img {
        height: auto;
        margin: 34px 0 58px;
    }

    .form-row,
    .booking-service,
    .service-detail-meta {
        grid-template-columns: 1fr;
    }

    .contact-form button {
        width: 100%;
        justify-self: stretch;
    }

    .booking-button,
    .service-detail-meta a {
        width: 100%;
    }

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

    .site-footer {
        min-height: 120px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding: 28px 0;
    }

    .site-footer p {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .ak-container,
    .site-header,
    .contact-section,
    .map-section,
    .bluecard-section,
    .orderbird-band,
    .payment-detail,
    .legal-page section,
    .not-found-page,
    .booking-services {
        width: min(calc(100% - 28px), var(--ak-max));
    }

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

    .main-nav a {
        width: 100%;
        justify-content: center;
        font-size: 15px;
    }

    .hero-actions,
    .map-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .ghost-button {
        width: 100%;
    }

    .facts-grid strong {
        font-size: 52px;
    }

    .payment-panel {
        padding: 30px 22px;
    }

    .partners-grid img {
        max-width: 190px;
    }
}
