body.hospitality-page {
    margin: 0;
    background: #020712;
    color: #f8fbff;
    font-family: Montserrat, Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --marketing-hero-h1-size: clamp(3rem, 5.45vw, 5.4rem);
    --marketing-hero-h1-line-height: 0.98;
    overflow-x: hidden;
}

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

.hospitality-page a {
    color: inherit;
}

.hospitality-icons {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.hospitality-shell {
    width: calc(100vw - clamp(40px, 5.6vw, 96px));
    max-width: 1440px;
    margin: 0 auto;
}

.hospitality-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
}

.hospitality-nav {
    position: relative;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hospitality-brand,
.hospitality-nav-links,
.hospitality-nav-actions,
.hospitality-actions,
.final-cta-grid {
    display: flex;
    align-items: center;
}

.hospitality-brand {
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
}

.hospitality-brand-mark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 68% 30%, #ffd18d 0 18%, transparent 19%),
        conic-gradient(from 20deg, #ff9f1a, #ff6b00, #b84dff, #ff9f1a);
    box-shadow: 0 0 22px rgba(255, 126, 28, 0.38);
}

.hospitality-nav-links {
    gap: 34px;
    color: rgba(239, 245, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
}

.hospitality-nav-links a,
.hospitality-login {
    text-decoration: none;
}

.hospitality-nav-links a:hover,
.hospitality-login:hover {
    color: #ffffff;
}

.hospitality-nav-actions {
    gap: 18px;
    font-size: 0.82rem;
    font-weight: 800;
}

.hospitality-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 8px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hospitality-button-small {
    min-height: 38px;
    padding: 0 18px;
    font-size: 0.78rem;
}

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

.hospitality-button:focus-visible {
    outline: 2px solid #9d7cff;
    outline-offset: 3px;
}

.hospitality-button-primary {
    background: linear-gradient(180deg, #815bff 0%, #6534f4 100%);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(102, 51, 238, 0.32);
}

.hospitality-button-secondary {
    border-color: rgba(199, 212, 255, 0.24);
    background: rgba(255, 255, 255, 0.035);
    color: #ffffff;
}

.hospitality-button-secondary:hover {
    border-color: rgba(167, 139, 250, 0.62);
    background: rgba(129, 91, 255, 0.13);
}

.hospitality-mobile-menu {
    display: none;
    position: relative;
}

.hospitality-mobile-menu summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(199, 212, 255, 0.22);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 900;
    list-style: none;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hospitality-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.hospitality-mobile-menu summary:hover,
.hospitality-mobile-menu[open] summary {
    border-color: rgba(167, 139, 250, 0.66);
    background: rgba(129, 91, 255, 0.16);
    box-shadow: 0 18px 42px rgba(68, 43, 176, 0.24);
}

.hospitality-mobile-menu summary:focus-visible {
    outline: 2px solid #9d7cff;
    outline-offset: 3px;
}

.hospitality-mobile-menu summary i,
.hospitality-mobile-menu summary i::before,
.hospitality-mobile-menu summary i::after {
    display: block;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hospitality-mobile-menu summary i {
    position: relative;
}

.hospitality-mobile-menu summary i::before,
.hospitality-mobile-menu summary i::after {
    content: "";
    position: absolute;
    left: 0;
}

.hospitality-mobile-menu summary i::before {
    top: -5px;
}

.hospitality-mobile-menu summary i::after {
    top: 5px;
}

.hospitality-mobile-menu[open] summary i {
    transform: rotate(45deg);
}

.hospitality-mobile-menu[open] summary i::before {
    transform: translateY(5px) rotate(90deg);
}

.hospitality-mobile-menu[open] summary i::after {
    opacity: 0;
}

.hospitality-mobile-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 40;
    display: grid;
    gap: 8px;
    width: min(330px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid rgba(138, 158, 214, 0.3);
    border-radius: 12px;
    background:
        radial-gradient(circle at 86% 8%, rgba(129, 91, 255, 0.24), transparent 38%),
        rgba(5, 14, 31, 0.96);
    box-shadow:
        0 26px 80px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(18px);
}

.hospitality-mobile-menu-panel a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    color: rgba(239, 245, 255, 0.82);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
}

.hospitality-mobile-menu-panel a:hover,
.hospitality-mobile-menu-panel a:focus-visible {
    color: #ffffff;
    background: rgba(129, 91, 255, 0.16);
    outline: none;
}

.hospitality-mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(138, 158, 214, 0.18);
}

.hospitality-mobile-menu-actions a {
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.045);
}

.hospitality-mobile-menu-actions a:last-child {
    background: linear-gradient(180deg, #815bff 0%, #6534f4 100%);
    box-shadow: 0 16px 34px rgba(102, 51, 238, 0.26);
}

.hospitality-hero {
    position: relative;
    min-height: 820px;
    padding: 132px 0 118px;
    overflow: hidden;
    background:
        linear-gradient(110deg, rgba(2, 7, 18, 0.98) 0%, rgba(3, 12, 28, 0.98) 38%, rgba(9, 10, 45, 0.96) 70%, rgba(24, 19, 72, 0.96) 100%);
    border-bottom: 1px solid rgba(129, 147, 190, 0.28);
}

.hospitality-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(76, 54, 178, 0.18), transparent 36%),
        linear-gradient(180deg, transparent 0%, rgba(2, 7, 18, 0.84) 100%);
    pointer-events: none;
}

.hospitality-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(520px, 0.98fr) minmax(540px, 1.02fr);
    gap: clamp(48px, 4.4vw, 72px);
    align-items: center;
}

.hospitality-hero-copy h1,
.sticky-panel h2,
.hospitality-final-cta h2 {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.06;
}

.hospitality-hero-copy h1 {
    max-width: 780px;
    font-size: var(--marketing-hero-h1-size);
    line-height: var(--marketing-hero-h1-line-height);
}

.hospitality-hero-copy p {
    max-width: 680px;
    margin: 30px 0 0;
    color: rgba(226, 234, 248, 0.82);
    font-size: 1.05rem;
    line-height: 1.72;
}

.hospitality-actions {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 38px;
}

.hospitality-eyebrow {
    display: inline-flex;
    margin-bottom: 22px;
    color: #a98cff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-payment-stage {
    position: relative;
    min-height: 580px;
    isolation: isolate;
}

.hero-payment-stage::before,
.hero-payment-stage::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero-payment-stage::before {
    inset: 46px 22px 82px;
    border: 1px solid rgba(155, 125, 255, 0.2);
    border-radius: 8px;
    background:
        radial-gradient(circle at 68% 28%, rgba(118, 83, 255, 0.34), transparent 34%),
        linear-gradient(140deg, rgba(10, 23, 46, 0.72), rgba(6, 13, 30, 0.52));
    box-shadow: inset 0 0 80px rgba(110, 77, 255, 0.1), 0 34px 110px rgba(0, 0, 0, 0.28);
    z-index: -2;
}

.hero-payment-stage::after {
    left: 86px;
    right: 54px;
    bottom: 74px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(147, 111, 255, 0.95), rgba(77, 212, 255, 0.32), transparent);
    box-shadow: 0 0 24px rgba(129, 91, 255, 0.54);
    z-index: -1;
}

