:root {
    --sales-blue: #075fe4;
    --sales-navy: #071d51;
    --sales-text: #3f4d68;
    --sales-border: #e4eaf4;
    --sales-soft: #f6f9ff;
    --sales-green: #25a55b;
    --sales-red: #ef4a4a;
}

.sales-container {
    width: min(1240px,calc(100% - 48px));
    margin-inline: auto;
}

.sales-header {
    position: relative;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--sales-border);
}

.sales-nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sales-logo img {
    display: block;
    width: 122px;
    height: auto;
}

.sales-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.sales-menu>a:not(.sales-button) {
    color: var(--sales-navy);
    font-size: 14px;
    font-weight: 600;
}

.sales-menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--sales-navy);
    font-size: 30px;
}

.sales-button {
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s,box-shadow .2s,background .2s;
    color: inherit;
}

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

.sales-button:focus-visible,.sales-menu a:focus-visible,.sales-menu-button:focus-visible {
    outline: 3px solid #8db8ff;
    outline-offset: 3px;
}

.sales-button-primary {
    color: #fff;
    background: var(--sales-blue);
    box-shadow: 0 8px 20px rgba(7,95,228,.2);
}

.sales-button-primary:hover {
    color: #fff;
    background: #004fc5;
}

.sales-button-secondary {
    color: var(--sales-blue);
    background: #fff;
    border-color: var(--sales-blue);
}

.sales-hero {
    padding: 68px 0 74px;
    background: linear-gradient(135deg,#fff 60%,#f4f8ff);
}

.sales-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,.8fr) minmax(520px,1.2fr);
    align-items: center;
    gap: 48px;
}

