:root {
    --bg: #0a0908;
    --bg-soft: #100e0d;
    --surface: #151311;
    --surface-raised: #1b1816;
    --surface-warm: #211511;
    --paper: #f6f2ec;
    --paper-strong: #fffdfa;
    --text: #f7f3ee;
    --text-soft: #aaa39c;
    --text-dark: #171310;
    --text-dark-soft: #655d56;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.18);
    --red: #ff173f;
    --orange: #ff6a00;
    --yellow: #ffb800;
    --green: #12bc83;
    --gradient: linear-gradient(108deg, var(--red) 0%, #ff3d18 48%, var(--orange) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(255, 23, 63, 0.12), rgba(255, 106, 0, 0.08));
    --font-display: "Outfit", system-ui, sans-serif;
    --font-body: "Manrope", system-ui, sans-serif;
    --shell: 1180px;
    --header-height: 76px;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 30px;
    --shadow-lg: 0 34px 90px rgba(0, 0, 0, 0.36);
}

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

button,
a {
    font: inherit;
}

a {
    color: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3,
p,
figure,
ul,
ol {
    margin: 0;
}

ul,
ol {
    padding: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    color: var(--text);
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 22px);
}

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

.section {
    position: relative;
    padding: clamp(82px, 8vw, 118px) 0;
}

.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;
    top: 12px;
    left: 12px;
    z-index: 300;
    padding: 12px 18px;
    border-radius: 10px;
    color: #fff;
    background: var(--red);
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #ff7335;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: #cf431b;
}

.eyebrow.light {
    color: rgba(255, 255, 255, 0.78);
}

.eyebrow-mark {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gradient);
    box-shadow: 0 0 0 5px rgba(255, 75, 18, 0.11);
}

.section-heading {
    margin-bottom: clamp(42px, 5vw, 64px);
}

.section-heading h2,
.catalog-copy h2,
.integration-copy h2,
.faq-intro h2,
.final-cta-card h2 {
    font-size: clamp(2.35rem, 4.4vw, 4rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.section-heading h2 span,
.catalog-copy h2 span,
.integration-copy h2 span {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-heading > p,
.section-heading-split > p {
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.75;
}

.section-heading.centered {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered > p {
    max-width: 690px;
    margin: 20px auto 0;
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.68fr);
    gap: 64px;
    align-items: end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.tour-tab:focus-visible,
.faq-item button:focus-visible,
.text-link:focus-visible,
.nav-toggle:focus-visible {
    outline: 3px solid rgba(255, 113, 34, 0.7);
    outline-offset: 4px;
}

.button-primary {
    color: #fff;
    background: var(--gradient);
    box-shadow: 0 14px 38px rgba(255, 60, 20, 0.23);
}

.button-primary:hover {
    box-shadow: 0 18px 46px rgba(255, 60, 20, 0.34);
}

.button-secondary {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
    border-color: rgba(255, 106, 0, 0.46);
    background: rgba(255, 106, 0, 0.07);
}

.button-small {
    min-height: 44px;
    padding-inline: 19px;
    font-size: 0.79rem;
}

.button-dark {
    color: #fff;
    background: #171310;
    box-shadow: 0 16px 36px rgba(23, 19, 16, 0.2);
}

.button-light {
    color: #24110b;
    background: #fff;
    box-shadow: 0 16px 38px rgba(96, 17, 0, 0.18);
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(10, 9, 8, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(10, 9, 8, 0.94);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 123px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav > a:not(.button) {
    position: relative;
    color: #bbb5ae;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover {
    color: #fff;
}

.site-nav > a:not(.button):hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.45rem;
    cursor: pointer;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 720px;
    padding: calc(var(--header-height) + 68px) 0 72px;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.36;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
    position: absolute;
    z-index: -2;
    border-radius: 50%;
    filter: blur(36px);
    pointer-events: none;
}

.hero-glow-one {
    top: 2%;
    right: -10%;
    width: 540px;
    height: 540px;
    background: rgba(255, 91, 0, 0.14);
}

.hero-glow-two {
    bottom: 3%;
    left: -15%;
    width: 430px;
    height: 430px;
    background: rgba(255, 23, 63, 0.1);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
    gap: clamp(38px, 5vw, 72px);
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 620px;
    font-size: clamp(3.25rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.hero h1 span {
    color: transparent;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 620px;
    margin-top: 25px;
    color: #b6b0aa;
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.72;
}

.hero-keywords {
    max-width: 620px;
    margin-top: 12px;
    color: #8f8984;
    font-size: .86rem;
    line-height: 1.55;
}

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

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 25px;
    list-style: none;
}

.hero-proof li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bdb7b0;
    font-size: 0.78rem;
    font-weight: 700;
}

.hero-proof i {
    display: inline-grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(18, 188, 131, 0.16);
}

.product-board {
    position: relative;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
        rgba(18, 16, 14, 0.84);
    box-shadow: var(--shadow-lg);
}

.product-board::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    opacity: 0.62;
    background: linear-gradient(135deg, rgba(255, 82, 14, 0.44), transparent 35%, transparent 70%, rgba(255, 23, 63, 0.2));
}

.product-board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 1px 4px 16px;
    color: #918b85;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-board-head span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d7d1ca;
}

.product-board-head i {
    color: var(--green);
    font-size: 0.47rem;
    filter: drop-shadow(0 0 7px rgba(18, 188, 131, 0.8));
}

.hero-devices {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 128px;
    gap: 14px;
    align-items: end;
}

.browser-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: #e8eaed;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
}

.browser-bar {
    display: grid;
    grid-template-columns: 8px 8px 8px minmax(0, 1fr);
    gap: 6px;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    background: #e9eaec;
}

.browser-bar > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
}

.browser-bar > span:nth-child(2) {
    background: #febc2e;
}

.browser-bar > span:nth-child(3) {
    background: #28c840;
}

.browser-address {
    width: min(62%, 250px);
    margin-inline: auto;
    padding: 4px 10px;
    overflow: hidden;
    border-radius: 999px;
    color: #84878b;
    background: rgba(0, 0, 0, 0.045);
    font-size: 0.53rem;
    line-height: 1;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.screen-canvas {
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #f8f9fb;
}

.screen-canvas-wide {
    aspect-ratio: 16 / 9;
}

.screen-canvas img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.phone-frame {
    position: relative;
    overflow: hidden;
    border: 7px solid #201d1b;
    border-radius: 28px;
    background: #0b0b0b;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.phone-frame img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.phone-speaker {
    position: absolute;
    top: 7px;
    left: 50%;
    z-index: 2;
    width: 37%;
    height: 6px;
    border-radius: 999px;
    background: rgba(13, 13, 13, 0.88);
    transform: translateX(-50%);
}

.hero-phone {
    width: 128px;
    max-height: 311px;
}

.outcomes {
    position: relative;
    z-index: 3;
    border-block: 1px solid var(--line);
    background: #0e0c0b;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    min-height: 178px;
    padding: 34px 32px;
    border-left: 1px solid var(--line);
}

.outcome-card:last-child {
    border-right: 1px solid var(--line);
}

.outcome-icon {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid rgba(255, 95, 20, 0.24);
    border-radius: 13px;
    color: #ff6a25;
    background: rgba(255, 88, 12, 0.08);
    font-size: 1.15rem;
}

.outcome-card h2 {
    margin-top: 1px;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.outcome-card p {
    margin-top: 10px;
    color: var(--text-soft);
    font-size: 0.86rem;
    line-height: 1.62;
}

.pix-online {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 88, 12, 0.1), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(18, 188, 131, 0.09), transparent 28%),
        #0d0b0a;
}

.pix-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
    gap: clamp(48px, 7vw, 88px);
    align-items: center;
}