.ordello-payment-screen,
.payment-terminal,
.payment-orbit-card,
.payment-method-strip {
    border: 1px solid rgba(197, 210, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.ordello-payment-screen {
    position: absolute;
    top: 72px;
    left: 0;
    width: 332px;
    padding: 30px;
    background:
        radial-gradient(circle at 18% 8%, rgba(129, 91, 255, 0.28), transparent 42%),
        linear-gradient(180deg, rgba(15, 29, 58, 0.96), rgba(4, 12, 28, 0.96));
    z-index: 7;
}

.ordello-payment-screen span {
    color: #a98cff;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.ordello-payment-screen strong {
    display: block;
    margin-top: 12px;
    color: #ffffff;
    font-size: 1.82rem;
    line-height: 1.08;
}

.ordello-payment-screen p {
    margin: 14px 0 0;
    color: rgba(225, 234, 250, 0.76);
    font-size: 0.9rem;
    line-height: 1.62;
}

.payment-screen-metrics {
    display: grid;
    gap: 4px;
    margin-top: 28px;
    padding: 18px;
    border: 1px solid rgba(140, 103, 255, 0.24);
    border-radius: 8px;
    background: rgba(2, 7, 18, 0.64);
}

.payment-screen-metrics b {
    color: #ffffff;
    font-size: 1.95rem;
    line-height: 1;
}

.payment-screen-metrics small {
    color: rgba(220, 230, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 800;
}

.payment-terminal {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(145deg, #e8eef8, #fbfcff);
}

.payment-terminal img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.payment-terminal figcaption {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(4, 10, 22, 0.82);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 900;
    text-align: center;
    backdrop-filter: blur(12px);
}

.payment-terminal-smart {
    width: 286px;
    height: 356px;
    top: 6px;
    right: 118px;
    z-index: 5;
    transform: rotate(-2deg);
}

.payment-terminal-reader {
    width: 214px;
    height: 178px;
    left: 336px;
    bottom: 84px;
    z-index: 4;
    transform: rotate(2deg);
}

.payment-terminal-pinpad {
    width: 226px;
    height: 270px;
    right: 116px;
    bottom: 42px;
    z-index: 5;
    transform: rotate(2deg);
}

.payment-terminal-phone {
    width: 184px;
    height: 320px;
    right: 0;
    top: 142px;
    z-index: 6;
    transform: rotate(4deg);
}

.payment-orbit-card {
    position: absolute;
    left: 70px;
    bottom: 42px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    width: 374px;
    padding: 18px;
    background: rgba(7, 17, 35, 0.98);
    z-index: 8;
}

.payment-orbit-card strong {
    display: block;
    color: #ffffff;
    font-size: 0.92rem;
}

.payment-orbit-card p {
    margin: 6px 0 0;
    color: rgba(219, 228, 247, 0.7);
    font-size: 0.72rem;
    line-height: 1.5;
}

.payment-method-strip {
    position: absolute;
    right: 20px;
    bottom: 18px;
    display: flex;
    gap: 8px;
    padding: 9px;
    background: rgba(2, 7, 18, 0.76);
    z-index: 9;
}

.payment-method-strip span {
    padding: 8px 10px;
    border-radius: 7px;
    background: rgba(129, 91, 255, 0.14);
    color: rgba(239, 244, 255, 0.86);
    font-size: 0.68rem;
    font-weight: 900;
}

.hospitality-split-section {
    position: relative;
    padding: 86px 0;
    background:
        linear-gradient(180deg, rgba(8, 16, 33, 0.96), rgba(2, 7, 18, 0.98));
    border-bottom: 1px solid rgba(129, 147, 190, 0.24);
}

.hospitality-split-section:nth-of-type(odd) {
    background:
        linear-gradient(180deg, rgba(4, 10, 23, 0.98), rgba(7, 16, 33, 0.96));
}

.hospitality-split-grid {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: clamp(44px, 5vw, 76px);
    align-items: start;
}

.sticky-panel {
    position: sticky;
    top: 36px;
    min-height: 430px;
    padding: 34px;
    border: 1px solid rgba(134, 155, 204, 0.24);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(11, 22, 44, 0.94), rgba(4, 12, 28, 0.94));
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-bottom: 28px;
    border: 1px solid rgba(143, 104, 255, 0.7);
    border-radius: 50%;
    color: #a98cff;
    font-size: 0.68rem;
    font-weight: 800;
}

.sticky-panel h2 {
    font-size: 2.05rem;
}

.sticky-panel p {
    margin: 22px 0 0;
    color: rgba(220, 229, 247, 0.75);
    font-size: 1rem;
    line-height: 1.64;
}

.panel-list {
    display: grid;
    gap: 14px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(241, 246, 255, 0.88);
    font-size: 0.78rem;
    font-weight: 700;
}

.panel-list li {
    position: relative;
    padding-left: 22px;
}

.panel-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.34rem;
    width: 9px;
    height: 9px;
    border: 1px solid #7f5cff;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(127, 92, 255, 0.6);
}

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

.channel-card,
.metric-card,
.module-card,
.site-card,
.flow-board,
.kds-mockup,
.kds-benefits article {
    border: 1px solid rgba(135, 153, 201, 0.25);
    border-radius: 8px;
    background: rgba(12, 24, 48, 0.78);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.channel-card {
    min-height: 540px;
    padding: 30px 28px 28px;
}

.hospitality-icon,
.flow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    color: #8c67ff;
    background: rgba(101, 52, 244, 0.14);
    box-shadow: inset 0 0 0 1px rgba(150, 119, 255, 0.22);
}

.hospitality-icon svg,
.flow-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.channel-card h3,
.metric-card h3,
.module-card h3,
.site-card h3,
.flow-stage h3,
.kds-benefits h3 {
    margin: 22px 0 0;
    color: #ffffff;
    font-size: 1.16rem;
    line-height: 1.22;
    font-weight: 800;
}

.channel-card p,
.metric-card p,
.module-card p,
.site-card p,
.flow-stage p,
.kds-benefits p {
    margin: 14px 0 0;
    color: rgba(219, 228, 247, 0.72);
    font-size: 0.9rem;
    line-height: 1.62;
}

.channel-card img {
    display: block;
    width: 100%;
    height: 230px;
    margin-top: 30px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.channel-card img.hospitality-kiosk-image,
.site-card img.hospitality-kiosk-image {
    object-fit: cover;
    object-position: center;
    padding: 0;
    background: transparent;
}

.hospitality-flow-section {
    padding: 112px 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 72px 72px,
        linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px) 0 0 / 72px 72px,
        radial-gradient(circle at 50% 24%, rgba(255, 122, 19, 0.1), transparent 28%),
        linear-gradient(180deg, #020814, #051225 58%, #020814);
}

.operation-flow-section-heading {
    display: grid;
    justify-items: center;
    max-width: 920px;
    margin: 0 auto 58px;
    text-align: center;
}

.operation-flow-section-heading h2 {
    max-width: 920px;
    margin: 22px 0 0;
    color: #ffffff;
    font-size: 4.4rem;
    line-height: 1.05;
    font-weight: 900;
}

.operation-flow-section-heading p {
    max-width: 780px;
    margin: 24px 0 0;
    color: rgba(220, 229, 247, 0.76);
    font-size: 1.08rem;
    line-height: 1.62;
}

.operation-flow-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.operation-flow-eyebrow-mark {
    position: relative;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 122, 19, 0.82);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(255, 122, 19, 0.38);
}

.operation-flow-eyebrow-mark::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 4px solid #ff7a13;
    border-radius: 50%;
}

.operation-flow-board {
    position: relative;
    display: grid;
    gap: 34px;
    overflow: visible;
    border-radius: 8px;
}

.operation-flow-diagram {
    display: grid;
    grid-template-columns: minmax(0, 1120px);
    justify-content: center;
    gap: 14px;
    align-items: stretch;
}

.operation-source-panel,
.operation-workflow-panel,
.operation-status-panel,
.operation-merge-card,
.operation-device-card,
.operation-station-strip,
.operation-outcome-grid article {
    border: 1px solid rgba(135, 153, 201, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(13, 28, 55, 0.74), rgba(5, 12, 29, 0.82));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 18px 60px rgba(0, 0, 0, 0.18);
}

.operation-source-panel,
.operation-workflow-panel,
.operation-status-panel {
    padding: 22px;
}

.operation-workflow-panel {
    padding: 28px 28px 20px;
    border-color: rgba(142, 164, 214, 0.18);
    background:
        radial-gradient(circle at 50% 0%, rgba(128, 92, 255, 0.12), transparent 42%),
        linear-gradient(145deg, rgba(11, 25, 51, 0.68), rgba(4, 12, 28, 0.78));
}

.operation-merge-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    justify-self: center;
    width: min(100%, 560px);
    min-height: 112px;
    padding: 22px 24px;
    border-color: rgba(255, 122, 19, 0.3);
    background:
        linear-gradient(145deg, rgba(24, 34, 62, 0.88), rgba(8, 18, 40, 0.94));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 22px 64px rgba(255, 122, 19, 0.08);
}