.sales-eyebrow,.sales-section-heading>span {
    display: inline-block;
    color: var(--sales-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.sales-hero h1 {
    margin: 17px 0 20px;
    color: var(--sales-navy);
    font-size: clamp(42px,5vw,66px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.sales-lead {
    max-width: 590px;
    color: var(--sales-text);
    font-size: 18px;
    line-height: 1.65;
}

.sales-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.sales-product-frame {
    overflow: hidden;
    border: 1px solid var(--sales-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(17,45,91,.12);
}

.sales-reference-crop {
    background-image: url('ventas-reference.png');
    background-repeat: no-repeat;
    background-color: #fff;
}

.sales-reference-list {
    aspect-ratio: 1.77;
    background-size: 164% auto;
    background-position: 97% 5.3%;
}

.sales-section {
    padding: 78px 0;
}

.sales-contrast-section {
    padding-top: 0;
}

.sales-contrast {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid var(--sales-border);
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(30,60,110,.06);
}

.sales-contrast-panel {
    padding: 44px 52px;
}

.sales-problem {
    background: linear-gradient(120deg,#fff8f8,#fff);
}

.sales-solution {
    background: linear-gradient(120deg,#fbfff9,#fff);
}

.sales-kicker {
    font-size: 11px;
    font-weight: 800;
}

.sales-problem .sales-kicker {
    color: var(--sales-red);
}

.sales-solution .sales-kicker {
    color: var(--sales-green);
}

.sales-contrast h2 {
    margin: 10px 0 24px;
    color: var(--sales-navy);
    font-size: 24px;
    line-height: 1.25;
}

.sales-contrast ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sales-contrast li {
    position: relative;
    padding-left: 27px;
    margin: 12px 0;
    color: var(--sales-text);
}

.sales-contrast li:before {
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
}

.sales-problem li:before {
    content: '×';
    color: var(--sales-red);
    border: 1px solid var(--sales-red);
}

.sales-solution li:before {
    content: '✓';
    color: var(--sales-green);
    border: 1px solid var(--sales-green);
}

.sales-section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.sales-section-heading h2 {
    margin: 8px 0 0;
    color: var(--sales-navy);
    font-size: 34px;
}

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

.sales-capability-grid article {
    padding: 28px 22px;
    border: 1px solid var(--sales-border);
    border-radius: 12px;
    background: #fff;
    text-align: center;
    transition: transform .2s,box-shadow .2s;
}

.sales-capability-grid article:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(25,65,120,.08);
}

.sales-capability-grid i {
    color: var(--sales-blue);
    font-size: 34px;
}

.sales-capability-grid h3,.sales-benefits h3 {
    margin: 16px 0 8px;
    color: var(--sales-navy);
    font-size: 17px;
}

.sales-capability-grid p,.sales-benefits p,.sales-product-grid p {
    margin: 0;
    color: var(--sales-text);
    font-size: 14px;
    line-height: 1.55;
}

.sales-flow-section,.sales-product-section {
    background: var(--sales-soft);
}

.sales-flow {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

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

.sales-flow li:not(:last-child):after {
    content: '→';
    position: absolute;
    right: -23px;
    top: 25px;
    color: #9aabc6;
}

.sales-step-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--sales-blue);
    font-size: 25px;
}

.sales-flow strong {
    display: block;
    color: var(--sales-navy);
    font-size: 15px;
}

.sales-flow p {
    color: var(--sales-text);
    font-size: 13px;
    line-height: 1.5;
}

.sales-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sales-product-grid article {
    min-width: 0;
}

.sales-product-grid h3 {
    color: var(--sales-navy);
    font-size: 22px;
}

.sales-product-grid p {
    min-height: 66px;
    margin-bottom: 20px;
}

.sales-product-grid img {
    display: block;
    width: 100%;
    height: auto;
}

.sales-benefits {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 14px;
}

.sales-benefits article {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 20px 14px;
    border-top: 1px solid var(--sales-border);
}

.sales-benefits i {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--sales-blue);
    background: #eef5ff;
    font-size: 21px;
}

.sales-benefits h3 {
    margin: 0 0 6px;
}

.sales-final-wrap {
    padding: 36px 0 0;
}

.sales-final-cta {
    padding: 50px 58px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    align-items: center;
    gap: 35px;
    color: #fff;
    background: linear-gradient(120deg,#063e9e,#0069ef);
}

.sales-final-cta h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 34px;
}

.sales-final-cta p {
    margin: 0;
    color: #e4efff;
    font-size: 16px;
}

.sales-final-cta .sales-actions {
    justify-content: flex-end;
    margin-top: 0;
}

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

.sales-button-outline-light {
    border-color: #fff;
    color: #fff;
}

.sales-button-outline-light:hover {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.sales-image-link {
    display: block;
    position: relative;
    cursor: zoom-in;
}

.sales-image-link:after {
    content: "\f00e";
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background: rgba(7,29,81,.78);
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    font-weight: 900;
    opacity: 0;
    transform: translateY(5px);
    transition: .2s ease;
}

.sales-image-link:hover:after,.sales-image-link:focus-visible:after {
    opacity: 1;
    transform: none;
}

@media(max-width:991px) {
    .sales-menu-button {
        display: block;
    }
    .sales-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 24px;
        right: 24px;
        padding: 22px;
        border: 1px solid var(--sales-border);
        border-radius: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        background: #fff;
        box-shadow: 0 20px 40px rgba(15,40,80,.15);
    }
    .sales-menu.is-open {
        display: flex;
    }
    .sales-menu>a {
        text-align: center;
    }
    .sales-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .sales-hero h1 {
        font-size: 43px;
    }
    .sales-capability-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .sales-flow {
        grid-template-columns: repeat(3,1fr);
        row-gap: 36px;
    }
    .sales-flow li:after {
        display: none;
    }
    .sales-benefits {
        grid-template-columns: repeat(2,1fr);
    }
    .sales-final-cta {
        grid-template-columns: 1fr;
    }
    .sales-final-cta .sales-actions {
        justify-content: flex-start;
    }
}

@media(max-width:767px) {
    .sales-container {
        width: min(100% - 32px,1240px);
    }
    .sales-header {
        position: sticky;
        top: 0;
    }
    .sales-nav {
        min-height: 66px;
    }
    .sales-nav-cta {
        display: flex;
    }
    .sales-hero {
        padding: 46px 0 54px;
    }
    .sales-hero-grid {
        grid-template-columns: 1fr;
    }
    .sales-hero h1 {
        font-size: 42px;
    }
    .sales-lead {
        font-size: 16px;
    }
    .sales-actions {
        flex-direction: column;
    }
    .sales-actions .sales-button {
        width: 100%;
    }
    .sales-contrast {
        grid-template-columns: 1fr;
    }
    .sales-contrast-panel {
        padding: 34px 25px;
    }
    .sales-section {
        padding: 58px 0;
    }
    .sales-section-heading h2 {
        font-size: 29px;
    }
    .sales-capability-grid {
        grid-template-columns: 1fr;
    }
    .sales-flow {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .sales-flow li {
        display: grid;
        grid-template-columns: 58px 1fr;
        text-align: left;
        column-gap: 16px;
    }
    .sales-flow .sales-step-icon {
        grid-row: 1/3;
        margin: 0;
    }
    .sales-flow p {
        margin-top: 5px;
    }
    .sales-product-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .sales-product-grid p {
        min-height: 0;
    }
    .sales-benefits {
        grid-template-columns: 1fr;
    }
    .sales-final-cta {
        width: 100%;
        border-radius: 0;
        padding: 44px 24px;
    }
    .sales-final-cta h2 {
        font-size: 29px;
    }
}

.sales-product-frame img {
    display: block;
    width: 100%;
    height: auto;
}

/* This explicit override must follow the legacy divider pseudo-element. */
.sales-contrast::after {
    content: none;
}

/* Shared problem/solution divider used by the POS landing page. */
.sales-contrast {
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    align-items: stretch;
}

.sales-contrast::after {
    content: none;
}

.sales-contrast-arrow {
    position: relative;
    z-index: 1;
    display: grid;
    align-self: stretch;
    place-items: center;
    color: var(--sales-blue);
}

.sales-contrast-arrow::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--sales-border);
    transform: translateX(-50%);
}

.sales-contrast-arrow i {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--sales-border);
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    box-shadow: 0 8px 22px rgba(17, 45, 91, .14);
}

@media (max-width: 767px) {
    .sales-contrast {
        grid-template-columns: 1fr;
    }

    .sales-contrast-arrow {
        min-height: 72px;
    }

    .sales-contrast-arrow::before {
        top: 50%;
        right: 0;
        bottom: auto;
        left: 0;
        width: auto;
        height: 1px;
        transform: translateY(-50%);
    }

    .sales-contrast-arrow i {
        transform: rotate(90deg);
    }
}

#header {
    background: #fff;
    box-shadow: 0 1px 0 var(--sales-border);
}

#header .navbar-brand-default,#header .navbar-brand-collapsed {
    display: none!important;
}