.pix-copy h2 {
    max-width: 680px;
    font-size: clamp(2.55rem, 4.6vw, 4.25rem);
    font-weight: 850;
    line-height: 1.01;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.pix-copy h2 span {
    color: transparent;
    background: linear-gradient(108deg, #ff2145, #ff6a00 80%);
    -webkit-background-clip: text;
    background-clip: text;
}

.pix-copy > p {
    max-width: 650px;
    margin-top: 23px;
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.pix-benefits {
    display: grid;
    gap: 0;
    max-width: 660px;
    margin-top: 30px;
    border-top: 1px solid var(--line);
    list-style: none;
}

.pix-benefits li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 15px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.pix-benefits li > i {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid rgba(18, 188, 131, 0.24);
    border-radius: 12px;
    color: #4bd6aa;
    background: rgba(18, 188, 131, 0.08);
    font-size: 1rem;
}

.pix-benefits strong,
.pix-benefits span {
    display: block;
}

.pix-benefits strong {
    color: #eee9e4;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 750;
}

.pix-benefits span {
    margin-top: 3px;
    color: #908a84;
    font-size: 0.76rem;
    line-height: 1.55;
}

.pix-link {
    margin-top: 27px;
    color: #5dddb4;
}

.pix-proof-card {
    position: relative;
    overflow: hidden;
    padding: clamp(25px, 3vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    color: var(--text-dark);
    background:
        radial-gradient(circle at 92% 5%, rgba(18, 188, 131, 0.13), transparent 28%),
        linear-gradient(145deg, #fffdfa, #eee8e0);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.pix-proof-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), #7fe6c4);
}

.pix-proof-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding-bottom: 23px;
    border-bottom: 1px solid rgba(23, 19, 16, 0.1);
}

.pix-status-dot {
    width: 12px;
    height: 12px;
    border: 3px solid rgba(18, 188, 131, 0.2);
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(18, 188, 131, 0.1);
}

.pix-proof-head strong,
.pix-proof-head small {
    display: block;
}

.pix-proof-head strong {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 800;
}

.pix-proof-head small {
    margin-top: 2px;
    color: #716a64;
    font-size: 0.65rem;
    font-weight: 650;
}

.pix-proof-head > i {
    color: var(--green);
    font-size: 1.5rem;
}

.pix-confirmation-flow {
    display: grid;
    gap: 0;
    margin-top: 12px;
    list-style: none;
}

.pix-confirmation-flow li {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 72px;
}

.pix-confirmation-flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 53px;
    bottom: -19px;
    left: 16px;
    width: 1px;
    background: rgba(18, 188, 131, 0.26);
}

.pix-confirmation-flow li > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(18, 188, 131, 0.25);
    border-radius: 10px;
    color: #087c59;
    background: rgba(18, 188, 131, 0.09);
    font-family: var(--font-display);
    font-size: 0.73rem;
    font-weight: 800;
}

.pix-confirmation-flow strong,
.pix-confirmation-flow small {
    display: block;
}

.pix-confirmation-flow strong {
    font-family: var(--font-display);
    font-size: 0.87rem;
    font-weight: 750;
}

.pix-confirmation-flow small {
    margin-top: 2px;
    color: #776f68;
    font-size: 0.66rem;
}

.pix-confirmation-flow li > i {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    font-size: 0.8rem;
}

.pix-system-proof {
    margin-top: 18px;
    padding: 17px 18px;
    border: 1px solid rgba(211, 51, 33, 0.16);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 23, 63, 0.1), rgba(255, 106, 0, 0.1));
}