.operation-merge-card-has-screen {
    grid-template-columns: 58px minmax(0, 1fr) 104px;
}

.operation-merge-card strong {
    display: block;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.2;
    font-weight: 900;
}

.operation-merge-card p {
    margin: 6px 0 0;
    color: rgba(229, 237, 255, 0.7);
    font-size: 0.78rem;
    line-height: 1.5;
}

.operation-panel-label {
    display: block;
    margin-bottom: 20px;
    color: #b893ff;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.operation-source-panel .operation-panel-label,
.operation-workflow-panel .operation-panel-label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: center;
}

.operation-source-panel .operation-panel-label::before,
.operation-source-panel .operation-panel-label::after,
.operation-workflow-panel .operation-panel-label::before,
.operation-workflow-panel .operation-panel-label::after {
    content: "";
    flex: 1 1 80px;
    max-width: 320px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(153, 129, 255, 0.32));
}

.operation-source-panel .operation-panel-label::after,
.operation-workflow-panel .operation-panel-label::after {
    background: linear-gradient(90deg, rgba(153, 129, 255, 0.32), transparent);
}

.flow-connector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    color: #ff8a14;
}

.flow-connector::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 8px;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 122, 19, 0.15), #ff8a14);
    box-shadow: 0 0 16px rgba(255, 122, 19, 0.48);
}

.flow-connector::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 10px solid #ff8a14;
    border-right: 6px solid transparent;
    border-bottom: 0;
    border-left: 6px solid transparent;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 10px rgba(255, 122, 19, 0.58));
}

.flow-connector span {
    position: relative;
    z-index: 1;
    max-width: none;
    padding: 5px 10px;
    border: 1px solid rgba(255, 122, 19, 0.42);
    border-radius: 8px;
    color: #ff9b24;
    background: rgba(3, 10, 24, 0.94);
    font-size: 0.56rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.operation-source-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.operation-source-list article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 86px;
    padding: 15px 16px;
    border: 1px solid rgba(159, 179, 225, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(18, 35, 67, 0.92), rgba(8, 19, 42, 0.94));
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.operation-source-list strong,
.item-route-product strong,
.operation-station-strip strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.2;
}

.operation-source-list small,
.operation-device-card > small {
    display: block;
    margin-top: 4px;
    color: rgba(229, 237, 255, 0.68);
    font-size: 0.68rem;
    line-height: 1.35;
}

.operation-mini-icon,
.operation-outcome-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #9c75ff;
    background: rgba(113, 77, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(157, 124, 255, 0.22);
}

.operation-mini-icon {
    width: 48px;
    height: 48px;
}

.operation-mini-icon svg,
.operation-outcome-icon svg,
.route-step svg,
.route-direct svg,
.route-step-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.operation-core-card {
    position: relative;
    display: grid;
    place-items: center;
    justify-self: center;
    width: min(100%, 620px);
    min-height: 256px;
    padding: 38px 36px;
    text-align: center;
    border: 1px solid rgba(255, 122, 19, 0.32);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(15, 29, 56, 0.92), rgba(3, 10, 24, 0.94));
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 26px 86px rgba(255, 122, 19, 0.13),
        0 22px 80px rgba(0, 0, 0, 0.2);
}

.operation-core-orbit {
    width: 82px;
    height: 82px;
    border: 18px solid rgba(255, 244, 222, 0.96);
    border-radius: 50%;
    background: #ff8418;
    box-shadow:
        0 0 0 1px rgba(255, 131, 26, 0.4),
        0 0 40px rgba(255, 131, 26, 0.45);
}

.operation-core-card h3 {
    margin-top: 20px;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.08;
    font-weight: 900;
}

.operation-core-card p {
    margin: 12px 0 0;
    color: rgba(241, 246, 255, 0.78);
    font-size: 0.76rem;
}

.operation-single-order-note {
    display: grid;
    justify-items: center;
    gap: 10px;
    justify-self: center;
    width: min(100%, 520px);
    margin-top: -2px;
    text-align: center;
}

.single-order-label {
    padding: 8px 18px;
    border: 1px solid rgba(255, 122, 19, 0.5);
    border-radius: 8px;
    color: #ff9a28;
    background: rgba(255, 122, 19, 0.08);
    font-size: 0.76rem;
    font-weight: 900;
}

.operation-single-order-note p {
    margin: 0;
    color: rgba(244, 248, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.45;
}

.item-route-list {
    display: grid;
    gap: 22px;
}

.item-route-branch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.item-route {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    align-items: start;
    min-height: 292px;
    padding: 22px 18px 30px;
    border: 1px solid rgba(159, 179, 225, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(17, 35, 67, 0.74), rgba(6, 16, 35, 0.72));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 44px rgba(0, 0, 0, 0.14);
}

.item-route::before {
    content: "";
    position: absolute;
    inset: 0 18px auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(172, 132, 255, 0.42), transparent);
}

.item-route-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.item-route-product small {
    display: block;
    margin-bottom: 4px;
    color: #b275ff;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.item-route-drinks .operation-mini-icon,
.item-route-drinks .item-route-product small {
    color: #b275ff;
}

.item-route-burger .operation-mini-icon,
.item-route-burger .item-route-product small {
    color: #a970ff;
}

.item-route-pizza .operation-mini-icon,
.item-route-pizza .item-route-product small {
    color: #aa72ff;
}

.item-route-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.route-step-group {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.item-route-steps .route-step-group {
    width: 100%;
}

.route-step-group-has-side-action {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.86fr);
    align-items: center;
    column-gap: 12px;
}

.route-step,
.route-direct,
.route-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.18;
}

.route-step {
    gap: 7px;
    width: 100%;
    color: #151923;
    background: #f6f7fb;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.route-step-label {
    min-width: 0;
}

.route-step-has-screen {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 64px;
    justify-content: stretch;
    justify-items: start;
    column-gap: 10px;
    padding: 8px 8px 8px 14px;
    text-align: left;
    background:
        linear-gradient(135deg, #ffffff, #eef3fb 58%, #e4eaf6);
}

.operator-screen-cue {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 64px;
    width: 64px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(107, 91, 224, 0.52);
    border-radius: 11px;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 138, 20, 0.18), transparent 32%),
        linear-gradient(145deg, #101a31, #071020 72%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 8px 18px rgba(12, 18, 36, 0.22);
}

.operator-screen-cue::before {
    content: "";
    position: absolute;
    top: 6px;
    right: 7px;
    left: 7px;
    height: 9px;
    border-radius: 5px;
    background:
        linear-gradient(90deg, rgba(255, 138, 20, 0.95) 0 4px, transparent 4px 7px, rgba(238, 242, 255, 0.78) 7px 25px, transparent 25px 100%),
        linear-gradient(90deg, rgba(111, 88, 255, 0.22), rgba(255, 255, 255, 0.04));
}

.operator-screen-cue::after {
    content: "";
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 6px;
    width: 34px;
    height: 5px;
    border-radius: 5px;
    background:
        linear-gradient(90deg, rgba(30, 210, 124, 0.96), rgba(30, 210, 124, 0.72));
    box-shadow: 0 0 10px rgba(30, 210, 124, 0.22);
    transform: translateX(-50%);
}

