:root {
    --blue: #1D73F8;
    --blue-dark: #0F172A;
    --blue-soft: #EAF3FF;
    --sky: #56ACDE;
    --green: #03BF65;
    --green-dark: #02A558;
    --orange: #F59E0B;
    --bg: #F8FAFC;
    --card: #FFFFFF;
    --text: #0F172A;
    --muted: #64748B;
    --line: #E2E8F0;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    --radius: 20px;
    --container: 1120px;
    --header: 68px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

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

button {
    border: 0;
    background: none;
    font: inherit;
    cursor: pointer;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    height: var(--header);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(16px);
}

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

.logo img {
    height: 34px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
}

.nav a:hover {
    color: var(--blue);
}

.nav-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.55;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.nav-instagram:hover {
    opacity: 1;
    color: var(--blue);
}

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

.header-link {
    color: #475569;
    font-size: 14px;
    font-weight: 800;
}

.header-link:hover {
    color: var(--blue);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    color: var(--text);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: var(--header) 0 auto;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 20px;
    box-shadow: var(--shadow);
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: #334155;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    line-height: 1.1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: var(--green);
    box-shadow: 0 10px 22px rgba(3, 191, 101, 0.24);
}

.btn-primary:hover {
    background: var(--green-dark);
    box-shadow: 0 12px 26px rgba(3, 191, 101, 0.28);
}

.btn-secondary {
    color: var(--blue);
    background: #fff;
    border: 2px solid var(--line);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.btn-secondary:hover {
    border-color: rgba(29, 115, 248, 0.42);
    background: rgba(29, 115, 248, 0.04);
}

.btn-dark {
    color: #fff;
    background: var(--blue-dark);
}

.btn-whatsapp {
    color: #fff;
    background: var(--green);
    box-shadow: 0 14px 28px rgba(34, 197, 94, 0.22);
}

.hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: calc(var(--header) + 36px) 0 46px;
    background:
        radial-gradient(circle at 76% 36%, rgba(86, 172, 222, 0.10), transparent 36%),
        linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 48px;
    align-items: center;
}

.hero-copy {
    min-width: 0;
}

.hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 4vw, 58px);
    line-height: 1.07;
    letter-spacing: -0.035em;
}

.hero h1 strong {
    color: var(--blue);
}

.hero-lead {
    max-width: 500px;
    margin-top: 26px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero .hero-actions {
    flex-wrap: nowrap;
}

.hero .btn {
    min-height: 50px;
    padding: 0 24px;
    white-space: nowrap;
}

.hero .btn-primary {
    box-shadow: 0 8px 18px rgba(3, 191, 101, 0.18);
}

.hero .btn-secondary {
    border-width: 1px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.035);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 26px;
}

.trust-row span,
.mini-check {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #334155;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 800;
}

.trust-row span::before,
.mini-check::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
}