.pix-system-proof span,
.pix-system-proof strong {
    display: block;
}

.pix-system-proof span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #a34428;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pix-system-proof strong {
    margin-top: 7px;
    color: #bd2a1b;
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 850;
    line-height: 1.35;
    text-transform: uppercase;
}

.pix-proof-note {
    display: flex;
    gap: 7px;
    align-items: start;
    margin-top: 15px;
    color: #756e67;
    font-size: 0.62rem;
    line-height: 1.5;
}

.pix-proof-note i {
    margin-top: 1px;
    color: #188a68;
}

.journey {
    background: var(--bg-soft);
}

.journey::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background: radial-gradient(circle at 50% 12%, rgba(255, 96, 0, 0.12), transparent 38%);
    pointer-events: none;
}

.journey-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    list-style: none;
}

.journey-flow::before {
    content: "";
    position: absolute;
    top: 55px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 92, 14, 0.48), rgba(255, 23, 63, 0.48), transparent);
}

.journey-flow li {
    position: relative;
    z-index: 1;
    min-height: 205px;
    padding: 26px 22px 24px;
    border-block: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.018);
}

.journey-flow li:first-child {
    border-radius: 20px 0 0 20px;
}

.journey-flow li:last-child {
    border-right: 1px solid var(--line);
    border-radius: 0 20px 20px 0;
}

.journey-number {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #625d58;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
}

.journey-flow li > i {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 26px;
    place-items: center;
    border: 1px solid rgba(255, 89, 13, 0.25);
    border-radius: 17px;
    color: #ff6c25;
    background: #181210;
    font-size: 1.24rem;
    box-shadow: 0 0 0 7px var(--bg-soft);
}

.journey-flow h3 {
    font-size: 1.06rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.journey-flow p {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 0.8rem;
    line-height: 1.55;
}

.product-tour {
    background: #080706;
}

.tour-shell {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #161311, #0f0e0d);
    box-shadow: var(--shadow-lg);
}

.tour-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
}

.tour-tab {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 84px;
    padding: 16px 20px;
    border-right: 1px solid var(--line);
    color: #8e8882;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease;
}

.tour-tab:last-child {
    border-right: 0;
}

.tour-tab::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: 0;
    left: 20px;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.tour-tab:hover,
.tour-tab.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.035);
}

.tour-tab.is-active::after {
    transform: scaleX(1);
}

.tour-tab > i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 101, 24, 0.17);
    border-radius: 11px;
    color: #ff6c25;
    background: rgba(255, 95, 16, 0.07);
}

.tour-tab span,
.tour-tab strong,
.tour-tab small {
    display: block;
}

.tour-tab strong {
    font-family: var(--font-display);
    font-size: 0.88rem;
    line-height: 1.2;
}

.tour-tab small {
    margin-top: 4px;
    color: #77716c;
    font-size: 0.66rem;
    font-weight: 600;
}

.tour-panel {
    padding: clamp(24px, 3.5vw, 44px);
}

.tour-panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 25px;
}

.real-screen-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #61d4ad;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.real-screen-label i {
    font-size: 0.45rem;
    filter: drop-shadow(0 0 6px rgba(18, 188, 131, 0.8));
}

.tour-panel h3 {
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.tour-panel-head p {
    max-width: 720px;
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.tour-counter {
    flex: 0 0 auto;
    color: #6f6964;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
}

.tour-browser {
    border-color: rgba(255, 255, 255, 0.17);
    border-radius: 20px;
}

.tour-browser img {
    transition: opacity 150ms ease, transform 150ms ease;
}

.tour-browser img.is-changing {
    opacity: 0.34;
    transform: scale(0.995);
}

.catalog-section {
    padding-top: clamp(46px, 5vw, 72px);
    background: #080706;
}

.catalog-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(44px, 7vw, 92px);
    align-items: center;
    overflow: hidden;
    padding: clamp(44px, 6vw, 78px);
    border-radius: 34px;
    color: var(--text-dark);
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 160, 55, 0.2), transparent 26%),
        linear-gradient(135deg, #fffdf9, #efe8df);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.catalog-panel::after {
    content: "";
    position: absolute;
    right: -9%;
    bottom: -30%;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 89, 17, 0.12);
    border-radius: 50%;
}

.catalog-visual {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 560px;
}

.catalog-halo {
    position: absolute;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: var(--gradient);
    filter: blur(2px);
    opacity: 0.12;
}

.catalog-phone {
    z-index: 1;
    width: 258px;
    border-width: 9px;
    border-radius: 38px;
    transform: rotate(-1.5deg);
    box-shadow: 0 34px 70px rgba(47, 24, 12, 0.3);
}

.catalog-proof {
    position: absolute;
    right: 8%;
    bottom: 10%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(27, 19, 14, 0.09);
    border-radius: 999px;
    color: #3e342e;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 14px 30px rgba(56, 33, 19, 0.13);
    font-size: 0.7rem;
    font-weight: 800;
    backdrop-filter: blur(9px);
}