.operator-kds-screen-status {
    position: absolute;
    z-index: 1;
    top: 9px;
    right: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #20d97a;
    box-shadow: 0 0 8px rgba(32, 217, 122, 0.72);
}

.operator-kds-screen-rows {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 10px;
    width: 38px;
    height: 4px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(148, 118, 255, 0.94) 0 21px, rgba(255, 138, 20, 0.94) 21px 30px, rgba(226, 235, 255, 0.8) 30px 100%);
    box-shadow:
        0 7px 0 rgba(226, 235, 255, 0.24),
        0 14px 0 rgba(148, 118, 255, 0.44);
}

.operator-screen-cue-large {
    justify-self: end;
    width: 98px;
    height: 68px;
    flex-basis: 98px;
    margin-left: 0;
    border-radius: 14px;
    box-shadow:
        inset 0 0 0 1px rgba(158, 132, 255, 0.18),
        0 16px 34px rgba(0, 0, 0, 0.22);
}

.operator-screen-cue-large::before {
    top: 9px;
    right: 11px;
    left: 11px;
    height: 13px;
    border-radius: 8px;
}

.operator-screen-cue-large::after {
    bottom: 8px;
    width: 56px;
    height: 7px;
}

.operator-screen-cue-large .operator-kds-screen-status {
    top: 13px;
    right: 16px;
    width: 5px;
    height: 5px;
}

.operator-screen-cue-large .operator-kds-screen-rows {
    top: 30px;
    left: 16px;
    width: 60px;
    height: 5px;
    box-shadow:
        0 9px 0 rgba(226, 235, 255, 0.24),
        0 18px 0 rgba(148, 118, 255, 0.44);
}

.route-step-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 100%;
    height: 26px;
    color: #ff8a14;
}

.route-step-arrow svg {
    width: 18px;
    height: 18px;
    transform: rotate(90deg);
}

.route-direct,
.route-note {
    border: 1px solid rgba(255, 122, 19, 0.42);
    color: #ff9b24;
    background: rgba(255, 122, 19, 0.08);
}

.route-direct {
    gap: 8px;
    margin-left: auto;
    min-width: 260px;
}

.route-direct svg {
    width: 17px;
    height: 17px;
}

.route-note {
    grid-column: 2;
    justify-self: start;
    min-height: 30px;
    padding: 7px 10px;
}

.item-route-steps {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
}

.route-step-side-actions {
    display: inline-flex;
    width: 100%;
    justify-content: center;
}

.route-side-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 122, 19, 0.42);
    border-radius: 8px;
    color: #ff9b24;
    background: rgba(255, 122, 19, 0.08);
    font-size: 0.68rem;
    font-weight: 900;
}

.route-side-action svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.route-side-action::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(100% - 1px);
    bottom: auto;
    left: auto;
    width: 14px;
    height: 1px;
    border-top: 1px dashed rgba(255, 122, 19, 0.8);
    border-left: 0;
    transform: translateY(-50%);
}

.route-side-action::after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: auto;
    left: -1px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 0;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #ff8a14;
    transform: translateY(-50%);
}

.item-route-exit {
    position: absolute;
    left: 50%;
    bottom: -34px;
    width: 2px;
    height: 34px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 122, 19, 0.55), rgba(255, 122, 19, 0.08));
    box-shadow: 0 0 14px rgba(255, 122, 19, 0.34);
}

.item-route-exit::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 0;
    border-top: 8px solid #ff8a14;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 8px rgba(255, 122, 19, 0.5));
}

.item-merge-rail {
    position: relative;
    height: 76px;
    margin: 40px 0 0;
    color: #ff9b24;
}

.item-merge-rail::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(16.666% - 2px);
    right: calc(16.666% - 2px);
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 122, 19, 0.08), rgba(255, 122, 19, 0.72), rgba(255, 122, 19, 0.08));
    box-shadow: 0 0 18px rgba(255, 122, 19, 0.35);
}

.item-merge-rail::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #ff8a14, rgba(255, 122, 19, 0.1));
    box-shadow: 0 0 16px rgba(255, 122, 19, 0.44);
}

.item-merge-rail span {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 28px;
    transform: translateX(-50%);
    padding: 6px 12px;
    border: 1px solid rgba(255, 122, 19, 0.42);
    border-radius: 8px;
    color: #ff9b24;
    background: rgba(4, 12, 28, 0.96);
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.operation-status-copy {
    margin-bottom: 20px;
}

.operation-status-copy .operation-panel-label {
    margin: 0;
}

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

.operation-device-card {
    padding: 22px;
}

.operation-device-card .operation-panel-label {
    margin-bottom: 4px;
}

.operation-phone-screen {
    margin-top: 18px;
    min-height: 326px;
    padding: 18px;
    border: 1px solid rgba(116, 139, 192, 0.38);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(17, 34, 64, 0.98), rgba(4, 11, 25, 0.98));
    box-shadow:
        inset 0 0 0 4px rgba(0, 0, 0, 0.28),
        0 18px 44px rgba(0, 0, 0, 0.28);
}

.operation-phone-top,
.operation-order-summary,
.operation-order-line,
.customer-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.operation-phone-top {
    color: #ffffff;
    font-size: 0.72rem;
}

.operation-phone-top strong {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.operation-phone-top strong span {
    width: 13px;
    height: 13px;
    border: 4px solid #ff7a13;
    border-radius: 50%;
}

.operation-phone-top em {
    color: rgba(244, 248, 255, 0.8);
    font-style: normal;
    font-weight: 800;
}

.operation-phone-staff h3 {
    margin: 20px 0 0;
    color: #ffffff;
    font-size: 0.92rem;
    line-height: 1.2;
}

.operation-phone-staff p {
    margin: 5px 0 16px;
    color: rgba(226, 235, 255, 0.68);
    font-size: 0.7rem;
}

.operation-order-summary {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(132, 154, 205, 0.22);
    color: #ffffff;
    font-size: 0.75rem;
}

.operation-order-summary span,
.operation-order-line b {
    color: #ff941d;
    font-weight: 900;
}

.operation-order-line,
.customer-status {
    margin-top: 10px;
    padding: 12px;
    border: 1px solid rgba(137, 157, 203, 0.17);
    border-radius: 8px;
    background: rgba(11, 25, 51, 0.86);
}

.operation-order-line span,
.customer-status strong {
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 900;
}

.operation-order-line small,
.customer-status span {
    display: block;
    margin-top: 3px;
    color: rgba(226, 235, 255, 0.58);
    font-size: 0.55rem;
    font-weight: 800;
}

.operation-phone-staff button {
    width: 100%;
    min-height: 42px;
    margin-top: 12px;
    border: 0;
    border-radius: 8px;
    color: #eafff3;
    background: linear-gradient(135deg, #1fc86b, #12934c);
    font: inherit;
    font-size: 0.72rem;
    font-weight: 900;
}

.customer-status-ready {
    border-color: rgba(34, 231, 166, 0.48);
}

.customer-status-ready strong {
    color: #eafffb;
}

.customer-thanks {
    margin: 18px 0 0;
    color: #c979ff;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 900;
}

.operation-station-strip {
    padding: 18px;
    text-align: center;
}

.operation-station-strip > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.operation-station-strip article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    min-width: 160px;
    padding: 10px 16px;
    border: 1px solid rgba(135, 153, 201, 0.22);
    border-radius: 8px;
    background: rgba(9, 20, 41, 0.86);
}

.operation-station-strip p {
    margin: 16px 0 0;
    color: rgba(229, 237, 255, 0.68);
    font-size: 0.76rem;
    line-height: 1.5;
}

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

.operation-outcome-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    min-height: 148px;
    padding: 24px;
}

.operation-outcome-icon {
    width: 48px;
    height: 48px;
}

.operation-outcome-grid h3 {
    margin: 0;
    color: #ffffff;
    font-size: 0.94rem;
    line-height: 1.2;
    font-weight: 900;
}

