:root {
    --navy-950: #031d42;
    --navy-900: #062d63;
    --navy-800: #0a3b78;
    --navy-700: #124f96;
    --blue-100: #edf5ff;
    --orange-600: #ee5c0b;
    --orange-500: #ff6b12;
    --orange-100: #fff0e6;
    --green-600: #138a4b;
    --ink: #17243a;
    --muted: #5f6f84;
    --line: #dce4ef;
    --surface: #f7f9fc;
    --white: #fff;
    --shadow-sm: 0 8px 24px rgba(6, 45, 99, .08);
    --shadow-lg: 0 24px 60px rgba(6, 45, 99, .14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body.marketing-home {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.62;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.marketing-home img,
.marketing-home svg {
    display: block;
    max-width: 100%;
}

.marketing-home a {
    color: inherit;
    text-decoration: none;
}

.marketing-home button,
.marketing-home a {
    -webkit-tap-highlight-color: transparent;
}

.marketing-home h1,
.marketing-home h2,
.marketing-home h3,
.marketing-home p {
    margin-top: 0;
}

.marketing-home h1,
.marketing-home h2,
.marketing-home h3 {
    color: var(--navy-950);
    line-height: 1.12;
    letter-spacing: -.025em;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.svg-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.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: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white) !important;
    background: var(--navy-950);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(220, 228, 239, .9);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.brand img {
    width: 202px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    color: #23344e;
    font-size: .92rem;
    font-weight: 650;
}

.site-nav > a:not(.button) {
    position: relative;
    padding: 28px 0 24px;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 17px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--orange-500);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 44px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy-900);
    transition: transform .2s ease, opacity .2s ease;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 11px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white) !important;
    background: var(--orange-600);
    box-shadow: 0 12px 24px rgba(238, 92, 11, .24);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #d94e00;
    box-shadow: 0 15px 28px rgba(238, 92, 11, .3);
}

.button-secondary {
    color: var(--navy-900) !important;
    background: var(--white);
    border-color: #a9b9ce;
}

.button-login {
    min-height: 44px;
    padding-inline: 20px;
    color: var(--white) !important;
    background: var(--navy-900);
    box-shadow: 0 8px 18px rgba(6, 45, 99, .18);
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--orange-600);
    font-size: .76rem;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 24px;
    height: 2px;
    content: "";
    background: currentColor;
}

.section-kicker.light {
    color: #ff9b5e;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading.centered .section-kicker {
    justify-content: center;
}

.section-heading h2,
.scale-copy h2,
.branches-grid h2,
.devices-copy h2,
.experience-copy h2,
.pricing-card h2,
.contact-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.15rem);
}

.section-heading p,
.branches-grid p,
.devices-copy p,
.pricing-card p {
    color: var(--muted);
    font-size: 1.06rem;
}

.hero {
    position: relative;
    padding: 52px 0 68px;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 107, 18, .08), transparent 25%),
        linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
    align-items: center;
    gap: 44px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow {
    padding: 8px 12px;
    color: var(--navy-900);
    background: var(--blue-100);
    border: 1px solid #d8e9fb;
    border-radius: 999px;
    letter-spacing: .06em;
}

.business-types {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 13px;
    margin: 2px 0 28px;
}

.business-type {
    min-width: 67px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: var(--navy-950);
    font-size: .62rem;
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: .015em;
    text-transform: uppercase;
}

.business-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1;
    border-radius: 50%;
    box-shadow: inset 0 -4px 10px rgba(0, 0, 0, .1);
}

.business-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.5;
}

.business-icon.butcher { background: #c7272f; }
.business-icon.greengrocer { background: #2a8448; }
.business-icon.deli { background: #e5a000; }
.business-icon.kiosk { background: #2375b9; }

.business-more {
    align-self: center;
    margin-left: 3px;
    padding-left: 17px;
    color: var(--navy-900);
    font-size: .72rem;
    font-weight: 850;
    text-transform: uppercase;
    border-left: 1px solid #bac6d6;
}

.hero h1 {
    max-width: 610px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 5.4vw, 5.25rem);
    font-weight: 850;
}

.hero h1 strong {
    display: block;
    color: var(--orange-600);
    font-weight: inherit;
}

.hero-lead {
    max-width: 600px;
    margin-bottom: 10px;
    color: #263a57;
    font-size: 1.18rem;
    font-weight: 650;
}

.hero-text {
    max-width: 580px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.03rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: #40526b;
    font-size: .84rem;
    font-weight: 700;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-proof svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--orange-600);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.hero-media {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255, 255, 255, .26), transparent 24%);
}

.hero-media > img {
    width: 100%;
    height: 100%;
    min-height: 550px;
    object-fit: cover;
    object-position: 62% center;
}

.hero-flow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    color: var(--white);
    background: rgba(3, 29, 66, .9);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(3, 29, 66, .3);
    backdrop-filter: blur(8px);
}