.catalog-proof i {
    color: var(--green);
}

.catalog-copy {
    position: relative;
    z-index: 2;
}

.catalog-copy h2 {
    color: var(--text-dark);
}

.catalog-copy > p {
    max-width: 620px;
    margin-top: 20px;
    color: var(--text-dark-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.catalog-benefits {
    display: grid;
    gap: 0;
    margin: 33px 0;
    border-block: 1px solid rgba(23, 19, 16, 0.1);
}

.catalog-benefits article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(23, 19, 16, 0.1);
}

.catalog-benefits article:last-child {
    border-bottom: 0;
}

.catalog-benefits article > i {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    color: #e44b18;
    background: rgba(255, 81, 20, 0.1);
    font-size: 1rem;
}

.catalog-benefits h3 {
    color: var(--text-dark);
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.catalog-benefits p {
    margin-top: 4px;
    color: var(--text-dark-soft);
    font-size: 0.78rem;
    line-height: 1.55;
}

.capabilities {
    background: var(--bg-soft);
}

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

.solution-card {
    display: flex;
    min-height: 595px;
    padding: 30px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008)),
        #131110;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.solution-card:hover {
    border-color: rgba(255, 95, 20, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.solution-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
}

.solution-number {
    color: #5a5550;
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 800;
}

.solution-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(255, 85, 15, 0.22);
    border-radius: 15px;
    color: #ff6421;
    background: rgba(255, 75, 10, 0.08);
    font-size: 1.2rem;
}

.solution-kicker {
    color: #ff7140;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.solution-card h3 {
    margin-top: 13px;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.solution-card > p {
    min-height: 80px;
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.65;
}

.solution-list {
    display: grid;
    gap: 0;
    margin-top: auto;
    list-style: none;
    border-top: 1px solid var(--line);
}

.solution-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: #c4beb8;
    font-size: 0.78rem;
    line-height: 1.45;
}

.solution-list i {
    margin-top: 1px;
    color: #ff6c25;
    font-size: 0.9rem;
}

.automation-section {
    padding-top: 0;
    background: var(--bg-soft);
}

.automation-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: clamp(36px, 7vw, 94px);
    align-items: end;
    margin-bottom: 36px;
}

.automation-heading h2 {
    max-width: 720px;
    margin-top: 16px;
    font-size: clamp(2.4rem, 4.4vw, 4rem);
}

.automation-heading > p {
    padding-bottom: 4px;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.72;
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.automation-card {
    position: relative;
    display: flex;
    min-height: 372px;
    padding: 24px 22px 22px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 88, 16, 0.12), transparent 34%),
        linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008)),
        #12100f;
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.automation-card::before {
    position: absolute;
    top: 0;
    right: 22px;
    left: 22px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff1838, #ff7512, transparent);
    content: "";
    opacity: 0.7;
}

.automation-card:hover {
    border-color: rgba(255, 95, 20, 0.34);
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.automation-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 30px;
    place-items: center;
    border: 1px solid rgba(255, 91, 22, 0.24);
    border-radius: 14px;
    color: #ff6826;
    background: rgba(255, 75, 10, 0.08);
    font-size: 1.14rem;
}

.automation-kicker {
    color: #ff7542;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.35;
    text-transform: uppercase;
}

.automation-card h3 {
    margin-top: 12px;
    font-size: clamp(1.25rem, 1.55vw, 1.52rem);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -0.03em;
}

.automation-card p {
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 0.78rem;
    line-height: 1.62;
}

.automation-card strong {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: #e4ddd7;
    font-size: 0.71rem;
    line-height: 1.45;
}

.automation-card strong i {
    color: #ff6a25;
}

.automation-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    color: #7e7872;
    font-size: 0.7rem;
    line-height: 1.55;
}

.automation-note i {
    margin-top: 1px;
    color: #a49d96;
}

.totem-showcase {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 48%, rgba(255, 55, 31, 0.12), transparent 28%),
        #080706;
}

.totem-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(54px, 8vw, 122px);
    align-items: center;
}

.totem-stage {
    position: relative;
    display: flex;
    min-height: 690px;
    padding: 26px 18px 22px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 87, 16, 0.16), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008));
}

.totem-stage::before,
.totem-stage::after {
    position: absolute;
    border: 1px solid rgba(255, 94, 28, 0.22);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.totem-stage::before {
    width: 380px;
    height: 380px;
    opacity: 0.42;
}

.totem-stage::after {
    width: 500px;
    height: 500px;
    opacity: 0.14;
}

.totem-stage-label {
    position: absolute;
    top: 26px;
    right: 26px;
    left: 26px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #ff6f32;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.totem-stage-label span {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.totem-stage-label span i {
    color: #48d99a;
    font-size: 0.75rem;
}

.totem-stage-label strong {
    color: #a9a19a;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.totem-device {
    position: relative;
    z-index: 1;
    width: min(100%, 294px);
    padding: 12px 11px 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px 26px 12px 12px;
    background: linear-gradient(145deg, #2a2522, #0d0c0b 68%);
    box-shadow: 0 42px 70px rgba(0, 0, 0, 0.46), 0 0 0 7px rgba(255, 255, 255, 0.025);
    animation: totem-float 5s ease-in-out infinite;
}

.totem-device-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 25px;
    padding: 0 7px 8px;
    color: #938b84;
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.totem-device-top > span:not(.totem-camera) {
    justify-self: center;
}

.totem-device-top > i {
    justify-self: end;
    color: #49c994;
    font-size: 0.66rem;
}

.totem-camera {
    width: 7px;
    height: 7px;
    border: 1px solid #65605b;
    border-radius: 50%;
    background: #151312;
}

.totem-screen {
    position: relative;
    height: 486px;
    overflow: hidden;
    border: 5px solid #090908;
    border-radius: 15px 15px 7px 7px;
    background: #f3f5f6;
}

.totem-screen img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f3f5f6;
}

.totem-screen::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 34%, transparent 76%, rgba(255, 255, 255, 0.08));
    content: "";
    pointer-events: none;
}