.operation-outcome-grid p {
    margin: 6px 0 0;
    color: rgba(229, 237, 255, 0.7);
    font-size: 0.72rem;
    line-height: 1.45;
}

.operation-flow-image-preview {
    margin: 12px 0 0;
}

.operation-flow-image-link {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 122, 19, 0.28);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 122, 19, 0.14), transparent 42%),
        linear-gradient(145deg, rgba(12, 26, 54, 0.9), rgba(3, 10, 24, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 26px 76px rgba(0, 0, 0, 0.24);
}

.operation-flow-image-link:focus-visible {
    outline: 3px solid rgba(255, 122, 19, 0.56);
    outline-offset: 4px;
}

.operation-flow-image-link img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.operation-flow-image-link:hover img {
    opacity: 0.92;
    transform: scale(1.012);
}

.operation-flow-image-action {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(3, 10, 24, 0.88);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
    font-size: 0.76rem;
    font-weight: 900;
}

.operation-flow-image-action svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.operation-flow-image-preview figcaption {
    margin: 14px 0 0;
    color: rgba(229, 237, 255, 0.7);
    font-size: 0.78rem;
    line-height: 1.55;
    text-align: center;
}

.operation-flow-image-viewer {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: none;
    place-items: center;
    padding: 28px;
}

.operation-flow-image-viewer:target {
    display: grid;
}

.operation-flow-image-viewer-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 122, 19, 0.16), transparent 42%),
        rgba(2, 6, 16, 0.9);
    backdrop-filter: blur(8px);
}

.operation-flow-image-viewer-panel {
    position: relative;
    z-index: 1;
    overflow: auto;
    width: min(100%, 1500px);
    max-height: calc(100vh - 56px);
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 122, 19, 0.34);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(13, 28, 55, 0.94), rgba(3, 10, 24, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 32px 100px rgba(0, 0, 0, 0.52);
}

.operation-flow-image-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
}

.operation-flow-image-viewer-header span {
    display: block;
    color: #b893ff;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.operation-flow-image-viewer-header h3 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.2;
    font-weight: 900;
}

.operation-flow-image-viewer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.74rem;
    font-weight: 900;
}

.operation-flow-image-viewer-close:hover,
.operation-flow-image-viewer-close:focus-visible {
    border-color: rgba(255, 122, 19, 0.46);
    background: rgba(255, 122, 19, 0.14);
}

.operation-flow-image-viewer-close:focus-visible {
    outline: 3px solid rgba(255, 122, 19, 0.42);
    outline-offset: 3px;
}

.operation-flow-image-viewer-close svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.operation-flow-image-viewer-panel img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.metric-card {
    min-height: 290px;
    padding: 34px 30px;
}

.metric-card .hospitality-icon {
    width: 58px;
    height: 58px;
    color: #a88bff;
    background: rgba(83, 51, 187, 0.24);
}

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

.module-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 156px;
    padding: 22px;
}

.module-card-link {
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.module-card-link:hover,
.module-card-link:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(157, 124, 255, 0.52);
    background: rgba(19, 31, 64, 0.88);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.module-card-link:focus-visible {
    outline: 2px solid #9d7cff;
    outline-offset: 4px;
}

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

.module-card p {
    margin-top: 8px;
}

.module-card-cta {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: #d7c6ff;
    font-size: 0.78rem;
    font-weight: 900;
}

.kds-section {
    position: relative;
    overflow: hidden;
    padding: 124px 0 118px;
    border-top: 1px solid rgba(123, 147, 201, 0.14);
    border-bottom: 1px solid rgba(123, 147, 201, 0.14);
    background:
        radial-gradient(circle at 50% 6%, rgba(113, 70, 255, 0.24), transparent 26%),
        radial-gradient(circle at 12% 35%, rgba(32, 121, 255, 0.16), transparent 27%),
        linear-gradient(180deg, #020813 0%, #06101f 45%, #030814 100%);
}

.kds-section::before,
.kds-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(8px);
}

.kds-section::before {
    inset: 14% auto auto 50%;
    width: 620px;
    height: 620px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(113, 77, 255, 0.22), transparent 68%);
}

.kds-section::after {
    right: -180px;
    bottom: 14%;
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(33, 140, 255, 0.16), transparent 70%);
}

.kds-showcase {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 44px;
}

.kds-section-header {
    max-width: 1220px;
    margin: 0 auto;
    text-align: center;
}

.kds-platform-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 24px;
    border: 1px solid rgba(167, 124, 255, 0.38);
    border-radius: 999px;
    color: #c79aff;
    background: rgba(97, 61, 192, 0.22);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 18px 55px rgba(89, 64, 210, 0.22);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.kds-platform-pill svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kds-section-header h2 {
    margin: 26px auto 0;
    max-width: 1180px;
    color: #ffffff;
    font-size: clamp(3.1rem, 5vw, 4.7rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
}

.kds-section-header p {
    max-width: 760px;
    margin: 22px auto 0;
    color: rgba(226, 235, 255, 0.74);
    font-size: clamp(1.05rem, 1.8vw, 1.32rem);
    line-height: 1.55;
}

.kds-mockup {
    position: relative;
    isolation: isolate;
    max-width: 1220px;
    width: 100%;
    margin: 8px auto 0;
    padding: clamp(18px, 3vw, 34px);
    border: 1px solid rgba(157, 124, 255, 0.44);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(181, 105, 255, 0.16), transparent 18%, transparent 82%, rgba(70, 122, 255, 0.18)),
        rgba(4, 11, 25, 0.94);
    box-shadow:
        0 42px 110px rgba(0, 0, 0, 0.54),
        0 0 0 1px rgba(108, 134, 255, 0.18),
        0 0 70px rgba(121, 76, 255, 0.3);
}

.kds-mockup::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(246, 151, 255, 0.9), rgba(99, 84, 255, 0.18) 36%, rgba(71, 145, 255, 0.46) 72%, rgba(196, 93, 255, 0.65));
    filter: blur(5px);
    opacity: 0.72;
}

.kds-window-chrome {
    display: flex;
    gap: 10px;
    margin: 0 0 18px 4px;
}

.kds-window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 18px currentColor;
}

.kds-window-dot-red {
    color: #ff5d6d;
    background: #ff5d6d;
}

.kds-window-dot-yellow {
    color: #ffc24c;
    background: #ffc24c;
}

.kds-window-dot-green {
    color: #5de37c;
    background: #5de37c;
}

.kds-config-waveout {
    position: absolute;
    z-index: 4;
    top: -40px;
    left: 60px;
    width: 360px;
    height: 270px;
    pointer-events: none;
}

.kds-config-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 360px;
    padding: 13px 16px 14px;
    border: 1px solid rgba(205, 176, 255, 0.34);
    border-radius: 18px;
    background:
        radial-gradient(circle at 14% 0%, rgba(175, 103, 255, 0.32), transparent 54%),
        linear-gradient(140deg, rgba(18, 24, 52, 0.94), rgba(6, 12, 29, 0.9));
    box-shadow:
        0 22px 58px rgba(0, 0, 0, 0.44),
        0 0 34px rgba(127, 87, 255, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(18px);
}

.kds-config-card::before {
    content: "";
    position: absolute;
    inset: 12px auto 12px 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffdd55, #a77cff 56%, #38d9ff);
    box-shadow: 0 0 20px rgba(255, 221, 85, 0.52);
}

.kds-config-card span {
    display: inline-flex;
    margin-bottom: 7px;
    color: #ffdf68;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.kds-config-card strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.18;
}

.kds-config-card p {
    margin: 6px 0 0;
    color: rgba(226, 235, 255, 0.74);
    font-size: 0.8rem;
    line-height: 1.38;
}

