:root {
    --ink: #292b49;
    --ink-2: #373957;
    --ink-3: #666981;
    --orange: #ea7840;
    --orange-dark: #cf5d29;
    --orange-soft: #fff0e8;
    --cream: #fffaf6;
    --surface: #ffffff;
    --surface-2: #f6f5f2;
    --line: #e6e4df;
    --green: #1ea672;
    --red: #c75c5c;
    --shadow-sm: 0 12px 30px rgba(41, 43, 73, .08);
    --shadow-lg: 0 30px 80px rgba(22, 24, 49, .16);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --container: 1180px;
    --header-height: 78px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    min-width: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

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

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    border: 0;
}

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

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 750;
    line-height: 1.1;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(2.65rem, 5.4vw, 4.95rem);
}

h2 {
    font-size: clamp(2.1rem, 4.2vw, 3.55rem);
}

h3 {
    font-size: 1.35rem;
}

:focus-visible {
    outline: 3px solid rgba(234, 120, 64, .65);
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #fff;
    background: var(--ink);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform .2s;
}

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

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

.section {
    position: relative;
    padding: 108px 0;
}

.section--light {
    background: var(--surface-2);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

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

.section-heading h2 {
    margin-bottom: 20px;
}

.section-heading p:last-child {
    margin-bottom: 0;
    color: var(--ink-3);
    font-size: 1.08rem;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--orange-dark);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

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

.eyebrow > span {
    width: 24px;
    height: 2px;
    background: currentColor;
}

.eyebrow--light {
    color: #ffb28d;
}

.icon {
    width: 1.2em;
    height: 1.2em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 21px;
    color: var(--ink);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .93rem;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}

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

.button--primary {
    color: #fff;
    background: var(--orange);
    box-shadow: 0 12px 30px rgba(234, 120, 64, .25);
}

.button--primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 18px 34px rgba(207, 93, 41, .28);
}

.button--secondary {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.button--secondary:hover {
    border-color: rgba(234, 120, 64, .55);
}

.button--ghost {
    min-height: 42px;
    background: rgba(255, 255, 255, .65);
    border-color: rgba(41, 43, 73, .12);
}

.button--light {
    color: var(--ink);
    background: #fff;
}

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

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

.button--large {
    min-height: 56px;
    padding: 15px 26px;
}

.button--compact {
    min-height: 42px;
    padding: 9px 18px;
}

.button--block {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange-dark);
    font-weight: 750;
}

.text-link .icon {
    transition: transform .2s var(--ease);
}

.text-link:hover .icon {
    transform: translateX(4px);
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: height .25s var(--ease), background .25s, border-color .25s, box-shadow .25s;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    height: 68px;
    background: rgba(255, 255, 255, .92);
    border-color: rgba(41, 43, 73, .08);
    box-shadow: 0 10px 30px rgba(41, 43, 73, .06);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    flex: 0 0 150px;
}

.media-shell {
    position: relative;
    display: block;
    overflow: hidden;
}

.media-shell.is-loading::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, #ecebe7 20%, #f8f7f4 45%, #ecebe7 70%);
    background-size: 200% 100%;
    animation: skeleton 1.2s linear infinite;
}

.media-shell--logo {
    width: 150px;
    aspect-ratio: 1379 / 448;
}

.media-shell--footer-logo {
    width: 175px;
    aspect-ratio: 1379 / 448;
}

.media-shell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes skeleton {
    to { background-position: -200% 0; }
}

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

.desktop-nav a {
    position: relative;
    padding: 12px 11px;
    color: var(--ink-2);
    font-size: .88rem;
    font-weight: 650;
}

.desktop-nav a::after {
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 2px;
    content: "";
    background: var(--orange);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    cursor: pointer;
    background: transparent;
    border-radius: 50%;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
    transition: transform .2s, opacity .2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    z-index: -1;
    top: 68px;
    right: 0;
    left: 0;
    height: calc(100dvh - 68px);
    padding: 24px 20px 40px;
    overflow-y: auto;
    background: #fff;
}

.mobile-menu nav {
    display: grid;
    gap: 5px;
    width: min(100%, 560px);
    margin-inline: auto;
}

.mobile-menu nav > a:not(.button) {
    padding: 15px 8px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
    font-weight: 700;
}

.mobile-menu .button {
    margin-top: 18px;
}

.hero {
    min-height: 820px;
    padding-top: 155px;
    padding-bottom: 45px;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(234, 120, 64, .16), transparent 23%),
        linear-gradient(180deg, var(--cream), #fff 78%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 56px;
}

.hero-copy {
    padding-bottom: 30px;
}

.hero h1 {
    max-width: 720px;
    margin-bottom: 24px;
}