.totem-screen-caption {
    position: absolute;
    right: 11px;
    bottom: 11px;
    left: 11px;
    z-index: 1;
    display: flex;
    gap: 9px;
    align-items: center;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 11px;
    color: #fff;
    background: rgba(14, 12, 11, 0.86);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(8px);
}

.totem-live-number {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    place-items: center;
    border-radius: 7px;
    color: #10100f;
    background: #52e0a0;
    font-size: 0.62rem;
    font-weight: 900;
}

.totem-screen-caption strong,
.totem-screen-caption small {
    display: block;
}

.totem-screen-caption strong {
    font-size: 0.68rem;
    line-height: 1.2;
}

.totem-screen-caption small {
    margin-top: 2px;
    color: #c5beb7;
    font-size: 0.58rem;
    line-height: 1.3;
}

.totem-device-base {
    display: flex;
    height: 57px;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
}

.totem-device-base::before {
    width: 112px;
    height: 19px;
    border-radius: 50%;
    background: #080807;
    box-shadow: 0 5px 0 #3b3531;
    content: "";
}

.totem-device-base span {
    position: absolute;
    bottom: 28px;
    width: 38px;
    height: 32px;
    border-right: 5px solid #3b3531;
    border-bottom: 5px solid #3b3531;
    border-left: 5px solid #3b3531;
    border-radius: 0 0 9px 9px;
}

.totem-stage-footnote {
    position: absolute;
    right: 26px;
    bottom: 24px;
    left: 26px;
    z-index: 2;
    display: flex;
    gap: 7px;
    align-items: flex-start;
    color: #817a73;
    font-size: 0.62rem;
    line-height: 1.45;
}

.totem-stage-footnote i {
    margin-top: 1px;
    color: #ff6c26;
}

.totem-copy h2 {
    max-width: 650px;
    margin-top: 16px;
    font-size: clamp(2.5rem, 4.5vw, 4.35rem);
}

.totem-copy > p {
    max-width: 600px;
    margin-top: 22px;
    color: var(--text-soft);
    font-size: 0.96rem;
    line-height: 1.76;
}

.totem-steps {
    display: grid;
    gap: 10px;
    max-width: 570px;
    margin-top: 34px;
}

.totem-step {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 15px;
    color: #d4cec8;
    text-align: left;
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.totem-step:hover,
.totem-step:focus-visible,
.totem-step.is-active {
    border-color: rgba(255, 98, 27, 0.48);
    background: linear-gradient(100deg, rgba(255, 73, 23, 0.16), rgba(255, 73, 23, 0.035));
}

.totem-step.is-active {
    transform: translateX(5px);
}

.totem-step-number {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border: 1px solid rgba(255, 102, 37, 0.3);
    border-radius: 11px;
    color: #ff6b28;
    background: rgba(255, 89, 22, 0.09);
    font-size: 0.68rem;
    font-weight: 900;
}

.totem-step strong,
.totem-step small {
    display: block;
}

.totem-step strong {
    color: #f3eeea;
    font-size: 0.84rem;
}

.totem-step small {
    margin-top: 4px;
    color: #918a83;
    font-size: 0.72rem;
    line-height: 1.4;
}

.totem-copy .button {
    margin-top: 28px;
}

@keyframes totem-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.print-showcase {
    background: var(--bg-soft);
}

.print-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}

.print-copy h2 {
    max-width: 570px;
    margin-top: 16px;
    font-size: clamp(2.5rem, 4.5vw, 4.3rem);
}

.print-copy > p {
    max-width: 560px;
    margin-top: 22px;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.76;
}

.print-benefits {
    display: grid;
    gap: 15px;
    max-width: 560px;
    margin-top: 32px;
}

.print-benefits > div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    align-items: start;
}

.print-benefits > div > i {
    margin-top: 1px;
    color: #4bdd9c;
    font-size: 1.05rem;
}

.print-benefits strong,
.print-benefits small {
    display: block;
}

.print-benefits strong {
    color: #f0ebe7;
    font-size: 0.84rem;
}

.print-benefits small {
    margin-top: 4px;
    color: #8c857f;
    font-size: 0.74rem;
    line-height: 1.45;
}

.print-board {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 25px;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 88, 16, 0.13), transparent 34%),
        #12100f;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.print-board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    color: #f3eeea;
    font-size: 0.78rem;
    font-weight: 800;
}

.print-board-head span {
    display: inline-flex;
    gap: 9px;
    align-items: center;
}

.print-board-head span i {
    color: #ff6b28;
}

.print-board-head small {
    color: #77706a;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.print-board-body {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(230px, 1.1fr);
    gap: 24px;
    align-items: center;
    padding: 27px 24px 23px;
}

.print-status-list {
    display: grid;
    gap: 8px;
}