.hero-flow span {
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-flow i {
    color: var(--orange-500);
    font-style: normal;
}

.video-section {
    padding: 28px 0 84px;
    background: #fbfcfe;
}

.video-card {
    display: grid;
    grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
    gap: 34px;
    padding: 28px;
    color: var(--white);
    background: var(--navy-950);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.video-copy {
    align-self: center;
    padding: 20px 0 20px 10px;
}

.video-copy h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.video-copy p {
    margin: 0;
    color: #c9d7ea;
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #020e20;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 15px;
}

.video-shell > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .58;
}

.video-shell iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    gap: 14px;
    padding: 20px;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(3, 29, 66, .32));
}

.video-overlay > span {
    font-size: .9rem;
    font-weight: 700;
}

.video-play {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, .12);
    border: 3px solid var(--white);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: transform .2s ease, background .2s ease;
}

.video-play:hover,
.video-play:focus-visible {
    background: var(--orange-600);
    transform: scale(1.05);
}

.video-play span {
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 19px solid var(--white);
}

.video-note {
    position: absolute;
    right: 13px;
    bottom: 10px;
    padding: 5px 8px;
    color: #e2e9f3;
    background: rgba(3, 29, 66, .72);
    border-radius: 6px;
    font-size: .68rem;
}

.benefits,
.modules-section,
.devices-section,
.experience-section,
.pricing-section {
    padding: 92px 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.benefit-card {
    min-height: 235px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.benefit-card:hover {
    border-color: #bdcde0;
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.benefit-card.featured {
    background: linear-gradient(145deg, #fff7f1, #fff);
    border-color: #ffc69f;
}

.line-icon,
.module-card > span,
.electronic-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 23px;
    color: var(--navy-900);
    background: var(--blue-100);
    border-radius: 12px;
}

.line-icon svg,
.module-card svg,
.electronic-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.benefit-card.featured .line-icon {
    color: var(--orange-600);
    background: var(--orange-100);
}

.benefit-card h3,
.module-card h3 {
    margin-bottom: 11px;
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.benefit-card p,
.module-card p {
    margin: 0;
    color: var(--muted);
    font-size: .91rem;
}

.scale-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(18, 79, 150, .7), transparent 30%),
        var(--navy-950);
}

.scale-section::before {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.scale-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr);
    align-items: center;
    gap: 60px;
}

.scale-copy h2 {
    color: var(--white);
}

.scale-copy > p {
    color: #cfdbeb;
    font-size: 1.05rem;
}

.check-list {
    display: grid;
    gap: 9px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    font-weight: 700;
}

.check-list li::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    content: "✓";
    color: var(--white);
    background: var(--orange-600);
    border-radius: 50%;
    font-size: .7rem;
}

.compatibility {
    display: inline-block;
    padding: 9px 13px;
    color: #e3ebf5;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    font-size: .87rem;
}

.weight-flow {
    display: grid;
    grid-template-columns: minmax(190px, .85fr) 72px minmax(230px, 1.15fr);
    align-items: center;
    padding: 24px;
    color: var(--ink);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-md);
}

.weight-panel,
.sale-panel {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .2);
}

.weight-panel {
    padding: 24px 18px;
    text-align: center;
    border-bottom: 7px solid #909baa;
}

.weight-panel > span,
.weight-panel > i {
    display: block;
    color: var(--muted);
    font-size: .75rem;
    font-style: normal;
}

.weight-panel strong {
    display: block;
    margin: 10px 0 7px;
    color: #4dd3ff;
    background: #061a31;
    border-radius: 7px;
    font-family: Consolas, monospace;
    font-size: 2rem;
    letter-spacing: .04em;
}

.weight-panel small {
    font-size: .7em;
}

.flow-arrow {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--orange-500);
    font-size: 1.8rem;
}

.flow-arrow span {
    flex: 1;
    height: 2px;
    background: var(--orange-500);
    box-shadow: 0 0 12px var(--orange-500);
}