.kds-config-arrow {
    position: absolute;
    top: 78px;
    left: -80px;
    width: 360px;
    height: 270px;
    overflow: visible;
    filter:
        drop-shadow(0 0 10px rgba(255, 220, 80, 0.75))
        drop-shadow(0 0 28px rgba(133, 96, 255, 0.34));
}

.kds-config-anchor {
    position: absolute;
    top: 250px;
    left: 192px;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 240, 128, 0.94);
    border-radius: 50%;
    background: rgba(255, 220, 72, 0.18);
    box-shadow:
        0 0 0 6px rgba(255, 220, 72, 0.12),
        0 0 22px rgba(255, 220, 72, 0.68);
}

.kds-config-arrow-path,
.kds-config-arrow-head {
    fill: none;
    stroke: #ffdc48;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kds-config-arrow-path {
    stroke-dasharray: none;
}

.kds-dashboard-shell {
    position: relative;
    z-index: 1;
    padding: clamp(16px, 2.2vw, 28px);
    border: 1px solid rgba(133, 158, 220, 0.28);
    border-radius: 20px;
    background:
        radial-gradient(circle at 18% 0%, rgba(80, 130, 255, 0.1), transparent 46%),
        linear-gradient(180deg, rgba(9, 21, 43, 0.96), rgba(4, 10, 23, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -28px 60px rgba(0, 0, 0, 0.2);
}

.kds-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    color: #ffffff;
}

.kds-title-group,
.kds-live-status,
.kds-column-heading,
.kds-ticket-time {
    display: inline-flex;
    align-items: center;
}

.kds-title-group {
    gap: 14px;
}

.kds-title-group strong {
    color: #ffffff;
    font-size: clamp(1.12rem, 2vw, 1.45rem);
    line-height: 1.15;
    font-weight: 900;
}

.kds-title-icon,
.kds-column-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #be8cff;
}

.kds-title-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kds-live-status {
    gap: 9px;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
}

.kds-live-status i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #31ea78;
    box-shadow: 0 0 18px rgba(49, 234, 120, 0.82);
}

.kds-live-status svg {
    width: 26px;
    height: 26px;
    margin-left: 6px;
    color: rgba(228, 237, 255, 0.74);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.kds-column {
    --station: #8e6dff;
    --station-soft: rgba(142, 109, 255, 0.18);
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 356px;
    padding: 16px;
    border: 1px solid rgba(120, 148, 214, 0.26);
    border-radius: 16px;
    background:
        radial-gradient(circle at 30% 0%, var(--station-soft), transparent 58%),
        rgba(6, 15, 32, 0.9);
}

.kds-column-burgers {
    --station: #ff4e6f;
    --station-soft: rgba(255, 78, 111, 0.14);
}

.kds-column-fries {
    --station: #ffd35c;
    --station-soft: rgba(255, 211, 92, 0.12);
}

.kds-column-drinks {
    --station: #42d8ff;
    --station-soft: rgba(66, 216, 255, 0.13);
}

.kds-column-assembly {
    --station: #8effa3;
    --station-soft: rgba(142, 255, 163, 0.11);
}

.kds-column-heading {
    gap: 10px;
    min-height: 36px;
}

.kds-column-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.15;
    font-weight: 900;
}

.kds-column-heading em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    margin-left: auto;
    border-radius: 8px;
    color: #c6c0ff;
    background: rgba(93, 65, 213, 0.32);
    box-shadow: inset 0 0 0 1px rgba(164, 137, 255, 0.2);
    font-size: 0.74rem;
    font-style: normal;
    font-weight: 900;
}

.kds-column-icon {
    width: 30px;
    height: 30px;
    color: var(--station);
}

.kds-column-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kds-ticket {
    --ticket: var(--station);
    display: grid;
    gap: 8px;
    min-height: 96px;
    padding: 15px 15px 14px;
    border: 1px solid rgba(111, 139, 199, 0.22);
    border-left: 4px solid var(--ticket);
    border-radius: 13px;
    background:
        linear-gradient(180deg, rgba(14, 29, 56, 0.88), rgba(3, 10, 23, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.kds-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.kds-ticket-hot {
    --ticket: #ff4b61;
}

.kds-ticket-ready {
    --ticket: #35e98b;
}

.kds-ticket-warn {
    --ticket: #ffd35c;
}

.kds-ticket-cool {
    --ticket: #42d8ff;
}

.kds-ticket-queued {
    --ticket: #7d78ff;
    opacity: 0.82;
}

.kds-ticket-id,
.kds-ticket-time {
    color: rgba(232, 239, 255, 0.68);
    font-size: 0.76rem;
    font-weight: 800;
}

.kds-ticket strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.24;
    font-weight: 900;
}

.kds-ticket-time {
    gap: 7px;
}

.kds-ticket-time svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kds-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px 18px;
    border: 1px solid rgba(108, 137, 202, 0.25);
    border-radius: 12px;
    color: #d9d0ff;
    background: rgba(10, 25, 50, 0.78);
    font-size: 0.96rem;
    font-weight: 700;
}

.kds-status-bar svg {
    width: 20px;
    height: 20px;
    color: #aa76ff;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kds-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.kds-benefits article {
    position: relative;
    display: block;
    min-height: 304px;
    padding: 34px 30px 28px;
    overflow: hidden;
    border: 1px solid rgba(123, 148, 205, 0.24);
    border-radius: 18px;
    background:
        radial-gradient(circle at 20% 10%, rgba(134, 87, 255, 0.22), transparent 38%),
        linear-gradient(180deg, rgba(11, 24, 48, 0.92), rgba(5, 13, 29, 0.94));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.kds-benefits article:hover {
    transform: translateY(-4px);
    border-color: rgba(166, 126, 255, 0.46);
    box-shadow: 0 32px 86px rgba(0, 0, 0, 0.34);
}

.kds-benefits article::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c35cff, #5f75ff);
    box-shadow: 0 0 24px rgba(142, 95, 255, 0.58);
}

.kds-benefits .hospitality-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 34px;
    border-radius: 50%;
    color: #c295ff;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16), transparent 28%),
        rgba(105, 74, 216, 0.28);
}

.kds-benefits h3,
.kds-benefits p {
    margin-top: 0;
}

.kds-benefits h3 {
    max-width: 230px;
    font-size: 1.26rem;
    line-height: 1.18;
}

.kds-benefits p {
    margin-top: 16px;
    color: rgba(227, 235, 255, 0.74);
    font-size: 0.94rem;
    line-height: 1.65;
}

.benefit-spark {
    position: absolute;
    top: 24px;
    right: 24px;
    color: rgba(228, 236, 255, 0.68);
}

.benefit-spark svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kds-process-panel {
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(122, 147, 205, 0.25);
    border-radius: 22px;
    background:
        radial-gradient(circle at 18% 0%, rgba(122, 79, 255, 0.16), transparent 34%),
        radial-gradient(circle at 82% 20%, rgba(39, 130, 255, 0.14), transparent 32%),
        rgba(7, 18, 38, 0.82);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.kds-process-panel > h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.35;
    font-weight: 900;
}

.kitchen-flow-routines {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 44px;
}

.kitchen-flow-routines article {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: start;
    min-height: 174px;
    padding: 24px 22px;
    border: 1px solid rgba(141, 101, 255, 0.36);
    border-radius: 18px;
    background:
        radial-gradient(circle at 16% 16%, rgba(157, 91, 255, 0.28), transparent 42%),
        linear-gradient(180deg, rgba(20, 20, 60, 0.88), rgba(7, 15, 38, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.kitchen-flow-routines article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -45px;
    width: 44px;
    height: 1px;
    background: linear-gradient(90deg, rgba(175, 89, 255, 0.2), rgba(117, 126, 255, 0.9));
}

.kitchen-flow-routines article:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(50% - 9px);
    right: -31px;
    z-index: 1;
    width: 18px;
    height: 18px;
    border: 4px solid rgba(214, 182, 255, 0.72);
    border-radius: 50%;
    background: #9e52ff;
    box-shadow: 0 0 22px rgba(162, 81, 255, 0.78);
}

.routine-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #caa5ff;
    background:
        radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.16), transparent 30%),
        rgba(95, 65, 205, 0.36);
    box-shadow: inset 0 0 0 1px rgba(173, 137, 255, 0.26);
}