.print-status {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    width: 100%;
    padding: 12px 13px;
    border: 1px solid transparent;
    border-radius: 13px;
    color: #d4cec8;
    text-align: left;
    background: rgba(255, 255, 255, 0.028);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.print-status:hover,
.print-status:focus-visible,
.print-status.is-active {
    border-color: rgba(255, 102, 32, 0.42);
    background: rgba(255, 77, 19, 0.12);
}

.print-status.is-active {
    transform: translateX(4px);
}

.print-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4bdd9c;
    box-shadow: 0 0 0 4px rgba(75, 221, 156, 0.1);
}

.print-status strong,
.print-status small {
    display: block;
}

.print-status strong {
    color: #f3eeea;
    font-size: 0.75rem;
}

.print-status small {
    margin-top: 3px;
    color: #817a74;
    font-size: 0.63rem;
}

.print-status > i {
    color: #ff6b28;
    font-size: 0.85rem;
}

.print-receipt-wrap {
    position: relative;
    display: grid;
    min-height: 350px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: #0d0c0b;
}

.print-receipt-wrap::before,
.print-receipt-wrap::after {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 99, 28, 0.15);
    border-radius: 50%;
    content: "";
}

.print-receipt-wrap::before { transform: translate(-95px, -100px); }
.print-receipt-wrap::after { transform: translate(120px, 125px); }

.print-receipt {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(100%, 220px);
    min-height: 284px;
    padding: 22px 18px 17px;
    flex-direction: column;
    border-radius: 3px;
    color: #1b1917;
    background: #f5f1e9;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
    animation: print-feed 3.2s ease-in-out infinite;
}

.print-receipt::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 16px;
    background: linear-gradient(135deg, transparent 6px, #f5f1e9 0) 0 0 / 14px 14px repeat-x;
    content: "";
}

.print-receipt-top,
.print-receipt-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.print-receipt-top i {
    color: #f35d1c;
}