.sale-panel {
    overflow: hidden;
    padding: 20px;
}

.sale-head {
    display: flex;
    justify-content: space-between;
    margin: -20px -20px 18px;
    padding: 13px 16px;
    color: var(--white);
    background: var(--navy-900);
    font-size: .77rem;
    font-weight: 800;
}

.sale-head i {
    color: #8ff0ba;
    font-size: .68rem;
    font-style: normal;
}

.sale-product span,
.sale-panel dt {
    color: var(--muted);
    font-size: .7rem;
}

.sale-product strong {
    display: block;
    margin-bottom: 12px;
    color: var(--navy-950);
}

.sale-panel dl {
    margin: 0 0 15px;
}

.sale-panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #edf1f6;
}

.sale-panel dt,
.sale-panel dd {
    margin: 0;
}

.sale-panel dd {
    color: var(--navy-900);
    font-size: .8rem;
    font-weight: 800;
}

.sale-weight dd {
    color: var(--green-600);
}

.sale-panel button {
    width: 100%;
    padding: 9px;
    color: var(--white);
    background: var(--green-600);
    border: 0;
    border-radius: 7px;
    font: inherit;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.modules-section {
    background: var(--surface);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.module-card {
    padding: 27px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}

.module-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.module-card > span {
    width: 46px;
    height: 46px;
    margin-bottom: 17px;
}

.module-card svg {
    width: 27px;
    height: 27px;
}

.branches-section {
    padding: 98px 0;
    overflow: hidden;
}

.branches-grid {
    display: grid;
    grid-template-columns: 1fr .95fr;
    align-items: center;
    gap: 78px;
}

.branches-visual {
    position: relative;
    min-height: 390px;
    background:
        linear-gradient(#dfe9f5 1px, transparent 1px),
        linear-gradient(90deg, #dfe9f5 1px, transparent 1px),
        #f7faff;
    background-size: 32px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.branches-visual::before,
.branches-visual::after {
    position: absolute;
    content: "";
    background: #99b4d3;
    transform-origin: left center;
}

.branches-visual::before {
    top: 50%;
    left: 28%;
    width: 46%;
    height: 2px;
}

.branches-visual::after {
    top: 25%;
    left: 50%;
    width: 2px;
    height: 51%;
}

.central-office,
.branch {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border: 1px solid #cbd9e8;
    box-shadow: var(--shadow-sm);
}

.central-office {
    top: 50%;
    left: 50%;
    width: 155px;
    min-height: 120px;
    padding: 16px;
    border-radius: 17px;
    transform: translate(-50%, -50%);
}

.central-office svg {
    width: 36px;
    height: 36px;
    margin-bottom: 7px;
    fill: none;
    stroke: var(--orange-600);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.central-office strong {
    color: var(--navy-900);
    font-size: .9rem;
}

.central-office span,
.branch span {
    color: var(--muted);
    font-size: .68rem;
}

.branch {
    width: 110px;
    min-height: 76px;
    padding: 10px;
    border-radius: 12px;
}

.branch i {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    margin-bottom: 5px;
    color: var(--white);
    background: var(--navy-800);
    border-radius: 50%;
    font-size: .64rem;
    font-style: normal;
    font-weight: 800;
}

.branch-one { top: 12%; left: 10%; }
.branch-two { top: 12%; right: 9%; }
.branch-three { right: 11%; bottom: 11%; }

.compact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 26px;
}

.compact-list span {
    padding: 8px 12px;
    color: var(--navy-800);
    background: var(--blue-100);
    border: 1px solid #d4e5f7;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 750;
}

.devices-section {
    background: var(--surface);
}

.devices-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 64px;
}

.device-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.device-labels span {
    padding: 7px 11px;
    color: var(--navy-900);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 7px;
    font-size: .75rem;
    font-weight: 800;
}

.device-stage {
    position: relative;
    min-height: 430px;
}

.device {
    position: absolute;
    overflow: hidden;
    background: #101827;
    border: 8px solid #172237;
    box-shadow: 0 22px 50px rgba(3, 29, 66, .22);
}

.device-screen {
    width: 100%;
    height: 100%;
    padding: 13px;
    overflow: hidden;
    background: #f6f9fd;
}

.laptop {
    top: 25px;
    left: 2%;
    width: 72%;
    height: 320px;
    border-width: 10px;
    border-radius: 13px 13px 4px 4px;
}

.laptop::after {
    position: absolute;
    right: -9%;
    bottom: -23px;
    left: -9%;
    height: 22px;
    content: "";
    background: linear-gradient(#cfd4da, #838c96);
    border-radius: 3px 3px 14px 14px;
}

.tablet {
    right: 6%;
    bottom: 8px;
    width: 36%;
    height: 286px;
    z-index: 2;
    border-radius: 18px;
}

.phone {
    right: 0;
    bottom: 0;
    width: 22%;
    height: 240px;
    z-index: 3;
    border-width: 6px;
    border-radius: 22px;
}

.mini-top {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: -13px -13px 14px;
    padding: 11px 13px;
    color: var(--white);
    background: var(--navy-900);
    font-size: .65rem;
}

.mini-top b {
    margin-right: auto;
}

.mini-top i {
    width: 5px;
    height: 5px;
    background: #91b6de;
    border-radius: 50%;
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mini-stats span,
.mini-card {
    padding: 11px;
    background: var(--white);
    border: 1px solid #dfe6ef;
    border-radius: 7px;
}

.mini-stats small,
.mini-card small {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: .42rem;
}

.mini-stats strong,
.mini-card strong {
    display: block;
    color: var(--green-600);
    font-size: .65rem;
}

.mini-chart {
    height: 145px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 12px;
    padding: 16px 15px 0;
    background: var(--white);
    border: 1px solid #dfe6ef;
    border-radius: 7px;
}

.mini-chart i {
    flex: 1;
    background: var(--navy-700);
    border-radius: 3px 3px 0 0;
}

.mini-chart i:nth-child(1) { height: 36%; }
.mini-chart i:nth-child(2) { height: 58%; }
.mini-chart i:nth-child(3) { height: 43%; }
.mini-chart i:nth-child(4) { height: 72%; }
.mini-chart i:nth-child(5) { height: 62%; }
.mini-chart i:nth-child(6) { height: 82%; }
.mini-chart i:nth-child(7) { height: 95%; background: var(--orange-500); }

.mini-card {
    margin-bottom: 9px;
}

.mini-card i {
    display: block;
    height: 4px;
    margin-top: 9px;
    background: linear-gradient(90deg, var(--orange-500) 66%, #e5ebf3 66%);
    border-radius: 99px;
}

.phone .device-screen {
    padding: 9px;
}

.phone .mini-top {
    margin: -9px -9px 10px;
    padding: 9px;
}

.phone .mini-card {
    padding: 8px;
}

.electronic-section {
    padding: 40px 0 90px;
    background: var(--surface);
}

.electronic-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    padding: 32px 38px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.electronic-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    color: var(--orange-600);
    background: var(--orange-100);
}

.electronic-card .section-kicker {
    margin-bottom: 7px;
}

.electronic-card h2 {
    margin-bottom: 8px;
    font-size: 1.75rem;
}

.electronic-card p {
    margin: 0;
    color: var(--muted);
}

.electronic-steps {
    display: flex;
    align-items: center;
    gap: 9px;
}

.electronic-steps span {
    padding: 8px 11px;
    color: var(--navy-900);
    background: var(--blue-100);
    border-radius: 7px;
    font-size: .72rem;
    font-weight: 800;
}

.electronic-steps i {
    color: var(--orange-600);
    font-style: normal;
}

.experience-card {
    display: grid;
    grid-template-columns: .85fr 1fr .8fr;
    overflow: hidden;
    background: #fffaf6;
    border: 1px solid #f1dfd2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.experience-photo {
    position: relative;
    min-height: 490px;
}

.experience-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.experience-photo span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 10px 12px;
    color: var(--white);
    background: rgba(3, 29, 66, .84);
    border-radius: 8px;
    font-size: .75rem;
    font-weight: 750;
    text-align: center;
}

.experience-copy {
    align-self: center;
    padding: 42px;
}

.experience-copy h2 {
    font-size: 2.35rem;
}

.experience-copy p {
    color: #4e5f74;
}

.experience-strong {
    margin: 22px 0 0;
    padding-left: 16px;
    color: var(--navy-950) !important;
    font-weight: 800;
    border-left: 3px solid var(--orange-500);
}

.experience-proof {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    background: var(--navy-950);
}

.since-badge {
    width: 86px;
    height: 86px;
    display: grid;
    place-content: center;
    margin-bottom: 22px;
    color: var(--white);
    text-align: center;
    background: var(--orange-600);
    border: 4px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

.since-badge strong {
    font-size: .62rem;
    text-transform: uppercase;
}

.since-badge span {
    font-size: 1.5rem;
    font-weight: 850;
    line-height: 1;
}

.experience-proof h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 1.25rem;
}

.experience-proof blockquote {
    position: relative;
    margin: 0;
    padding-top: 22px;
    color: #d3deed;
    font-size: .88rem;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.experience-proof blockquote::before {
    position: absolute;
    top: 11px;
    left: 0;
    color: var(--orange-500);
    content: "“";
    font-size: 2.3rem;
    font-style: normal;
    line-height: 1;
    transform: translateY(-28%);
}

.pricing-section {
    padding-top: 0;
}

.pricing-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 40px 46px;
    background: var(--blue-100);
    border: 1px solid #d3e5f7;
    border-radius: var(--radius-md);
}

.pricing-card > div {
    max-width: 780px;
}

.pricing-card h2 {
    margin-bottom: 9px;
    font-size: 2rem;
}

.pricing-card p {
    margin: 0;
}

.pricing-card .button {
    flex: 0 0 auto;
}

.contact-section {
    padding: 0 0 92px;
}

.contact-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 40px 44px;
    color: var(--white);
    background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    color: var(--orange-500);
    border: 3px solid var(--orange-500);
    border-radius: 50%;
    font-size: 2.2rem;
    font-weight: 850;
}

.contact-copy > span {
    display: block;
    margin-bottom: 5px;
    color: #ffab75;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-copy h2 {
    margin-bottom: 9px;
    color: var(--white);
    font-size: 2.1rem;
}

.contact-copy p {
    max-width: 660px;
    margin: 0;
    color: #d5dfed;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    text-align: center;
}

.button-whatsapp {
    min-width: 230px;
    color: var(--white) !important;
    background: var(--green-600);
}

.contact-detail {
    color: #dce7f4 !important;
    font-size: .75rem;
}

.site-footer {
    padding: 60px 0 26px;
    color: #bfcde0;
    background: #02162f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 55px;
}

.footer-brand img {
    width: 190px;
    height: auto;
    margin-bottom: 16px;
    padding: 6px;
    background: var(--white);
    border-radius: 6px;
}

.footer-brand p {
    color: #9fb0c6;
    font-size: .83rem;
}

.footer-grid h2 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: .76rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: .8rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--white);
}

.footer-pending {
    color: #6f839d;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 22px;
    font-size: .72rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 1100px) {
    .site-nav { gap: 18px; }
    .brand img { width: 176px; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
    .hero-media, .hero-media > img { min-height: 500px; }
    .hero-media > img { object-position: 58% center; }
    .scale-grid { grid-template-columns: 1fr; }
    .weight-flow { max-width: 720px; }
    .experience-card { grid-template-columns: 1fr 1.15fr; }
    .experience-photo { min-height: 410px; }
    .experience-proof { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr 1.4fr; align-items: center; gap: 26px; }
    .experience-proof .since-badge { margin: 0; }
    .experience-proof h3 { margin: 0; }
    .experience-proof blockquote { padding: 0 0 0 24px; border-top: 0; border-left: 1px solid rgba(255,255,255,.15); }
    .experience-proof blockquote::before { top: 0; left: 10px; }
}

@media (max-width: 900px) {
    html { scroll-padding-top: 74px; }
    .container { width: min(calc(100% - 30px), var(--container)); }
    .header-inner { min-height: 70px; }
    .brand img { width: 170px; }
    .menu-toggle { display: block; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .site-nav {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        max-height: calc(100vh - 70px);
        display: grid;
        gap: 0;
        padding: 14px 20px 24px;
        overflow-y: auto;
        visibility: hidden;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 30px rgba(6, 45, 99, .12);
        opacity: 0;
        transform: translateY(-14px);
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }
    .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
    .site-nav > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid #edf1f6; }
    .site-nav > a:not(.button)::after { display: none; }
    .site-nav .button { margin-top: 14px; }
    body.menu-open { overflow: hidden; }
    .hero { padding-top: 34px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 720px; }
    .hero-media, .hero-media > img { min-height: 500px; }
    .video-card { grid-template-columns: 1fr; }
    .video-copy { padding: 6px; }
    .benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .branches-grid, .devices-grid { grid-template-columns: 1fr; gap: 45px; }
    .branches-visual { order: 2; }
    .devices-copy { max-width: 650px; }
    .electronic-card { grid-template-columns: auto 1fr; }
    .electronic-steps { grid-column: 1 / -1; justify-content: center; }
    .experience-card { grid-template-columns: 1fr; }
    .experience-photo { min-height: 360px; }
    .experience-copy { padding: 35px; }
    .experience-proof { grid-column: auto; grid-template-columns: auto 1fr; }
    .experience-proof blockquote { grid-column: 1 / -1; padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.15); border-left: 0; }
    .contact-card { grid-template-columns: auto 1fr; }
    .contact-actions { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
    .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 680px) {
    body.marketing-home { font-size: 15px; }
    .container { width: min(calc(100% - 24px), var(--container)); }
    .brand img { width: 154px; }
    .hero { padding: 26px 0 48px; }
    .business-types { gap: 11px 8px; margin-bottom: 23px; }
    .business-type { min-width: 58px; font-size: .55rem; }
    .business-icon { width: 36px; height: 36px; font-size: 1rem; }
    .business-more { width: 100%; margin-top: 2px; padding: 5px 0 0; border-top: 1px solid #dce4ef; border-left: 0; }
    .hero h1 { font-size: clamp(2.65rem, 14vw, 4.1rem); }
    .hero-lead { font-size: 1.05rem; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .hero-media, .hero-media > img { min-height: 390px; }
    .hero-media { border-radius: 18px; }
    .hero-media > img { object-position: 58% center; }
    .hero-flow { right: 10px; bottom: 10px; left: 10px; justify-content: center; }
    .video-section { padding-bottom: 68px; }
    .video-card { gap: 18px; padding: 17px; }
    .video-play { width: 60px; height: 60px; }
    .video-note { display: none; }
    .benefits, .modules-section, .devices-section, .experience-section, .pricing-section { padding: 70px 0; }
    .section-heading { margin-bottom: 34px; }
    .section-heading h2, .scale-copy h2, .branches-grid h2, .devices-copy h2, .experience-copy h2, .pricing-card h2, .contact-copy h2 { font-size: 2rem; }
    .benefit-grid, .module-grid { grid-template-columns: 1fr; }
    .benefit-card { min-height: 0; padding: 25px; }
    .scale-section { padding: 72px 0; }
    .weight-flow { grid-template-columns: 1fr; gap: 14px; }
    .flow-arrow { min-height: 42px; flex-direction: column; justify-content: center; transform: rotate(90deg); }
    .flow-arrow span { width: 34px; flex: 0 0 2px; }
    .branches-visual { min-height: 330px; }
    .central-office { width: 125px; }
    .branch { width: 88px; }
    .branch-one { left: 4%; }
    .branch-two { right: 4%; }
    .branch-three { right: 5%; }
    .device-stage { min-height: 340px; }
    .laptop { width: 80%; height: 255px; }
    .tablet { width: 38%; height: 225px; }
    .phone { width: 24%; height: 190px; }
    .mini-chart { height: 105px; }
    .mini-stats strong, .mini-card strong { font-size: .52rem; }
    .electronic-section { padding-bottom: 70px; }
    .electronic-card { grid-template-columns: 1fr; padding: 28px; text-align: center; }
    .electronic-icon { margin-inline: auto; }
    .electronic-card .section-kicker { justify-content: center; }
    .electronic-steps { flex-wrap: wrap; }
    .experience-photo { min-height: 290px; }
    .experience-copy { padding: 28px; }
    .experience-proof { grid-template-columns: 1fr; padding: 28px; }
    .experience-proof h3 { margin-bottom: 0; }
    .pricing-section { padding-top: 0; }
    .pricing-card { align-items: flex-start; flex-direction: column; padding: 30px; }
    .pricing-card .button { width: 100%; }
    .contact-section { padding-bottom: 70px; }
    .contact-card { grid-template-columns: 1fr; padding: 30px 25px; text-align: center; }
    .contact-icon { margin-inline: auto; }
    .contact-actions { grid-column: auto; flex-direction: column; }
    .button-whatsapp { width: 100%; min-width: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
    .hero-proof { display: grid; }
    .hero-media, .hero-media > img { min-height: 330px; }
    .hero-media > img { object-position: 55% center; }
    .hero-flow span { font-size: .58rem; }
    .video-card { margin-inline: -2px; }
    .branches-visual { min-height: 300px; }
    .branch-two { top: 8%; }
    .branch-three { bottom: 7%; }
    .device-stage { min-height: 300px; transform: scale(.94); transform-origin: top left; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand, .footer-grid > div:last-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