#header .navbar-brand-on-scroll {
    display: flex!important;
}

#header .nav-link {
    color: var(--sales-navy)!important;
}

#header a[href="/landing/functions/"] {
    position: relative;
    color: var(--sales-blue)!important;
    font-weight: 700;
}

#header a[href="/landing/functions/"]::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--sales-blue);
}

#header .nav-link-toggle::after {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='%23071d51' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.72 15.78a.75.75 0 0 1-.53.22h-.38a.77.77 0 0 1-.53-.22l-5.13-5.14a.5.5 0 0 1 0-.71l.71-.71a.49.49 0 0 1 .7 0L12 13.67l4.44-4.45a.5.5 0 0 1 .71 0l.7.71a.5.5 0 0 1 0 .71z'/%3E%3C/svg%3E")!important;
}

#header .navbar-toggler {
    color: var(--sales-navy)!important;
}

.sales-hero {
    padding-top: 154px;
}

@media(max-width:991px) {
    .sales-hero {
        padding-top: 124px;
    }
}

/* Visual composition aligned with the approved sales landing reference. */ @media(min-width:1200px) {
    .sales-container {
        width: min(1280px,calc(100% - 64px));
    }
    .sales-hero {
        padding-top: 126px;
        padding-bottom: 42px;
    }
    .sales-hero-grid {
        grid-template-columns: 410px minmax(0,1fr);
        gap: 54px;
    }
    .sales-hero h1 {
        font-size: 48px;
        line-height: 1.04;
        margin: 13px 0 16px;
    }
    .sales-hero h1 span {
        color: var(--sales-blue);
    }
    .sales-lead {
        font-size: 16px;
        line-height: 1.55;
    }
    .sales-actions {
        margin-top: 24px;
    }
    .sales-actions .sales-button {
        min-height: 42px;
        padding-inline: 14px;
        font-size: 14px;
    }
    .sales-hero-shot {
        border-radius: 12px;
    }
    .sales-section {
        padding: 44px 0;
    }
    .sales-contrast-section {
        padding-top: 0;
    }
    .sales-contrast-panel {
        padding: 28px 40px;
    }
    .sales-contrast h2 {
        font-size: 20px;
        margin: 7px 0 16px;
    }
    .sales-contrast li {
        font-size: 14px;
        margin: 8px 0;
    }
    .sales-section-heading {
        margin-bottom: 22px;
    }
    .sales-section-heading h2 {
        font-size: 15px;
        text-transform: uppercase;
        color: var(--sales-blue);
        letter-spacing: .025em;
    }
    .sales-capability-grid {
        grid-template-columns: repeat(8,1fr);
        gap: 10px;
    }
    .sales-capability-grid article {
        padding: 18px 10px;
        border-radius: 9px;
    }
    .sales-capability-grid i {
        font-size: 30px;
    }
    .sales-capability-grid h3 {
        font-size: 14px;
        margin: 12px 0 6px;
    }
    .sales-capability-grid p {
        font-size: 14px;
        line-height: 1.45;
    }
    .sales-flow-section {
        background: #fff;
    }
    .sales-flow {
        padding: 25px 22px;
        border: 1px solid var(--sales-border);
        border-radius: 12px;
        gap: 24px;
    }
    .sales-step-icon {
        width: 54px;
        height: 54px;
        font-size: 23px;
        margin-bottom: 12px;
    }
    .sales-flow strong {
        font-size: 14px;
    }
    .sales-flow p {
        font-size: 14px;
        margin-bottom: 0;
    }
    .sales-product-section {
        background: #fff;
        padding-top: 8px;
    }
    .sales-product-grid {
        gap: 14px;
    }
    .sales-product-grid article {
        padding: 13px;
        border: 1px solid var(--sales-border);
        border-radius: 11px;
        background: var(--sales-soft);
        text-align: center;
    }
    .sales-product-grid h3 {
        font-size: 16px;
        margin: 0 0 5px;
    }
    .sales-product-grid p {
        font-size: 14px;
        min-height: 39px;
        margin-bottom: 12px;
    }
    .sales-product-grid .sales-product-frame {
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(17,45,91,.08);
    }
    .sales-benefits {
        gap: 0;
        border: 1px solid var(--sales-border);
        border-radius: 11px;
    }
    .sales-benefits article {
        border-top: 0;
        border-right: 1px solid var(--sales-border);
        padding: 16px 13px;
    }
    .sales-benefits article:last-child {
        border-right: 0;
    }
    .sales-benefits i {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 19px;
    }
    .sales-benefits h3 {
        font-size: 14px;
    }
    .sales-benefits p {
        font-size: 14px;
    }
    .sales-final-wrap {
        padding-top: 8px;
    }
    .sales-final-cta {
        padding: 34px 46px;
        border-radius: 12px;
    }
    .sales-final-cta h2 {
        font-size: 28px;
    }
    .sales-final-cta p {
        font-size: 14px;
    }
}

@media(min-width:768px) and (max-width:1199px) {
    .sales-hero h1 span {
        color: var(--sales-blue);
    }
    .sales-section {
        padding: 58px 0;
    }
}

@media(max-width:767px) {
    .sales-hero h1 span {
        color: var(--sales-blue);
    }
    #header a[href="/landing/functions/"]::before {
        display: none;
    }
}

.sales-contrast-title {
    display: grid;
    grid-template-columns: 38px minmax(0,1fr);
    align-items: start;
    gap: 12px;
    margin-top: 7px;
}

.sales-contrast-title h2 {
    margin-top: 0;
}

.sales-contrast-icon {
    width: 34px;
    height: 34px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 700;
}

.sales-problem .sales-contrast-icon {
    color: var(--sales-red);
}

.sales-solution .sales-contrast-icon {
    color: var(--sales-green);
}

.sales-contrast {
    position: relative;
}

.sales-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.sales-product-grid article {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.sales-product-frame {
    width: 100%;
}

.sales-product-frame img {
    display: block;
    width: 100%;
    height: auto;
}