.routine-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kitchen-flow-routines strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 900;
}

.kitchen-flow-routines p {
    margin: 10px 0 0;
    color: rgba(225, 235, 255, 0.72);
    font-size: 0.86rem;
    line-height: 1.62;
}

.kds-trust-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 24px;
    padding: 16px 18px;
    border: 1px solid rgba(132, 145, 255, 0.32);
    border-radius: 16px;
    background:
        linear-gradient(90deg, rgba(91, 71, 210, 0.26), rgba(9, 20, 45, 0.78));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.kds-trust-bar strong,
.kds-trust-bar li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.kds-trust-bar strong {
    color: #ffffff;
    font-size: 0.96rem;
    line-height: 1.35;
    font-weight: 900;
}

.kds-trust-bar strong svg {
    width: 30px;
    height: 30px;
    color: #d2bdff;
}

.kds-trust-bar ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kds-trust-bar li {
    padding: 8px 12px;
    border: 1px solid rgba(186, 172, 255, 0.16);
    border-radius: 999px;
    color: rgba(237, 242, 255, 0.88);
    background: rgba(9, 18, 42, 0.58);
    font-size: 0.8rem;
    font-weight: 800;
}

.kds-trust-bar svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.kds-flow-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    margin-top: 24px;
    padding: 0 18px;
    border: 1px solid rgba(186, 172, 255, 0.28);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(123, 89, 255, 0.18);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 900;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.kds-flow-link:hover,
.kds-flow-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(214, 190, 255, 0.58);
    background: rgba(129, 91, 255, 0.28);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.kds-flow-link:focus-visible {
    outline: 2px solid #9d7cff;
    outline-offset: 4px;
}

.kds-flow-link svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.site-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 0 22px 26px;
}

.site-card img {
    display: block;
    width: calc(100% + 44px);
    height: 200px;
    margin: 0 -22px 22px;
    object-fit: cover;
}

.site-card img.hospitality-kiosk-image {
    padding: 0;
}