.print-receipt-rule {
    height: 1px;
    margin: 16px 0 15px;
    background: repeating-linear-gradient(90deg, #1b1917 0 5px, transparent 5px 9px);
    opacity: 0.52;
}

.print-receipt-title {
    font-size: 0.86rem;
    line-height: 1.2;
}

.print-receipt-copy {
    margin-top: 7px;
    color: #68615b;
    font-size: 0.63rem;
    line-height: 1.4;
}

.print-receipt-lines {
    display: grid;
    gap: 8px;
    margin-top: auto;
}

.print-receipt-lines span {
    display: block;
    height: 5px;
    border-radius: 999px;
    background: #d5cec2;
}

.print-receipt-lines span:nth-child(2) { width: 76%; }
.print-receipt-lines span:nth-child(3) { width: 88%; }
.print-receipt-lines span:nth-child(4) { width: 57%; }

.print-receipt-footer {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px dashed #b5ada2;
    color: #6d655e;
    font-size: 0.56rem;
}

.print-receipt-footer strong {
    color: #e24e1c;
    font-size: 0.55rem;
}

.print-paper-shadow {
    position: absolute;
    z-index: 0;
    width: 180px;
    height: 260px;
    border-radius: 3px;
    background: #d5cfc5;
    opacity: 0.22;
    transform: translate(12px, 13px) rotate(4deg);
}

.print-board-note {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 0 24px 22px;
    color: #77706a;
    font-size: 0.65rem;
    line-height: 1.45;
}

.print-board-note i {
    margin-top: 1px;
    color: #ff6b28;
}

@keyframes print-feed {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.integrations {
    padding-top: 0;
    background: var(--bg-soft);
}

.integration-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 58px;
    align-items: center;
    padding: clamp(42px, 5vw, 64px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 87% 18%, rgba(255, 102, 0, 0.14), transparent 27%),
        linear-gradient(145deg, #171311, #0e0d0c);
}

.integration-copy h2 {
    font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.integration-copy p {
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.integration-list span {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 54px;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: #c8c1bb;
    background: rgba(255, 255, 255, 0.026);
    font-size: 0.75rem;
    font-weight: 700;
}

.integration-list i {
    color: #ff6a25;
    font-size: 1rem;
}

.faq-section {
    background: #080706;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(52px, 8vw, 110px);
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 34px);
}

.faq-intro h2 {
    font-size: clamp(2.25rem, 4vw, 3.45rem);
}

.faq-intro p {
    margin-top: 19px;
    color: var(--text-soft);
    font-size: 0.9rem;
    line-height: 1.75;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #ff6d28;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link i {
    transition: transform 180ms ease;
}

.text-link:hover i {
    transform: translate(2px, -2px);
}

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

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

.faq-item h3 {
    font: inherit;
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
    min-height: 82px;
    padding: 20px 2px;
    color: #e7e2dc;
    background: transparent;
    font-family: var(--font-display);
    font-size: 1.04rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
}

.faq-item button i {
    flex: 0 0 auto;
    color: #ff6c25;
    transition: transform 180ms ease;
}

.faq-item.is-open button i {
    transform: rotate(45deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 260ms ease;
}

.faq-answer > div {
    min-height: 0;
    overflow: hidden;
}

.faq-answer p {
    max-width: 700px;
    padding: 0 54px 0 2px;
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.75;
    opacity: 0;
    transition: padding-bottom 260ms ease, opacity 180ms ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
    padding-bottom: 27px;
    opacity: 1;
}

.final-cta {
    padding-top: 0;
    background: #080706;
}

.final-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 52px;
    align-items: center;
    overflow: hidden;
    padding: clamp(42px, 6vw, 72px);
    border-radius: 32px;
    background: var(--gradient);
    box-shadow: 0 30px 72px rgba(164, 30, 0, 0.24);
}

.final-cta-glow {
    position: absolute;
    top: -180px;
    right: 14%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(70px);
}

.final-cta-card > *:not(.final-cta-glow) {
    position: relative;
    z-index: 1;
}

.final-cta-card h2 {
    max-width: 790px;
    font-size: clamp(2.25rem, 4.3vw, 3.8rem);
}

.final-cta-card p {
    max-width: 690px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
}

.final-cta-actions {
    display: grid;
    gap: 10px;
    min-width: 230px;
}

.site-footer {
    padding: 70px 0 26px;
    border-top: 1px solid var(--line);
    background: #070605;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: start;
}

.footer-brand img {
    width: 134px;
    height: auto;
}

.footer-brand p {
    max-width: 390px;
    margin-top: 17px;
    color: #827c76;
    font-size: 0.78rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 58px;
}

.footer-links div {
    display: grid;
    gap: 9px;
}

.footer-links strong {
    margin-bottom: 3px;
    color: #e7e2dc;
    font-family: var(--font-display);
    font-size: 0.82rem;
}

.footer-links a {
    color: #817b75;
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: #ff6b25;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #635e59;
    font-size: 0.66rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: #fff;
    background: #20bf69;
    box-shadow: 0 14px 34px rgba(32, 191, 105, 0.3);
    font-size: 1.35rem;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 40px rgba(32, 191, 105, 0.4);
}

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

.js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease;
}

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

.js .reveal-delay-short {
    transition-delay: 70ms;
}

.js .reveal-delay {
    transition-delay: 130ms;
}

@media (max-width: 1120px) {
    .hero {
        min-height: 0;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(3rem, 5.2vw, 3.65rem);
    }

    .hero-devices {
        grid-template-columns: minmax(0, 1fr) 110px;
    }

    .hero-phone {
        width: 110px;
    }

    .outcome-card {
        padding-inline: 23px;
    }

    .pix-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
        gap: 42px;
    }

    .journey-flow li {
        padding-inline: 17px;
    }

    .solution-card {
        min-height: 625px;
        padding: 26px;
    }

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

    .automation-card {
        grid-column: span 2;
        min-height: 345px;
    }

    .automation-card:nth-child(n + 4) {
        grid-column: span 3;
        min-height: 320px;
    }

    .totem-grid {
        gap: 54px;
    }

    .totem-stage {
        min-height: 650px;
    }

    .print-grid {
        gap: 54px;
    }
}

@media (max-width: 1020px) {
    :root {
        --header-height: 70px;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        padding: 30px 24px 44px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        visibility: hidden;
        border-top: 1px solid var(--line);
        background: rgba(10, 9, 8, 0.985);
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav > a:not(.button) {
        padding: 17px 4px;
        border-bottom: 1px solid var(--line);
        color: #ede9e4;
        font-family: var(--font-display);
        font-size: 1.25rem;
    }

    .site-nav > a:not(.button)::after {
        display: none;
    }

    .site-nav .nav-cta {
        margin-top: 22px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 64px);
    }

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

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

    .hero h1 {
        max-width: 760px;
        font-size: clamp(3.3rem, 7vw, 4rem);
    }

    .product-board {
        max-width: 820px;
    }

    .hero-devices {
        grid-template-columns: minmax(0, 1fr) 155px;
    }

    .hero-phone {
        width: 155px;
        max-height: none;
    }

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

    .outcome-card {
        min-height: 0;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .outcome-card:last-child {
        border-bottom: 0;
    }

    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .section-heading-split > p {
        max-width: 680px;
    }

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

    .pix-copy {
        max-width: 760px;
    }

    .pix-proof-card {
        max-width: 660px;
    }

    .journey-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .journey-flow::before {
        display: none;
    }

    .journey-flow li,
    .journey-flow li:first-child,
    .journey-flow li:last-child {
        border: 1px solid var(--line);
        border-radius: 18px;
    }

    .journey-flow li:last-child {
        grid-column: 2;
    }

    .tour-tab {
        padding-inline: 14px;
    }

    .tour-tab small {
        display: none;
    }

    .catalog-panel {
        grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
        gap: 42px;
        padding-inline: 42px;
    }

    .catalog-visual {
        min-height: 500px;
    }

    .catalog-phone {
        width: 225px;
    }

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

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

    .totem-stage {
        width: min(100%, 520px);
        min-height: 650px;
        margin-inline: auto;
    }

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

    .print-board {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    .solution-card {
        min-height: 0;
    }

    .solution-card > p {
        min-height: 0;
    }

    .solution-list {
        margin-top: 28px;
    }

    .integration-panel {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-intro {
        position: static;
        max-width: 680px;
    }

    .final-cta-card {
        grid-template-columns: 1fr;
    }

    .final-cta-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 510px;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(calc(100% - 32px), var(--shell));
    }

    .section {
        padding: 76px 0;
    }

    .section-heading h2,
    .catalog-copy h2,
    .automation-heading h2,
    .totem-copy h2,
    .print-copy h2,
    .integration-copy h2,
    .faq-intro h2,
    .final-cta-card h2 {
        font-size: clamp(2.18rem, 10vw, 3rem);
        line-height: 1.04;
    }

    .section-heading.centered {
        text-align: left;
    }

    .section-heading.centered > p {
        margin-left: 0;
    }

    .hero {
        padding: calc(var(--header-height) + 47px) 0 58px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 12vw, 3.6rem);
        line-height: 1;
    }

    .hero-lead {
        font-size: 0.98rem;
    }

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

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

    .hero-proof {
        display: grid;
        gap: 10px;
    }

    .product-board {
        padding: 13px;
        border-radius: 22px;
    }

    .product-board-head {
        padding: 2px 2px 12px;
    }

    .product-board-head > span:last-child {
        display: none;
    }

    .hero-devices {
        grid-template-columns: minmax(0, 1fr) 86px;
        gap: 8px;
    }

    .hero-phone {
        width: 86px;
        border-width: 4px;
        border-radius: 19px;
    }

    .browser-bar {
        min-height: 22px;
        grid-template-columns: 6px 6px 6px minmax(0, 1fr);
        gap: 4px;
        padding-inline: 7px;
    }

    .browser-bar > span {
        width: 6px;
        height: 6px;
    }

    .browser-address {
        display: none;
    }

    .outcome-card {
        padding: 27px 22px;
    }

    .pix-copy h2 {
        font-size: clamp(2.2rem, 10.7vw, 3rem);
        line-height: 1.03;
    }

    .pix-copy > p {
        font-size: 0.92rem;
    }

    .pix-benefits li {
        gap: 12px;
        padding-block: 16px;
    }

    .pix-proof-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

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

    .journey-flow li:last-child {
        grid-column: auto;
    }

    .journey-flow li {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 16px;
        min-height: 0;
        padding: 21px;
    }

    .journey-flow li > i {
        grid-row: 1 / span 2;
        width: 52px;
        height: 52px;
        margin: 0;
        box-shadow: none;
    }

    .journey-flow h3 {
        align-self: end;
    }

    .journey-flow p {
        align-self: start;
    }

    .journey-number {
        top: 14px;
        right: 14px;
    }

    .tour-shell {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .tour-tabs {
        display: flex;
        gap: 8px;
        margin: 0 0 14px;
        padding: 0 0 8px;
        overflow-x: auto;
        border: 0;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }

    .tour-tabs::-webkit-scrollbar {
        display: none;
    }

    .tour-tab {
        flex: 0 0 auto;
        min-width: 156px;
        min-height: 66px;
        padding: 11px 14px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: #131110;
        scroll-snap-align: start;
    }

    .tour-tab::after {
        right: 14px;
        left: 14px;
    }

    .tour-tab > i {
        width: 34px;
        height: 34px;
    }

    .tour-panel {
        padding: 22px 16px 16px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: #131110;
    }

    .tour-panel-head {
        align-items: start;
        gap: 18px;
    }

    .tour-panel-head p {
        font-size: 0.8rem;
    }

    .tour-counter {
        margin-top: 4px;
    }

    .catalog-section {
        padding-top: 28px;
    }

    .catalog-panel {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 46px 24px;
        border-radius: 25px;
    }

    .catalog-visual {
        min-height: 470px;
        order: 2;
    }

    .catalog-copy {
        order: 1;
    }

    .catalog-phone {
        width: 220px;
    }

    .catalog-proof {
        right: 7%;
        bottom: 5%;
    }

    .catalog-copy .button {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .solution-card {
        padding: 25px 22px;
    }

    .solution-card-top {
        margin-bottom: 34px;
    }

    .automation-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

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

    .automation-card,
    .automation-card:nth-child(n + 4) {
        grid-column: auto;
        min-height: 0;
        padding: 25px 22px;
    }

    .automation-icon {
        margin-bottom: 25px;
    }

    .automation-card strong {
        margin-top: 28px;
    }

    .totem-showcase {
        padding-top: 64px;
    }

    .totem-stage {
        min-height: 620px;
        padding-inline: 14px;
        border-radius: 24px;
    }

    .totem-stage-label {
        top: 21px;
        right: 20px;
        left: 20px;
    }

    .totem-stage-label strong {
        display: none;
    }

    .totem-device {
        width: min(100%, 274px);
    }

    .totem-screen {
        height: 450px;
    }

    .totem-stage-footnote {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .totem-copy .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .print-showcase {
        padding-top: 64px;
    }

    .print-board-head {
        padding-inline: 20px;
    }

    .print-board-body {
        grid-template-columns: 1fr;
        padding: 22px 20px 20px;
    }

    .print-receipt-wrap {
        min-height: 320px;
    }

    .print-board-note {
        margin-inline: 20px;
    }

    .integration-panel {
        padding: 34px 22px;
        border-radius: 22px;
    }

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

    .faq-item button {
        min-height: 74px;
        font-size: 0.98rem;
    }

    .faq-answer p {
        padding-right: 8px;
    }

    .final-cta-card {
        gap: 36px;
        padding: 40px 24px;
        border-radius: 24px;
    }

    .final-cta-actions {
        grid-template-columns: 1fr;
        min-width: 0;
    }

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

    .footer-links {
        gap: 32px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 430px) {
    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .hero h1 {
        font-size: clamp(2.55rem, 12.4vw, 3rem);
    }

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

    .hero-phone {
        display: none;
    }

    .outcome-card {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
    }

    .outcome-icon {
        width: 40px;
        height: 40px;
    }

    .catalog-visual {
        min-height: 450px;
    }

    .catalog-phone {
        width: 205px;
    }

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

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

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

    .js .reveal,
    .js .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}