.hero h1 em {
    position: relative;
    color: var(--orange);
    font-style: normal;
}

.hero h1 em::after {
    position: absolute;
    right: 2px;
    bottom: -7px;
    left: 2px;
    height: 8px;
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='10' viewBox='0 0 300 10'%3E%3Cpath d='M2 7c70-5 194-7 296-3' fill='none' stroke='%23ea7840' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 32px;
    color: var(--ink-3);
    font-size: 1.16rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    color: var(--ink-2);
    font-size: .85rem;
    font-weight: 650;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-proof .icon {
    color: var(--orange);
}

.hero-glow {
    position: absolute;
    z-index: 0;
    width: 400px;
    height: 400px;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(10px);
}

.hero-glow--one {
    top: 100px;
    right: -180px;
    background: rgba(234, 120, 64, .12);
}

.hero-glow--two {
    bottom: 50px;
    left: -260px;
    background: rgba(41, 43, 73, .06);
}

.device-stage {
    position: relative;
    min-height: 535px;
}

.demo-label {
    position: absolute;
    z-index: 6;
    top: 8px;
    right: 18px;
    margin: 0;
    padding: 7px 12px;
    color: var(--ink-3);
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(41, 43, 73, .1);
    border-radius: 99px;
    font-size: .67rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.device {
    position: absolute;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(41, 43, 73, .12);
    box-shadow: var(--shadow-lg);
}

.device--desktop {
    top: 48px;
    right: 0;
    width: 94%;
    height: 370px;
    border: 8px solid var(--ink);
    border-radius: 23px;
}

.device-top {
    display: flex;
    height: 30px;
    align-items: center;
    gap: 5px;
    padding: 0 11px;
    color: #77798d;
    background: #f4f3f0;
    font-size: .55rem;
}

.device-top i {
    width: 6px;
    height: 6px;
    background: #d4d3d0;
    border-radius: 50%;
}

.device-top span {
    margin-left: 5px;
}

.dashboard-demo {
    display: grid;
    height: calc(100% - 30px);
    grid-template-columns: 54px 1fr;
    background: #f8f7f4;
}

.dashboard-demo aside {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
    padding: 14px 0;
    color: #fff;
    background: var(--ink);
}

.dashboard-demo aside b {
    margin-bottom: 3px;
    color: var(--orange);
    font-size: .7rem;
}

.dashboard-demo aside span {
    width: 22px;
    height: 4px;
    background: #62647c;
    border-radius: 5px;
}

.dashboard-demo aside span.active {
    background: var(--orange);
}

.dashboard-main {
    padding: 23px;
}

.demo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 19px;
}

.demo-head div {
    display: grid;
}

.demo-head small {
    color: #898a96;
    font-size: .55rem;
}

.demo-head strong {
    font-size: .8rem;
}

.status-pill {
    padding: 4px 8px;
    color: #177150;
    background: #e2f5ec;
    border-radius: 10px;
    font-size: .5rem;
    font-weight: 750;
}

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

.metric-row > div {
    display: grid;
    padding: 13px;
    background: #fff;
    border: 1px solid #eceae5;
    border-radius: 10px;
}

.metric-row small,
.metric-row span {
    color: #8b8c98;
    font-size: .48rem;
}

.metric-row strong {
    margin: 3px 0;
    font-size: 1.1rem;
}

.demo-chart {
    margin-top: 11px;
    padding: 13px;
    background: #fff;
    border: 1px solid #eceae5;
    border-radius: 10px;
}

.chart-title {
    display: flex;
    justify-content: space-between;
    font-size: .56rem;
}

.chart-title small {
    color: #92939d;
}

.bars {
    display: flex;
    height: 77px;
    align-items: flex-end;
    gap: 10px;
    padding: 14px 5px 0;
}

.bars i {
    flex: 1;
    height: 40%;
    background: #f5bb9f;
    border-radius: 3px 3px 0 0;
}

.bars i:nth-child(2) { height: 66%; }
.bars i:nth-child(3) { height: 53%; }
.bars i:nth-child(4) { height: 88%; background: var(--orange); }
.bars i:nth-child(5) { height: 70%; }
.bars i:nth-child(6) { height: 76%; }
.bars i:nth-child(7) { height: 58%; }

.device--tablet {
    z-index: 4;
    bottom: 0;
    left: 0;
    width: 210px;
    height: 280px;
    border: 8px solid var(--ink);
    border-radius: 22px;
    transform: rotate(-3deg);
}

.tablet-ui {
    height: 100%;
    padding: 17px;
    background: linear-gradient(145deg, #fffaf6, #fff);
}

.tablet-brand {
    margin-bottom: 20px;
    color: var(--orange);
    font-size: .58rem;
    font-weight: 800;
    text-transform: uppercase;
}

.tablet-ui > strong {
    display: block;
    margin-bottom: 12px;
    font-size: .8rem;
}

.food-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 8px;
    padding: 7px;
    background: #fff;
    border: 1px solid #ece9e3;
    border-radius: 9px;
}

.food-card > i {
    background:
        radial-gradient(circle at 50% 45%, #e99963 0 20%, transparent 21%),
        radial-gradient(circle at 50% 50%, #6f8c5d 0 42%, #f2c26a 43% 58%, #cf7c52 59%);
    border-radius: 7px;
}

.food-card span {
    display: grid;
    align-content: center;
}

.food-card b {
    font-size: .55rem;
}

.food-card small {
    color: #90919b;
    font-size: .45rem;
}

.tablet-button {
    margin-top: 14px;
    padding: 8px;
    color: #fff;
    background: var(--orange);
    border-radius: 8px;
    font-size: .52rem;
    font-weight: 800;
    text-align: center;
}

.device--phone {
    z-index: 5;
    right: 7px;
    bottom: 7px;
    width: 160px;
    height: 300px;
    border: 7px solid #17182c;
    border-radius: 28px;
    transform: rotate(3deg);
}

.phone-top {
    display: flex;
    height: 25px;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px;
    color: #999aa6;
    background: #fff;
    font-size: .43rem;
}

.phone-top i {
    width: 28px;
    height: 6px;
    background: #151628;
    border-radius: 8px;
}

.phone-ui {
    height: calc(100% - 25px);
    padding: 17px 12px;
    background: #f7f6f3;
}

.phone-ui > small {
    color: var(--orange-dark);
    font-size: .48rem;
    font-weight: 800;
}

.phone-ui > strong {
    display: block;
    margin: 2px 0 13px;
    font-size: .82rem;
}

.phone-order {
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
    padding: 8px;
    background: #fff;
    border-radius: 7px;
}

.phone-order span {
    color: var(--orange);
    font-size: .48rem;
    font-weight: 800;
}

.phone-order b {
    font-size: .48rem;
}

.phone-action {
    margin-top: 12px;
    padding: 8px;
    color: #fff;
    background: var(--ink);
    border-radius: 7px;
    font-size: .48rem;
    font-weight: 750;
    text-align: center;
}

.device--kds {
    z-index: 6;
    right: 127px;
    bottom: 30px;
    display: grid;
    width: 190px;
    padding: 12px 14px 12px 31px;
    border-radius: 13px;
}

.device--kds small {
    color: #8a8b96;
    font-size: .48rem;
}

.device--kds strong {
    font-size: .68rem;
}

.live-dot {
    position: absolute;
    top: 20px;
    left: 13px;
    width: 9px;
    height: 9px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(30, 166, 114, .12);
}

.segment-strip {
    position: relative;
    z-index: 4;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(41, 43, 73, .1);
}

.segment-strip > p {
    margin-bottom: 15px;
    color: var(--ink-3);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.segment-marquee {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.segment-marquee span {
    padding: 7px 13px;
    color: var(--ink-2);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 99px;
    font-size: .78rem;
    font-weight: 650;
}

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

.pillar-card {
    position: relative;
    min-height: 440px;
    padding: 35px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.pillar-card--featured {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-14px);
}

.pillar-card--featured h3,
.pillar-card--featured p {
    color: #fff;
}

.card-number {
    position: absolute;
    top: 16px;
    right: 22px;
    color: rgba(41, 43, 73, .07);
    font-size: 4rem;
    font-weight: 850;
    line-height: 1;
}

.pillar-card--featured .card-number {
    color: rgba(255, 255, 255, .08);
}

.icon-box {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 55px;
    place-items: center;
    color: var(--orange);
    background: var(--orange-soft);
    border-radius: 16px;
}

.icon-box .icon {
    width: 26px;
    height: 26px;
}

.pillar-card--featured .icon-box {
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.pillar-card h3 {
    margin-bottom: 14px;
    font-size: 1.65rem;
}

.pillar-card p {
    color: var(--ink-3);
}

.check-list {
    display: grid;
    gap: 11px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 27px;
    color: var(--ink-2);
    font-size: .9rem;
    font-weight: 600;
}

.check-list li::before {
    position: absolute;
    top: .28em;
    left: 0;
    width: 16px;
    height: 16px;
    content: "✓";
    color: #fff;
    background: var(--orange);
    border-radius: 50%;
    font-size: .65rem;
    line-height: 16px;
    text-align: center;
}

.pillar-card--featured .check-list li {
    color: rgba(255, 255, 255, .82);
}

.channel-section {
    overflow: hidden;
}

.channel-list {
    display: grid;
    gap: 42px;
}

.channel-row {
    display: grid;
    min-height: 460px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: hidden;
    background: var(--cream);
    border: 1px solid #f0e4da;
    border-radius: var(--radius-lg);
}

.channel-row--reverse .channel-copy {
    order: 2;
}

.channel-copy {
    padding: clamp(36px, 6vw, 75px);
}

.channel-copy h3 {
    margin: 15px 0 18px;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.channel-copy > p {
    color: var(--ink-3);
}

.channel-tag {
    display: inline-flex;
    padding: 6px 11px;
    color: var(--ink);
    background: #e6e7ef;
    border-radius: 99px;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.channel-tag--orange {
    color: var(--orange-dark);
    background: var(--orange-soft);
}

.inline-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.inline-benefits li {
    padding: 6px 11px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 99px;
    font-size: .74rem;
    font-weight: 700;
}

.commercial-note {
    padding: 13px 15px;
    color: var(--ink-2) !important;
    background: #fff;
    border-left: 3px solid var(--orange);
    border-radius: 4px 10px 10px 4px;
    font-size: .82rem;
}

.channel-visual {
    position: relative;
    display: grid;
    height: 100%;
    min-height: 460px;
    place-items: center;
    overflow: hidden;
    background: var(--ink);
}

.channel-visual::before {
    position: absolute;
    width: 370px;
    height: 370px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .025), 0 0 0 120px rgba(255, 255, 255, .02);
}

.visual-note {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 7px 10px;
    color: rgba(255, 255, 255, .75);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 99px;
    font-size: .62rem;
}

.mini-tablet {
    position: relative;
    z-index: 2;
    width: 245px;
    padding: 16px;
    background: #fff;
    border: 10px solid #17182c;
    border-radius: 22px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, .28);
    transform: rotate(-4deg);
}

.mini-cover {
    height: 110px;
    margin-bottom: 13px;
    background:
        radial-gradient(circle at center, #efb34d 0 16%, #678257 17% 29%, #c96c43 30% 47%, #f6d17f 48% 58%, #ede2d3 59%);
    border-radius: 12px;
}

.mini-tablet strong {
    font-size: .8rem;
}

.mini-tablet > span {
    display: block;
    width: 82%;
    height: 5px;
    margin-top: 7px;
    background: #e4e2de;
    border-radius: 5px;
}

.mini-tablet > span:nth-of-type(2) {
    width: 55%;
}

.mini-tablet b {
    display: block;
    margin-top: 15px;
    padding: 8px;
    color: #fff;
    background: var(--orange);
    border-radius: 8px;
    font-size: .62rem;
    text-align: center;
}

.table-ring {
    position: absolute;
    z-index: 1;
    bottom: 41px;
    width: 350px;
    height: 80px;
    background: #17182c;
    border-radius: 50%;
    box-shadow: 0 25px 35px rgba(0, 0, 0, .25);
}

.waiter-phone,
.delivery-phone {
    position: relative;
    z-index: 2;
    width: 230px;
    min-height: 375px;
    padding: 35px 20px 20px;
    background: #faf9f6;
    border: 10px solid #17182c;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
}

.waiter-phone::before,
.delivery-phone::before {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 55px;
    height: 8px;
    content: "";
    background: #17182c;
    border-radius: 10px;
    transform: translateX(-50%);
}

.waiter-phone small {
    color: var(--orange-dark);
    font-size: .6rem;
    font-weight: 750;
}

.waiter-phone strong {
    display: block;
    margin: 2px 0 18px;
}

.table-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 20px;
}

.table-map i {
    aspect-ratio: 1;
    background: #dcefe7;
    border: 1px solid #a5cfbd;
    border-radius: 8px;
}

.table-map i.busy {
    background: #ffdfcf;
    border-color: #ed9b73;
}

.waiter-phone > b {
    display: block;
    padding: 10px;
    color: #fff;
    background: var(--ink);
    border-radius: 8px;
    font-size: .62rem;
    text-align: center;
}

.kiosk {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
}

.kiosk-screen {
    display: grid;
    width: 220px;
    height: 315px;
    align-content: start;
    padding: 35px 21px;
    background: #fff;
    border: 12px solid #17182c;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.kiosk-screen b {
    margin-bottom: 24px;
}

.kiosk-screen span {
    height: 74px;
    margin-bottom: 10px;
    background: linear-gradient(120deg, #fff0e8, #f5c7af);
    border-radius: 10px;
}

.kiosk-screen i {
    padding: 8px;
    color: #fff;
    background: var(--orange);
    border-radius: 8px;
    font-size: .65rem;
    font-style: normal;
    text-align: center;
}

.kiosk-neck {
    width: 40px;
    height: 55px;
    background: #17182c;
}

.kiosk-base {
    width: 130px;
    height: 14px;
    background: #17182c;
    border-radius: 10px;
}

.delivery-head,
.delivery-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.delivery-head i,
.delivery-item i {
    width: 45px;
    height: 45px;
    background: var(--orange);
    border-radius: 11px;
}

.delivery-head span,
.delivery-item span {
    display: grid;
}

.delivery-head b,
.delivery-item b {
    font-size: .65rem;
}

.delivery-head small,
.delivery-item small {
    color: #90919d;
    font-size: .5rem;
}

.delivery-item {
    margin-top: 28px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 11px;
}

.delivery-item i {
    background:
        radial-gradient(circle at center, #6a875b 0 34%, #eda94a 35% 52%, #cc7449 53%);
}

.delivery-status {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
}

.delivery-status::before {
    position: absolute;
    z-index: 0;
    top: 5px;
    right: 6px;
    left: 6px;
    height: 2px;
    content: "";
    background: #d5d3ce;
}

.delivery-status span {
    position: relative;
    z-index: 1;
    width: 12px;
    height: 12px;
    background: var(--orange);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--orange);
}

.flow-section {
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(234, 120, 64, .19), transparent 25%),
        var(--ink);
}

.flow-section h2,
.flow-section .section-heading p:last-child {
    color: #fff;
}

.flow-section .section-heading p:last-child {
    opacity: .7;
}

.operation-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 0;
    padding: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius-md);
    list-style: none;
}

.operation-flow li {
    display: grid;
    min-height: 145px;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 30px;
    background: #2f3151;
}

.operation-flow li > span {
    color: var(--orange);
    font-size: .75rem;
    font-weight: 800;
}

.operation-flow div {
    display: grid;
    align-content: start;
    gap: 7px;
}

.operation-flow strong {
    font-size: 1rem;
}

.operation-flow small {
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
}

.flow-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
    padding: 26px 30px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-md);
}

.flow-cta > div {
    display: grid;
    gap: 3px;
}

.flow-cta span {
    color: rgba(255, 255, 255, .65);
    font-size: .88rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-card {
    min-height: 245px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}

.feature-card:hover {
    border-color: rgba(234, 120, 64, .45);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.feature-card > .icon {
    width: 28px;
    height: 28px;
    margin-bottom: 39px;
    color: var(--orange);
}

.feature-card h3 {
    margin-bottom: 11px;
    font-size: 1.03rem;
    letter-spacing: -.02em;
}

.feature-card p {
    margin: 0;
    color: var(--ink-3);
    font-size: .84rem;
}

.comparison-section {
    overflow: hidden;
    background: #fff;
}

.comparison-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    align-items: center;
    gap: 65px;
}

.comparison-grid .section-heading {
    margin-bottom: 0;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.comparison-card {
    min-height: 400px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.comparison-card > span {
    display: inline-flex;
    margin-bottom: 30px;
    padding: 6px 11px;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 800;
}

.comparison-card ul {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.comparison-card li {
    position: relative;
    padding-left: 28px;
    color: var(--ink-2);
    font-size: .9rem;
}

.comparison-card li::before {
    position: absolute;
    top: .12em;
    left: 0;
    font-size: 1rem;
    font-weight: 850;
}

.comparison-card--before {
    background: #f8f6f3;
}

.comparison-card--before > span {
    color: #7a4c4c;
    background: #f4e1e1;
}

.comparison-card--before li::before {
    content: "×";
    color: var(--red);
}

.comparison-card--after {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
}

.comparison-card--after > span {
    color: #fff;
    background: rgba(234, 120, 64, .22);
}

.comparison-card--after li {
    color: rgba(255, 255, 255, .78);
}

.comparison-card--after li::before {
    content: "✓";
    color: #ffaf86;
}

.interfaces-section {
    background: var(--surface-2);
}

.tabs {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.tab-list {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-bottom: 1px solid var(--line);
}

.tab-list button {
    min-height: 44px;
    padding: 10px 18px;
    color: var(--ink-3);
    cursor: pointer;
    background: transparent;
    border-radius: 99px;
    font-size: .82rem;
    font-weight: 750;
}

.tab-list button[aria-selected="true"] {
    color: #fff;
    background: var(--ink);
}

.tab-panel {
    display: grid;
    min-height: 470px;
    grid-template-columns: .7fr 1.3fr;
    align-items: center;
    gap: 60px;
    padding: 60px;
}

.interface-copy > span {
    color: var(--orange-dark);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.interface-copy h3 {
    margin: 14px 0 18px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.interface-copy p {
    color: var(--ink-3);
}

.interface-frame {
    position: relative;
    display: grid;
    min-height: 330px;
    overflow: hidden;
    background: #f5f4f0;
    border: 9px solid var(--ink);
    border-radius: 20px;
    box-shadow: 0 25px 55px rgba(41, 43, 73, .18);
}

.frame-dashboard {
    grid-template-columns: 55px 1fr;
}

.frame-sidebar {
    background: var(--ink);
}

.frame-content {
    padding: 25px;
}

.frame-title {
    width: 40%;
    height: 12px;
    margin-bottom: 25px;
    background: #c9c7c1;
    border-radius: 10px;
}

.frame-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.frame-metrics i {
    height: 70px;
    background: #fff;
    border-radius: 9px;
}

.frame-graph {
    height: 135px;
    margin-top: 15px;
    background:
        linear-gradient(135deg, transparent 0 30%, rgba(234, 120, 64, .6) 31% 33%, transparent 34% 44%, rgba(234, 120, 64, .8) 45% 47%, transparent 48%),
        #fff;
    border-radius: 9px;
}

.frame-menu {
    align-content: start;
    padding: 25px;
}

.frame-menu-head {
    width: 50%;
    height: 17px;
    margin-bottom: 30px;
    background: var(--ink);
    border-radius: 8px;
}

.frame-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.frame-products i {
    height: 110px;
    background: linear-gradient(135deg, #fff0e8, #f3ba98);
    border-radius: 12px;
}

.frame-tables {
    align-content: start;
    padding: 25px;
}

.frame-map-head {
    width: 36%;
    height: 15px;
    margin-bottom: 26px;
    background: var(--ink);
    border-radius: 8px;
}

.frame-table-map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.frame-table-map i {
    aspect-ratio: 1.1;
    background: #d9eee4;
    border: 2px solid #8fc3ac;
    border-radius: 12px;
}

.frame-table-map i.occupied {
    background: #ffe0d0;
    border-color: #ea966c;
}

.frame-kitchen {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px;
    background: #e9e8e4;
}

.frame-kitchen > div {
    padding: 13px;
    background: #f7f6f3;
    border-radius: 9px;
}

.frame-kitchen b {
    font-size: .62rem;
}

.frame-kitchen i {
    display: block;
    height: 80px;
    margin-top: 10px;
    background: #fff;
    border-left: 4px solid var(--orange);
    border-radius: 8px;
}

.frame-tracking {
    grid-template-columns: 1fr .8fr;
    gap: 18px;
    padding: 25px;
}

.tracking-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
}

.tracking-card::before {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 17px;
    width: 2px;
    content: "";
    background: #d2d0ca;
}

.tracking-card i {
    position: relative;
    width: 13px;
    height: 13px;
    background: var(--orange);
    border: 3px solid #f5f4f0;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--orange);
}

.tracking-order {
    background: #fff;
    border-radius: 12px;
}

.trust-section {
    padding: 78px 0;
    color: #fff;
    background: var(--ink);
}

.trust-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: center;
    gap: 60px;
}

.trust-grid h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.trust-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.trust-points > span {
    display: grid;
    min-height: 145px;
    grid-template-columns: 38px 1fr;
    align-content: center;
    column-gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
}

.trust-points .icon {
    width: 30px;
    height: 30px;
    grid-row: span 2;
    color: #ff9b69;
}

.trust-points b {
    font-size: .9rem;
}

.trust-points small {
    color: rgba(255, 255, 255, .6);
    font-size: .73rem;
}

.plans-section {
    background: var(--cream);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 18px;
}

.plan-card {
    position: relative;
    display: flex;
    min-height: 615px;
    flex-direction: column;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.plan-card--recommended {
    border: 2px solid var(--orange);
    box-shadow: 0 25px 60px rgba(234, 120, 64, .15);
    transform: translateY(-16px);
}

.recommended-label {
    position: absolute;
    top: -16px;
    left: 50%;
    padding: 7px 15px;
    color: #fff;
    background: var(--orange);
    border-radius: 99px;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

.plan-head > span {
    color: var(--orange-dark);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.plan-head h3 {
    margin: 12px 0;
    font-size: 1.65rem;
}

.plan-head p {
    min-height: 80px;
    color: var(--ink-3);
    font-size: .86rem;
}

.plan-price {
    display: grid;
    gap: 2px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.plan-price strong {
    font-size: 1.2rem;
}

.plan-price small {
    color: var(--ink-3);
    font-size: .7rem;
}

.plan-card .check-list {
    flex: 1;
    margin-bottom: 30px;
}

.plan-footnote {
    display: block;
    margin-top: 13px;
    color: var(--ink-3);
    font-size: .67rem;
    text-align: center;
}

.plans-note {
    max-width: 830px;
    margin: 28px auto 55px;
    color: var(--ink-3);
    font-size: .78rem;
    text-align: center;
}

.plan-comparison {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.comparison-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 28px;
    border-bottom: 1px solid var(--line);
}

.comparison-title h3 {
    margin: 0;
}

.comparison-title span {
    color: var(--ink-3);
    font-size: .75rem;
}

.comparison-table__row {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    min-height: 59px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.comparison-table__row:last-child {
    border-bottom: 0;
}

.comparison-table__row > span {
    height: 100%;
    padding: 18px 22px;
    border-right: 1px solid var(--line);
    font-size: .8rem;
}

.comparison-table__row > span:last-child {
    border-right: 0;
}

.comparison-table__row > span:not(:first-child) {
    text-align: center;
}

.comparison-table__head {
    color: #fff;
    background: var(--ink);
    font-weight: 750;
}

.comparison-table__head > span {
    border-color: rgba(255, 255, 255, .12);
}

.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    align-items: start;
    gap: 75px;
}

.faq-grid .section-heading {
    position: sticky;
    top: 110px;
    margin-bottom: 0;
}

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

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

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 75px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 4px;
    color: var(--ink);
    cursor: pointer;
    background: transparent;
    font-weight: 750;
    line-height: 1.4;
    text-align: left;
}

.faq-item button > span {
    position: relative;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    background: var(--surface-2);
    border-radius: 50%;
}

.faq-item button > span::before,
.faq-item button > span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    content: "";
    background: var(--ink);
    transform: translate(-50%, -50%);
}

.faq-item button > span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s;
}

.faq-item button[aria-expanded="true"] > span {
    background: var(--orange);
}

.faq-item button[aria-expanded="true"] > span::before,
.faq-item button[aria-expanded="true"] > span::after {
    background: #fff;
}

.faq-item button[aria-expanded="true"] > span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    padding: 0 50px 23px 4px;
}

.faq-answer p {
    margin: 0;
    color: var(--ink-3);
    font-size: .9rem;
}

.final-cta {
    padding: 90px 0;
    color: #fff;
    background:
        radial-gradient(circle at 85% 0, rgba(255, 255, 255, .14), transparent 28%),
        var(--orange);
}

.final-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.final-cta__inner > div:first-child {
    max-width: 670px;
}

.final-cta h2 {
    margin-bottom: 17px;
    color: #fff;
}

.final-cta p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.final-cta__actions {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 10px;
}

.site-footer {
    padding-top: 75px;
    color: rgba(255, 255, 255, .7);
    background: #18192c;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 55px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 370px;
}

.footer-brand p {
    margin: 24px 0 20px;
    font-size: .86rem;
}

.footer-brand > a {
    color: #ffab81;
    font-size: .78rem;
    font-weight: 700;
}

.footer-grid h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.footer-grid > div:not(.footer-brand) a {
    font-size: .8rem;
    transition: color .2s;
}

.footer-grid > div:not(.footer-brand) a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .75rem;
}

.footer-bottom a {
    color: #ffab81;
}

.floating-whatsapp {
    position: fixed;
    z-index: 900;
    right: 23px;
    bottom: 22px;
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    padding: 10px 17px;
    color: #fff;
    background: #159b66;
    border-radius: 99px;
    box-shadow: 0 15px 35px rgba(21, 155, 102, .3);
    font-size: .78rem;
    font-weight: 800;
    transition: transform .2s var(--ease), background .2s;
}

.floating-whatsapp:hover {
    background: #0f8456;
    transform: translateY(-3px);
}

.floating-whatsapp .icon {
    width: 25px;
    height: 25px;
}

.back-to-top {
    position: fixed;
    z-index: 890;
    right: 25px;
    bottom: 88px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--ink);
    cursor: pointer;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s, transform .2s;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

    .hero-copy {
        max-width: 800px;
    }

    .device-stage {
        width: min(100%, 680px);
        margin-inline: auto;
    }

    .pillar-card {
        padding: 28px;
    }

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

    .comparison-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-grid .section-heading {
        position: static;
    }

    .tab-panel {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .footer-grid {
        grid-template-columns: 1.7fr 1fr 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: 2;
    }
}

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

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

    .section {
        padding: 78px 0;
    }

    .header-cta,
    .header-actions > .button--ghost {
        display: none;
    }

    .brand,
    .media-shell--logo {
        width: 137px;
        flex-basis: 137px;
    }

    .hero {
        min-height: auto;
        padding-top: 120px;
    }

    .hero-grid {
        gap: 25px;
    }

    .hero-copy {
        padding-bottom: 0;
    }

    .pillar-grid,
    .plan-grid {
        grid-template-columns: 1fr;
    }

    .pillar-card,
    .plan-card {
        min-height: auto;
    }

    .pillar-card--featured,
    .plan-card--recommended {
        transform: none;
    }

    .icon-box {
        margin-bottom: 35px;
    }

    .channel-row,
    .channel-row--reverse {
        grid-template-columns: 1fr;
    }

    .channel-row--reverse .channel-copy {
        order: 0;
    }

    .channel-visual {
        min-height: 420px;
    }

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

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

    .comparison-cards {
        max-width: 640px;
        margin-inline: auto;
    }

    .comparison-card--after {
        transform: none;
    }

    .tab-list {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .tab-list button {
        flex: 0 0 auto;
    }

    .tab-panel {
        padding: 34px;
    }

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

    .comparison-table {
        display: grid;
        gap: 10px;
        padding: 14px;
    }

    .comparison-table__head {
        display: none;
    }

    .comparison-table__row {
        min-height: auto;
        grid-template-columns: repeat(3, 1fr);
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 12px;
    }

    .comparison-table__row > span {
        padding: 12px 8px;
        font-size: .68rem;
        text-align: center;
    }

    .comparison-table__row > span:first-child {
        grid-column: 1 / -1;
        color: var(--ink);
        background: var(--surface-2);
        border-right: 0;
        border-bottom: 1px solid var(--line);
        font-weight: 750;
        text-align: left;
    }

    .comparison-table__row > span:nth-child(2)::before,
    .comparison-table__row > span:nth-child(3)::before,
    .comparison-table__row > span:nth-child(4)::before {
        display: block;
        margin-bottom: 4px;
        color: var(--ink-3);
        font-size: .57rem;
        font-weight: 700;
        text-transform: uppercase;
    }

    .comparison-table__row > span:nth-child(2)::before { content: "Essencial"; }
    .comparison-table__row > span:nth-child(3)::before { content: "Profissional"; }
    .comparison-table__row > span:nth-child(4)::before { content: "Completo"; }

    .final-cta__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 35px;
    }

    .final-cta__actions {
        width: 100%;
        flex-direction: row;
    }

    .final-cta__actions .button {
        flex: 1;
    }

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

    .footer-brand {
        max-width: none;
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

@media (max-width: 580px) {
    body {
        font-size: 15px;
    }

    .section {
        padding: 66px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-proof {
        display: grid;
    }

    .device-stage {
        min-height: 420px;
        transform: scale(.92);
        transform-origin: top center;
    }

    .device--desktop {
        width: 100%;
        height: 300px;
    }

    .dashboard-main {
        padding: 14px;
    }

    .metric-row > div {
        padding: 9px;
    }

    .device--tablet {
        width: 150px;
        height: 220px;
    }

    .device--phone {
        width: 125px;
        height: 250px;
    }

    .device--kds {
        right: 90px;
        width: 150px;
    }

    .demo-label {
        top: 2px;
        right: 2px;
    }

    .segment-strip {
        margin-top: 0;
    }

    .channel-copy {
        padding: 31px 24px;
    }

    .channel-visual {
        min-height: 360px;
    }

    .channel-visual::before {
        width: 290px;
        height: 290px;
    }

    .mini-tablet {
        width: 190px;
    }

    .waiter-phone,
    .delivery-phone {
        width: 190px;
        min-height: 320px;
    }

    .kiosk-screen {
        width: 180px;
        height: 265px;
    }

    .operation-flow,
    .feature-grid,
    .comparison-cards,
    .trust-points {
        grid-template-columns: 1fr;
    }

    .operation-flow li {
        min-height: 120px;
        padding: 25px;
    }

    .flow-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .feature-card {
        min-height: 220px;
    }

    .tab-panel {
        padding: 25px 18px;
    }

    .interface-frame {
        min-height: 260px;
        border-width: 6px;
    }

    .frame-content,
    .frame-menu,
    .frame-tables,
    .frame-tracking {
        padding: 16px;
    }

    .frame-kitchen {
        gap: 5px;
        padding: 8px;
    }

    .frame-kitchen > div {
        padding: 6px;
    }

    .plan-card {
        padding: 29px 24px;
    }

    .comparison-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .comparison-table__row > span {
        padding: 10px 4px;
        font-size: .61rem;
    }

    .faq-item button {
        min-height: 68px;
        padding: 18px 0;
        font-size: .9rem;
    }

    .faq-answer {
        padding-right: 36px;
        padding-left: 0;
    }

    .final-cta__actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 20px 0;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
        justify-content: center;
        padding: 0;
    }

    .floating-whatsapp span {
        display: none;
    }

    .back-to-top {
        right: 18px;
        bottom: 78px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media print {
    .site-header,
    .floating-whatsapp,
    .back-to-top,
    .final-cta {
        display: none !important;
    }

    .section {
        padding: 35px 0;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