.site-card .hospitality-icon {
    width: 42px;
    height: 42px;
    margin-top: -38px;
    position: relative;
    z-index: 2;
    color: #ffffff;
    background: linear-gradient(180deg, #825dff, #6534f4);
}

.hospitality-final-cta {
    padding: 82px 0;
    background:
        linear-gradient(96deg, #5d32e6 0%, #261b83 45%, #061225 100%);
}

.final-cta-grid {
    justify-content: space-between;
    gap: 32px;
}

.hospitality-final-cta h2 {
    font-size: 2rem;
}

.hospitality-final-cta p {
    max-width: 760px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.62;
}

@media (max-width: 1320px) {
    .operation-flow-diagram {
        grid-template-columns: minmax(0, 900px);
        justify-content: center;
        gap: 14px;
    }

    .flow-connector {
        min-height: 58px;
    }

    .flow-connector::before {
        left: 50%;
        right: auto;
        top: 0;
        bottom: 8px;
        width: 2px;
        height: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(255, 122, 19, 0.15), #ff8a14);
    }

    .flow-connector::after {
        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;
        border-top: 10px solid #ff8a14;
        border-right: 6px solid transparent;
        border-bottom: 0;
        border-left: 6px solid transparent;
        transform: translateX(-50%);
    }

    .flow-connector span {
        max-width: none;
        transform: none;
    }

    .kds-config-waveout {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        margin: 0 0 18px;
    }

    .kds-config-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
    }

    .kds-config-arrow {
        display: none;
    }

    .kds-config-anchor {
        display: none;
    }
}

@media (max-width: 1180px) {
    .hospitality-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-payment-stage {
        max-width: 760px;
        margin: 0 auto;
    }

    .hospitality-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sticky-panel {
        position: relative;
        top: auto;
        min-height: auto;
    }

    .hospitality-split-section,
    .hospitality-flow-section,
    .kds-section {
        padding: 64px 0;
    }

    .kds-section {
        padding: 88px 0;
    }

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

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

    .kds-column {
        min-height: auto;
    }

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

    .kitchen-flow-routines article:nth-child(2)::after,
    .kitchen-flow-routines article:nth-child(2)::before {
        display: none;
    }
}

@media (max-width: 920px) {
    .hospitality-shell {
        width: calc(100vw - 32px);
    }

    .hospitality-nav-links {
        display: none;
    }

    .hospitality-mobile-menu {
        display: block;
    }

    .hospitality-hero {
        min-height: auto;
        padding: 112px 0 70px;
    }

    .hospitality-hero-copy h1 {
        font-size: var(--marketing-hero-h1-size);
        line-height: var(--marketing-hero-h1-line-height);
    }

    .hero-payment-stage {
        min-height: 520px;
    }

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

    .flow-board {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flow-join,
    .flow-stage::after {
        display: none;
    }

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

    .operation-flow-section-heading h2 {
        font-size: 3.35rem;
    }

    .operation-flow-section-heading {
        margin-bottom: 44px;
    }

    .operation-flow-section-heading p {
        font-size: 1rem;
    }

    .operation-screen-grid {
        grid-template-columns: 1fr;
    }

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

    .item-route {
        grid-template-columns: 1fr;
    }

    .route-note {
        grid-column: auto;
    }

    .operation-outcome-grid {
        grid-template-columns: 1fr;
    }

    .kds-section-header h2 {
        font-size: 3.35rem;
    }

    .kds-mockup {
        border-radius: 22px;
    }

    .kds-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .kds-columns {
        gap: 12px;
    }

    .kds-benefits article {
        min-height: 260px;
    }

    .kds-trust-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .kds-trust-bar ul {
        justify-content: flex-start;
    }

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

@media (max-width: 640px) {
    body.hospitality-page {
        --marketing-hero-h1-size: clamp(2.35rem, 10vw, 3.2rem);
        --marketing-hero-h1-line-height: 1.04;
    }

    .hospitality-shell {
        width: calc(100vw - 24px);
    }

    .hospitality-nav {
        min-height: 70px;
    }

    .hospitality-nav-actions {
        gap: 10px;
    }

    .hospitality-login {
        display: none;
    }

    .hospitality-nav-actions {
        flex-shrink: 0;
    }

    .hospitality-mobile-menu summary span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        white-space: nowrap;
        border: 0;
        clip: rect(0 0 0 0);
    }

    .hospitality-mobile-menu summary {
        width: 42px;
        padding: 0;
    }

    .hospitality-mobile-menu-panel {
        right: -8px;
    }

    .hospitality-button {
        width: 100%;
    }

    .hospitality-button-small {
        width: auto;
    }

    .hospitality-hero-copy h1 {
        font-size: var(--marketing-hero-h1-size);
        line-height: var(--marketing-hero-h1-line-height);
    }

    .hospitality-hero-copy p {
        font-size: 0.98rem;
    }

    .hero-payment-stage,
    .channel-card-grid,
    .metric-grid,
    .module-grid,
    .site-card-grid,
    .kds-benefits,
    .kitchen-flow-routines,
    .flow-stages,
    .kds-columns {
        grid-template-columns: 1fr;
    }

    .hero-payment-stage {
        display: grid;
        gap: 14px;
        min-height: auto;
    }

    .hero-payment-stage::before,
    .hero-payment-stage::after {
        display: none;
    }

    .ordello-payment-screen,
    .payment-terminal,
    .payment-orbit-card,
    .payment-method-strip {
        position: relative;
        inset: auto;
        width: auto;
        transform: none;
    }

    .payment-terminal {
        height: 230px;
    }

    .payment-terminal-smart,
    .payment-terminal-pinpad,
    .payment-terminal-phone {
        height: 280px;
    }

    .payment-orbit-card {
        grid-template-columns: 46px 1fr;
    }

    .operation-flow-board {
        padding: 0;
    }

    .operation-flow-section-heading {
        justify-items: start;
        text-align: left;
    }

    .operation-flow-section-heading h2 {
        font-size: 2.45rem;
    }

    .operation-flow-eyebrow {
        gap: 10px;
    }

    .operation-core-card {
        min-height: 230px;
        padding: 30px 20px;
    }

    .operation-core-card h3 {
        font-size: 1.58rem;
    }

    .operation-source-panel,
    .operation-workflow-panel,
    .operation-status-panel {
        padding: 16px;
    }

    .operation-source-panel .operation-panel-label,
    .operation-workflow-panel .operation-panel-label {
        gap: 12px;
    }

    .operation-source-panel .operation-panel-label::before,
    .operation-source-panel .operation-panel-label::after,
    .operation-workflow-panel .operation-panel-label::before,
    .operation-workflow-panel .operation-panel-label::after {
        display: none;
    }

    .operation-source-list {
        grid-template-columns: 1fr;
    }

    .operation-source-list article {
        min-height: 72px;
    }

    .item-route-branch-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .item-route {
        min-height: auto;
        padding: 18px;
    }

    .route-step-has-screen {
        grid-template-columns: auto minmax(0, 1fr) 54px;
        padding-right: 7px;
    }

    .operator-screen-cue {
        width: 54px;
        height: 36px;
        flex-basis: 54px;
    }

    .operator-screen-cue::before {
        top: 5px;
        right: 6px;
        left: 6px;
        height: 8px;
    }

    .operator-screen-cue::after {
        bottom: 5px;
        width: 28px;
        height: 4px;
    }

    .operator-kds-screen-status {
        top: 8px;
        right: 9px;
    }

    .operator-kds-screen-rows {
        top: 18px;
        left: 9px;
        width: 31px;
        height: 3px;
        box-shadow:
            0 6px 0 rgba(226, 235, 255, 0.24),
            0 12px 0 rgba(148, 118, 255, 0.44);
    }

    .item-route-steps {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
    }

    .item-route-steps,
    .route-step,
    .route-direct,
    .route-note,
    .route-side-action {
        width: 100%;
    }

    .route-direct {
        min-width: 0;
        margin-left: 0;
    }

    .item-route-exit,
    .item-merge-rail::before,
    .item-route-drinks .item-route-steps::before {
        display: none;
    }

    .item-merge-rail {
        height: 62px;
        margin-top: 18px;
    }

    .item-merge-rail span {
        top: 20px;
        width: max-content;
        max-width: calc(100vw - 84px);
    }

    .operation-merge-card-has-screen {
        grid-template-columns: 48px minmax(0, 1fr) 84px;
        gap: 12px;
    }

    .operation-merge-card-has-screen .operation-mini-icon {
        width: 48px;
        height: 48px;
    }

    .operator-screen-cue-large {
        width: 84px;
        height: 60px;
        flex-basis: 84px;
    }

    .operator-screen-cue-large::before {
        top: 8px;
        right: 10px;
        left: 10px;
        height: 12px;
    }

    .operator-screen-cue-large::after {
        bottom: 8px;
        width: 46px;
        height: 6px;
    }

    .operator-screen-cue-large .operator-kds-screen-status {
        top: 12px;
        right: 15px;
    }

    .operator-screen-cue-large .operator-kds-screen-rows {
        top: 27px;
        left: 14px;
        width: 50px;
        height: 4px;
        box-shadow:
            0 8px 0 rgba(226, 235, 255, 0.24),
            0 16px 0 rgba(148, 118, 255, 0.44);
    }

    .item-route-pizza .item-route-steps {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .route-step-group,
    .route-step-side-actions {
        width: 100%;
    }

    .route-side-action::before {
        left: 50%;
        height: 18px;
    }

    .route-side-action::after {
        bottom: calc(100% - 19px);
    }

    .item-route-pizza .route-step-group-has-side-action {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(128px, 0.72fr);
        align-items: center;
        column-gap: 10px;
    }

    .item-route-pizza .route-step-group-has-side-action .route-step-side-actions {
        width: 100%;
    }

    .item-route-pizza .route-step-group-has-side-action .route-side-action {
        min-height: 38px;
        padding: 8px 10px;
        width: 100%;
    }

    .item-route-pizza .route-step-group-has-side-action .route-side-action::before {
        top: 50%;
        right: calc(100% - 1px);
        bottom: auto;
        left: auto;
        width: 10px;
        height: 1px;
        border-top: 1px dashed rgba(255, 122, 19, 0.8);
        border-left: 0;
        transform: translateY(-50%);
    }

    .item-route-pizza .route-step-group-has-side-action .route-side-action::after {
        top: 50%;
        bottom: auto;
        left: -1px;
        border-top: 5px solid transparent;
        border-right: 0;
        border-bottom: 5px solid transparent;
        border-left: 7px solid #ff8a14;
        transform: translateY(-50%);
    }

    .route-step-arrow {
        width: 100%;
        height: 22px;
        flex-basis: auto;
        transform: none;
    }

    .route-step-arrow svg {
        transform: rotate(90deg);
    }

    .operation-station-strip article {
        justify-content: flex-start;
        min-width: 100%;
    }

    .operation-outcome-grid article {
        grid-template-columns: 42px 1fr;
        padding: 16px;
    }

    .operation-flow-image-action {
        position: static;
        width: calc(100% - 24px);
        margin: 12px;
        justify-content: center;
        text-align: center;
    }

    .operation-flow-image-preview figcaption {
        text-align: left;
    }

    .operation-flow-image-viewer {
        padding: 12px;
    }

    .operation-flow-image-viewer-panel {
        max-height: calc(100vh - 24px);
        padding: 12px;
    }

    .operation-flow-image-viewer-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .operation-flow-image-viewer-close {
        width: 100%;
    }

    .payment-method-strip {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hospitality-split-section {
        padding: 18px 0;
    }

    .sticky-panel,
    .flow-board,
    .channel-card,
    .metric-card {
        padding: 20px;
    }

    .sticky-panel h2 {
        font-size: 1.45rem;
    }

    .kds-section {
        padding: 70px 0;
    }

    .kds-platform-pill {
        width: 100%;
        padding-inline: 16px;
        font-size: 0.66rem;
        letter-spacing: 0.09em;
    }

    .kds-section-header h2 {
        font-size: 2.5rem;
        line-height: 1.04;
    }

    .kds-section-header p {
        font-size: 1rem;
    }

    .kds-dashboard-shell {
        padding: 14px;
    }

    .kds-title-group strong {
        font-size: 1.08rem;
    }

    .kds-status-bar {
        align-items: flex-start;
        text-align: left;
    }

    .kds-benefits article {
        min-height: auto;
        padding: 24px 22px 28px;
    }

    .kitchen-flow-routines {
        gap: 16px;
    }

    .kitchen-flow-routines article {
        min-height: auto;
    }

    .kds-flow-link {
        width: 100%;
    }

    .kitchen-flow-routines article::before,
    .kitchen-flow-routines article::after {
        display: none;
    }

    .channel-card {
        min-height: auto;
    }

    .module-card {
        grid-template-columns: 46px 1fr;
    }

    .hospitality-final-cta h2 {
        font-size: 1.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hospitality-button,
    .module-card-link,
    .kds-flow-link,
    .operation-flow-image-link img {
        transition: none;
    }

    .hospitality-button:hover,
    .module-card-link:hover,
    .module-card-link:focus-visible,
    .kds-flow-link:hover,
    .kds-flow-link:focus-visible,
    .operation-flow-image-link:hover img {
        transform: none;
    }
}