.hero-visual {
    position: relative;
    min-width: 0;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section {
    padding: 72px 0;
}

.section-white {
    background: #fff;
}

.section-dark {
    background: var(--blue-dark);
    color: #fff;
}

.section-head {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-head.left {
    margin-left: 0;
    text-align: left;
}

.section-kicker {
    display: inline-block;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.section h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-head p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 18px;
}

.section-dark .section-head p,
.section-dark .section-kicker {
    color: #BFDBFE;
}

.video-layout {
    display: grid;
    grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.video-frame {
    border-radius: 22px;
    overflow: hidden;
    background: #0B1220;
    box-shadow: var(--shadow);
    aspect-ratio: 9 / 16;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-copy {
    display: grid;
    gap: 18px;
}

.video-copy h2 {
    max-width: 620px;
}

.video-copy p {
    max-width: 560px;
    color: var(--muted);
    font-size: 19px;
}

.grid-4,
.grid-3,
.grid-2 {
    display: grid;
    gap: 18px;
}

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

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

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

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 900;
}

.card h3 {
    font-size: 20px;
    line-height: 1.2;
}

.card p {
    margin-top: 9px;
    color: var(--muted);
}

.feature-cards {
    align-items: stretch;
}

.feature-card {
    position: relative;
    min-height: 230px;
    padding: 26px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(29, 115, 248, 0.24);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.feature-icon {
    width: 52px;
    height: 52px;
    color: var(--blue);
    background: linear-gradient(145deg, #EAF3FF, #F8FAFC);
    border: 1px solid rgba(29, 115, 248, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.feature-card h3 {
    max-width: 190px;
    font-size: 19px;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.55;
}

.pain-card {
    display: flex;
    gap: 16px;
}

.pain-card .icon {
    flex: 0 0 48px;
    margin: 0;
    color: #B45309;
    background: #FFFBEB;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.chip {
    padding: 12px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: #334155;
    font-weight: 800;
}

.plans {
    align-items: stretch;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}

.plan-card.featured {
    border-color: rgba(29, 115, 248, 0.58);
    box-shadow: 0 22px 60px rgba(29, 115, 248, 0.15);
}

.plan-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.plan-card h3 {
    font-size: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 999px;
    padding: 7px 11px;
    color: #fff;
    background: var(--blue);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.badge.orange {
    color: #7C2D12;
    background: #FEF3C7;
}

.plan-price {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.1;
}

.plan-price small {
    color: var(--muted);
    font-size: 15px;
    font-weight: 800;
}

.plan-list {
    display: grid;
    gap: 7px;
}

.plan-list li {
    display: flex;
    gap: 8px;
    color: #334155;
    font-size: 13px;
    line-height: 1.3;
}

.plan-list li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
}

.plan-exclusions {
    margin: -2px 0 0;
    padding: 11px 12px;
    color: #64748B;
    background: #F8FAFC;
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
}

.plan-note {
    margin-top: 0;
    padding: 12px;
    border-radius: 12px;
    color: #334155;
    background: #F8FAFC;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
}

@media (min-width: 760px) {
    .plan-card .plan-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 14px;
    }
}

.comparison {
    overflow-x: auto;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

th,
td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

th {
    color: var(--text);
    background: #F8FAFC;
    font-size: 14px;
}

td {
    color: #334155;
    font-weight: 700;
}

tr:last-child td {
    border-bottom: 0;
}

.yes {
    color: var(--green);
}

.no {
    color: #94A3B8;
}

.fiscal-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    gap: 34px;
    align-items: center;
}

.fiscal-panel {
    border-radius: 26px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.fiscal-panel img {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.dark-cards .card {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

.dark-cards .card h3 {
    color: #fff;
}

.dark-cards .card p {
    color: #CBD5E1;
}

.dark-cards .icon {
    color: #fff;
    background: rgba(29, 115, 248, 0.5);
}

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

.proof-item {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 18px;
}

.proof-item strong {
    display: block;
    color: var(--blue);
    font-size: 32px;
    line-height: 1;
}

.proof-item span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-weight: 800;
}

.faq {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    color: var(--text);
    text-align: left;
    font-weight: 900;
}

.faq-question span {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--blue);
    background: var(--blue-soft);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: var(--muted);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.final-cta {
    padding: 74px 0;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(29, 115, 248, 0.28), transparent 38%),
        var(--blue-dark);
    color: #fff;
}

.final-cta h2 {
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
}

.final-cta p {
    max-width: 660px;
    margin: 16px auto 28px;
    color: #CBD5E1;
    font-size: 18px;
}

.site-footer {
    padding: 42px 0;
    color: #CBD5E1;
    background: #020617;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto auto;
    gap: 40px;
    align-items: start;
}

.footer-brand img {
    height: 36px;
}

.footer-brand p {
    max-width: 380px;
    margin-top: 14px;
    color: #94A3B8;
}

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

.footer-links strong {
    color: #fff;
}

.footer-links a {
    color: #CBD5E1;
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #94A3B8;
    font-size: 14px;
}

.exit-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.exit-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-modal {
    position: relative;
    width: min(100%, 430px);
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
    transform: translateY(16px) scale(0.96);
    transition: transform 0.24s ease;
}

.exit-modal-overlay.active .exit-modal {
    transform: translateY(0) scale(1);
}

.exit-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #64748B;
    background: #F8FAFC;
    border-radius: 999px;
    transition: background 0.18s ease, color 0.18s ease;
}

.exit-modal-close:hover {
    color: var(--text);
    background: #E2E8F0;
}

.exit-modal-content {
    padding: 36px;
    text-align: center;
}

.exit-modal-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 13px;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.exit-modal-content h3 {
    margin-top: 16px;
    color: var(--text);
    font-size: 25px;
    line-height: 1.16;
}

.exit-modal-content p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.exit-modal-form {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.exit-modal-form input {
    width: 100%;
    min-height: 48px;
    padding: 13px 15px;
    color: var(--text);
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 12px;
    font: inherit;
    font-size: 15px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.exit-modal-form input:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(29, 115, 248, 0.1);
}

.btn-full {
    width: 100%;
}

.exit-modal-privacy {
    display: block;
    margin-top: 14px;
    color: #94A3B8;
    font-size: 12px;
}

.exit-modal-success {
    padding: 10px 0 2px;
    text-align: center;
}

.exit-modal-success svg {
    margin: 0 auto 12px;
}

.exit-modal-success h4 {
    color: var(--text);
    font-size: 20px;
}

.exit-modal-success p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(34, 197, 94, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-whatsapp.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sticky-mobile {
    display: none;
}

@media (max-width: 980px) {
    .nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-nav.active {
        display: block;
    }

    .video-layout,
    .fiscal-grid {
        grid-template-columns: 1fr;
    }

    .grid-4,
    .grid-3,
    .grid-2,
    .proof-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .video-frame {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 54px 0;
    }

    h1 {
        font-size: 33px;
    }

    .video-copy p,
    .section-head p {
        font-size: 15px;
    }

    .final-cta .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .grid-4,
    .grid-3,
    .grid-2,
    .proof-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .plan-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-whatsapp {
        display: none;
    }

    .sticky-mobile {
        position: fixed;
        inset: auto 0 0;
        z-index: 45;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 10px 14px;
        background: rgba(255, 255, 255, 0.96);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(12px);
        transform: translateY(100%);
        transition: transform 0.2s ease;
    }

    .sticky-mobile.visible {
        transform: translateY(0);
    }

    .sticky-mobile .btn {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .exit-modal-content {
        padding: 30px 22px;
    }

    .exit-modal-content h3 {
        font-size: 22px;
    }

    body {
        padding-bottom: 76px;
    }
}

/* ========== REFATORAÇÃO COMERCIAL LEEVE PDV ========== */
.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;
}

:where(a, button, input):focus-visible {
    outline: 3px solid rgba(29, 115, 248, 0.42);
    outline-offset: 3px;
}

#maquininhas,
#segmentos,
#como-funciona,
#recursos,
#preco,
#duvidas,
#nfce,
#video {
    scroll-margin-top: calc(var(--header) + 16px);
}

.nav {
    gap: 24px;
    font-size: 13px;
}

.header-cta {
    min-height: 38px;
    padding: 9px 15px;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(3, 191, 101, 0.18);
}

.mobile-nav-cta {
    width: 100%;
    margin-top: 8px;
    padding: 13px 16px;
    color: #fff;
    background: var(--green);
    border-radius: 12px;
    font-weight: 800;
    text-align: center;
}

.machine-carousel {
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
}

.machine-carousel-stage {
    position: relative;
}

.machine-carousel-viewport {
    position: relative;
    height: 450px;
    overflow: hidden;
    touch-action: pan-y;
}

.machine-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.machine-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0 48px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%) scale(0.86);
    transition: transform 560ms ease, opacity 560ms ease, visibility 0s linear 560ms;
    pointer-events: none;
}

.machine-slide-active,
.machine-slide-prev,
.machine-slide-next {
    visibility: visible;
    transition-delay: 0s;
}

.machine-slide-active {
    z-index: 2;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.machine-slide-prev,
.machine-slide-next {
    z-index: 1;
    opacity: 0.14;
}

.machine-slide-prev {
    transform: translateX(-44%) scale(0.86);
}

.machine-slide-next {
    transform: translateX(44%) scale(0.86);
}

.machine-slide img {
    width: auto;
    height: 100%;
    max-width: 54%;
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(15, 23, 42, 0.14));
}

.machine-slide figcaption {
    position: absolute;
    bottom: 8px;
    left: 50%;
    color: #475569;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
    transition: opacity 280ms ease, transform 280ms ease;
}

.machine-slide-active figcaption {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.machine-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 999px;
    opacity: 0.28;
    transform: translateY(-50%);
    transition: opacity 0.18s ease, border-color 0.18s ease;
}

.machine-carousel:hover .machine-arrow,
.machine-arrow:focus-visible {
    opacity: 0.95;
    border-color: rgba(29, 115, 248, 0.36);
}

.machine-arrow-prev { left: 8px; }
.machine-arrow-next { right: 8px; }

.machine-dots {
    min-height: 9px;
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 8px;
}

.machine-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: var(--line);
    border-radius: 999px;
    transition: width 0.18s ease, background 0.18s ease;
}

.machine-dot.active {
    width: 24px;
    background: var(--blue);
}

.hero-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 9px;
    margin-top: 20px;
}

.hero-price > span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.hero-price strong {
    color: var(--text);
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.035em;
    white-space: nowrap;
}

.hero-price small {
    margin-left: 3px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
}

.trust-bar {
    padding: 18px 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.trust-bar h2 {
    font-size: 17px;
    line-height: 1.3;
}

.trust-bar p {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.trust-bar-cta {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
}

.trust-bar-cta:hover {
    text-decoration: underline;
}

.video-cta {
    width: fit-content;
}

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

.segment-list article {
    padding: 21px 0;
    border-top: 1px solid var(--line);
}

.segment-list h3 {
    font-size: 17px;
    line-height: 1.25;
}

.segment-list p {
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.section-action {
    margin-top: 28px;
    text-align: center;
}

.sales-flow {
    position: relative;
    width: min(100%, 900px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    list-style: none;
}

.sales-flow::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 16.666%;
    right: 16.666%;
    height: 2px;
    background: var(--line);
}

.sales-flow li {
    position: relative;
    text-align: center;
}

.flow-number {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    color: #fff;
    background: var(--blue);
    border: 6px solid #fff;
    border-radius: 999px;
    box-shadow: 0 0 0 1px var(--line);
    font-weight: 900;
}

.sales-flow h3 {
    font-size: 18px;
}

.sales-flow p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.platform-layout > .section-head {
    max-width: 760px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
}

.platform-side {
    padding: 34px;
}

.platform-side + .platform-side {
    border-left: 1px solid var(--line);
}

.platform-side-management {
    background: #F8FBFF;
}

.platform-label {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.platform-side h3 {
    margin-top: 8px;
    font-size: 21px;
}

.platform-side ul,
.offer-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 20px;
    margin-top: 22px;
    list-style: none;
}

.platform-side li,
.offer-list li {
    display: flex;
    gap: 9px;
    color: #334155;
    font-weight: 700;
}

.platform-side li::before,
.offer-list li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
}

.food-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: center;
}

.food-layout h2 {
    font-size: clamp(28px, 3.5vw, 42px);
}

.food-layout p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
}

.food-resources {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}

.food-resources li {
    padding: 11px 15px;
    color: #334155;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
}

.fiscal-copy {
    margin-top: 16px;
    color: #CBD5E1;
    font-size: 18px;
}

.technical-note {
    margin-top: 18px;
    color: #94A3B8;
    font-size: 12px;
}

.offer-card {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    border: 1px solid rgba(29, 115, 248, 0.36);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 22px 60px rgba(29, 115, 248, 0.12);
}

.offer-summary,
.offer-details {
    padding: 34px;
}

.offer-summary {
    background: #F8FBFF;
    border-right: 1px solid var(--line);
}

.offer-starting {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.offer-price {
    margin-top: 8px;
    color: var(--text);
    font-size: 54px;
    line-height: 1;
    font-weight: 900;
}

.offer-price > span {
    font-size: 20px;
}

.offer-price small {
    color: var(--muted);
    font-size: 15px;
}

.offer-summary p {
    margin: 18px 0 24px;
    color: var(--muted);
}

.offer-list {
    margin-top: 0;
}

.availability-note {
    margin-top: 24px;
    color: #475569;
    font-size: 13px;
    font-weight: 800;
}

.additional-terminal-note {
    margin-top: 7px;
    color: #94A3B8;
    font-size: 12px;
}

.proof-section {
    background: var(--bg);
}

.final-actions {
    justify-content: center;
}

@media (max-width: 980px) {
    .mobile-nav.active {
        max-height: calc(100vh - var(--header));
        overflow-y: auto;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header) + 34px) 0 42px;
    }

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

    .hero-copy {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .hero h1 {
        max-width: 650px;
        margin: 0 auto;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        min-height: 0;
    }

    .machine-carousel-viewport {
        height: 420px;
    }

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

}

@media (max-width: 640px) {
    .hero {
        padding: calc(var(--header) + 28px) 0 34px;
    }

    .hero-grid {
        gap: 18px;
    }

    .hero-copy {
        width: 100%;
    }

    .hero h1 {
        max-width: 560px;
        font-size: clamp(36px, 10vw, 42px);
        line-height: 1.07;
    }

    .hero-lead {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.58;
    }

    .hero .hero-actions {
        gap: 8px;
        margin-top: 26px;
    }

    .hero .btn {
        width: auto;
        min-width: 0;
        flex: 1 1 0;
        padding: 0 14px;
        font-size: 14px;
    }

    .hero-visual {
        width: 100%;
    }

    .machine-carousel-viewport {
        height: 390px;
    }

    .machine-slide-prev,
    .machine-slide-next {
        opacity: 0;
        visibility: visible;
    }

    .machine-slide img {
        max-width: 72%;
    }

    .machine-arrow {
        display: none;
    }

    .hero-price {
        margin-top: 16px;
    }

    .hero-price strong {
        font-size: 28px;
    }

    .trust-bar-inner {
        display: block;
        text-align: center;
    }

    .trust-bar-cta {
        margin-top: 12px;
    }

    .video-cta {
        width: 100%;
    }

    .segment-list,
    .sales-flow,
    .platform-grid,
    .food-layout,
    .offer-card {
        grid-template-columns: 1fr;
    }

    .segment-list article {
        padding: 17px 0;
    }

    .sales-flow {
        gap: 0;
    }

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

    .sales-flow li {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding-bottom: 26px;
        text-align: left;
    }

    .flow-number {
        margin: 0;
    }

    .platform-side {
        padding: 26px 22px;
    }

    .platform-side + .platform-side {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .platform-side ul,
    .offer-list {
        grid-template-columns: 1fr;
    }

    .food-layout {
        gap: 26px;
    }

    .offer-summary,
    .offer-details {
        padding: 28px 22px;
    }

    .offer-summary {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .offer-summary .btn {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .machine-carousel-viewport {
        height: 370px;
    }

    .machine-slide figcaption {
        font-size: 13px;
    }
}

@media (max-width: 350px) {
    .hero .hero-actions {
        flex-direction: column;
    }

    .hero .btn {
        width: 100%;
    }
}

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

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