:root {
    --epos-blue: #142f73;
    --epos-border: #dce4ef;
    --epos-muted: #edf2f8;
    --epos-text-muted: #667085;
}

/* Overlay */

.epos-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(10, 20, 40, 0.6);
    backdrop-filter: blur(6px);
}

/* Modal */

.epos-modal {
    position: relative;
    width: min(920px, 95vw);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
}

#epos-screen-container {
    padding: 48px 56px 34px;
}

/* Screen visibility */

.epos-screen[hidden] {
    display: none;
}

/* Close */

.epos-close {
    position: absolute;
    top: 25px;
    right: 27px;
    z-index: 10;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--epos-blue) !important;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    box-shadow: none !important;
}

.epos-close:hover {
    opacity: 0.65;
}

.epos-close:focus-visible {
    outline: 2px solid var(--epos-blue);
    outline-offset: 4px;
}

/* Header */

.epos-modal-header {
    padding-right: 45px;
}

.epos-modal-logo {
    display: block;
    width: 132px;
    height: auto;
    margin-bottom: 10px;
}

.epos-step-label {
    margin: 0 0 6px;
    color: var(--epos-blue);
    font-size: 18px;
    font-weight: 600;
}

.epos-progress {
    width: 100%;
    height: 11px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--epos-muted);
}

.epos-progress-bar {
    width: 25%;
    height: 100%;
    border-radius: inherit;
    background: #16a34a;
    transition: width 550ms ease;
}

/* Screen 1 heading */

#epos-screen-title {
    max-width: 710px;
    margin: 22px 0;
    color: var(--epos-blue);
    font-size: clamp(38px, 4.5vw, 42px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

/* Screen 1 cards */

.epos-sector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.epos-choice-card {
    appearance: none;
    position: relative;
    display: flex;
    min-height: 245px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px !important;
    border: 2px solid var(--epos-border) !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    color: var(--epos-blue) !important;
    text-align: center;
    cursor: pointer;
    box-shadow: none !important;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.epos-choice-card:hover,
.epos-choice-card:focus-visible {
    transform: translateY(-3px);
    border-color: var(--epos-blue) !important;
    background: #ffffff !important;
    color: var(--epos-blue) !important;
    box-shadow: 0 16px 36px rgba(20, 47, 115, 0.12) !important;
}

.epos-choice-card:focus-visible {
    outline: 3px solid rgba(20, 47, 115, 0.18);
    outline-offset: 3px;
}

.epos-choice-card.is-selected {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--epos-blue) !important;
    background: #f8fbff !important;
    color: var(--epos-blue) !important;
    box-shadow: 0 16px 36px rgba(20, 47, 115, 0.15) !important;
}

.epos-choice-card.is-selected::before {
    content: "✓";
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--epos-blue);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.epos-choice-icon {
    display: block;
    width: 88px;
    height: 88px;
    margin-bottom: 22px;
    color: inherit;
}

.epos-choice-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.epos-choice-label {
    color: inherit;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.epos-choice-arrow {
    display: none;
}

/* Legal text */

.epos-legal {
    max-width: 500px;
    margin: 26px auto 0;
    padding: 0 12px;
    color: var(--epos-text-muted);
    font-size: 10px;
    line-height: 1.45;
    text-align: center;
}

.epos-legal a {
    color: inherit;
    font-weight: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.3);
    text-underline-offset: 2px;
}

.epos-legal a:hover {
    color: var(--epos-blue);
    text-decoration-color: var(--epos-blue);
}

/* Back button */

.epos-back {
    appearance: none;
    position: absolute;
    top: 28px;
    right: 72px;
    margin: 0;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--epos-blue) !important;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none !important;
}

.epos-back:hover {
    opacity: 0.7;
}

/* Screen 2 heading */

.epos-screen-heading {
    max-width: 710px;
    margin: 14px 0 22px;
    color: var(--epos-blue);
    font-size: clamp(34px, 4.5vw, 42px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

/* Screen 2 business type choices */

.epos-business-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.epos-business-type-button {
    appearance: none;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px !important;
    border: 2px solid var(--epos-border) !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    color: var(--epos-blue) !important;
    text-align: left;
    font: inherit;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none !important;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease,
        background-color 180ms ease;
}

.epos-business-type-button:hover,
.epos-business-type-button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--epos-blue) !important;
    box-shadow: 0 10px 24px rgba(20, 47, 115, 0.1) !important;
}

.epos-business-type-button:focus-visible {
    outline: 3px solid rgba(20, 47, 115, 0.18);
    outline-offset: 3px;
}

.epos-business-type-button.is-selected {
    border-color: var(--epos-blue) !important;
    background: #f8fbff !important;
}

.epos-business-type-arrow {
    flex: 0 0 auto;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
}

/* Other business input */

.epos-other-business {
    max-width: 620px;
}

.epos-other-business[hidden] {
    display: none;
}

.epos-other-business label {
    display: block;
    margin-bottom: 8px;
    color: var(--epos-blue);
    font-size: 15px;
    font-weight: 700;
}

.epos-other-business input {
    display: block;
    width: 100%;
    min-height: 58px;
    padding: 14px 16px;
    border: 2px solid var(--epos-border);
    border-radius: 14px;
    background: #ffffff;
    color: #1f2937;
    font: inherit;
    font-size: 17px;
    outline: none;
}

.epos-other-business input:focus {
    border-color: var(--epos-blue);
    box-shadow: 0 0 0 4px rgba(20, 47, 115, 0.1);
}

.epos-continue-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 22px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--epos-blue) !important;
    color: #ffffff !important;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none !important;
}

.epos-continue-button:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

/* Loading screen */

.epos-loading-content {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px 10px;
    text-align: center;
}

.epos-spinner {
    width: 72px;
    height: 72px;
    margin: 0 auto 30px;
    border: 5px solid #e5eaf3;
    border-top-color: var(--epos-blue);
    border-radius: 50%;
    animation: epos-spin 0.9s linear infinite;
}

@keyframes epos-spin {
    to {
        transform: rotate(360deg);
    }
}

.epos-loading-title {
    margin: 0 0 12px;
    color: var(--epos-blue);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.epos-loading-text {
    max-width: 520px;
    margin: 0;
    color: var(--epos-text-muted);
    font-size: 18px;
    line-height: 1.55;
}





/* ==========================
   Screen 4 - Recommendation
========================== */

.epos-recommendation-card {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 18px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}


/* Pull Screen 4 content up slightly */

[data-screen="recommendation"] {
    padding-top: 0;
}

[data-screen="recommendation"] .epos-recommendation-card {
    margin-top: -18px;
}

.epos-product-details {
    flex: 1 1 56%;
    min-width: 0;
}

.epos-product-column {
    flex: 1 1 44%;
    min-width: 0;
    text-align: center;
}

.epos-product-image {
    display: block;
    width: 100%;
    max-width: 390px;
    height: auto;
    margin: 0 auto;
}

.epos-recommended-for {
    display: inline-block;
    margin: 0 0 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 47, 115, 0.08);
    color: var(--epos-blue);
    font-size: 13px;
    font-weight: 700;
}

.epos-product-title {
    max-width: 520px;
    margin: 0 0 14px;
    color: var(--epos-blue);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.epos-product-description {
    max-width: 560px;
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.5;
}

.epos-feature-list {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.epos-feature-list li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 32px;
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.epos-feature-list li:last-child {
    margin-bottom: 0;
}

.epos-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-size: 18px;
    font-weight: 700;
}

.epos-old-price {
    color: #8a94a6;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: line-through;
}

.epos-new-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 6px;
    color: var(--epos-blue);
    line-height: 1;
}

.epos-price-prefix {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.epos-price-amount {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.epos-price-asterisk {
    position: relative;
    top: -0.6em;
    margin-left: 2px;
    font-size: 0.38em;
    line-height: 1;
}

.epos-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 15px 32px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--epos-blue) !important;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: none !important;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.epos-primary-button:hover,
.epos-primary-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(20, 47, 115, 0.18) !important;
}

.epos-primary-button:focus-visible {
    outline: 3px solid rgba(20, 47, 115, 0.2);
    outline-offset: 3px;
}




/* =====================================================
   Screen 5 - Contact
===================================================== */

.epos-contact-layout {
    max-width: 560px;
    margin: 0 auto;
}

.epos-contact-offer {
    margin-bottom: 0px;
    text-align: center;
}

.epos-contact-eyebrow {
    margin: 0 0 8px;
    color: var(--epos-blue);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.epos-contact-title {
    margin: 0 0 14px;
    color: var(--epos-blue);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.epos-save-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #16a34a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.epos-contact-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.epos-contact-price-prefix {
    color: var(--epos-blue);
    font-size: 22px;
    font-weight: 700;
}

.epos-contact-price-amount {
    color: var(--epos-blue);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.epos-contact-urgency {
    margin: 5px 0 0;
    color: var(--epos-text-muted);
    font-size: 15px;
    font-weight: 500;
}

.epos-contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.epos-form-field label {
    display: block;
    margin-bottom: -2px;
    color: var(--epos-blue);
    font-size: 15px;
    font-weight: 600;
}

.epos-form-field input {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--epos-border);
    border-radius: 16px;
    background: #ffffff;
    color: var(--epos-blue);
    font: inherit;
    font-size: 16px;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.epos-form-field input:focus {
    outline: none;
    border-color: var(--epos-blue);
    box-shadow: 0 0 0 4px rgba(20, 47, 115, 0.1);
}

.epos-field-error {
    min-height: 14px;
    margin: 4px 0 0;
    color: #dc2626;
    font-size: 13px;
    line-height: 1.2;
}

.epos-contact-submit {
    width: 100%;
    margin-top: 6px;
}


.epos-contact-form {
    gap: 10px;
}

.epos-form-field label {
    margin-bottom: -2px;
}

.epos-field-error {
    min-height: 0;
    margin: 0;
}

.epos-modal.is-contact-screen {
    width: min(700px, 95vw);
}


.epos-form-field input.has-error {
    border-color: #dc2626;
}

.epos-form-field input.has-error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    
}



.epos-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}





/* =====================================================
   Screen 6 - Success
===================================================== */

.epos-success-content {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.epos-success-icon {
    display: grid;
    width: 74px;
    height: 74px;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: #16a34a;
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.epos-success-title {
    margin: 0 0 14px;
    color: var(--epos-blue);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.epos-success-text {
    max-width: 500px;
    margin: 0 0 8px;
    color: var(--epos-text-muted);
    font-size: 17px;
    line-height: 1.5;
}

.epos-success-close {
    min-width: 180px;
    margin-top: 24px;
}


.epos-success-phone {
    white-space: nowrap;
}






/* Mobile */

@media (max-width: 768px) {

    .epos-overlay {
        padding: 12px;
    }

    .epos-modal {
        width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 20px;
    }

    #epos-screen-container {
        padding: 28px 22px 22px;
    }

    .epos-close {
        top: 17px;
        right: 17px;
        width: 24px;
        height: 24px;
        font-size: 23px;
    }

    .epos-modal-header {
        padding-right: 36px;
    }

    .epos-modal-logo {
        width: 92px;
        margin-bottom: 10px;
    }

    .epos-step-label {
        margin-bottom: 8px;
        font-size: 15px;
    }

    .epos-progress {
        height: 8px;
    }

    #epos-screen-title {
        margin: 30px 0 20px;
        font-size: 30px;
        line-height: 1.1;
    }

    .epos-sector-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .epos-choice-card {
        min-height: 78px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 14px 16px !important;
        border-radius: 16px !important;
        text-align: left;
    }

    .epos-choice-card:hover,
    .epos-choice-card:focus-visible {
        transform: none;
    }

    .epos-choice-card.is-selected {
        transform: none;
        border-color: var(--epos-blue) !important;
        background: var(--epos-blue) !important;
        color: #ffffff !important;
        box-shadow: none !important;
    }

    .epos-choice-card.is-selected::before {
        display: none;
    }

    .epos-choice-icon {
        width: 42px;
        height: 42px;
        margin: 0 18px 0 0;
        flex: 0 0 auto;
    }

    .epos-choice-label {
        flex: 1;
        font-size: 18px;
    }

    .epos-choice-arrow {
        display: block;
        margin-left: 12px;
        color: inherit;
        font-size: 29px;
        font-weight: 300;
        line-height: 1;
    }

    .epos-legal {
        max-width: 100%;
        margin: 20px auto 0;
        padding: 0 8px;
        font-size: 10px;
        line-height: 1.45;
        text-align: center;
    }

    .epos-back {
    top: 18px;
    right: 54px;
    font-size: 14px;
    }

    .epos-screen-heading {
        margin: 12px 0 20px;
        font-size: 30px;
        line-height: 1.1;
    }

    .epos-business-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    }

    .epos-business-type-button {
    min-height: 54px;
    padding: 9px 14px !important;
    border-radius: 14px !important;
    font-size: 16px;
    }


    .epos-business-type-button:hover,
    .epos-business-type-button:focus-visible {
        transform: none;
    }

    .epos-other-business input {
        min-height: 54px;
        font-size: 16px;
    }

    .epos-continue-button {
        width: 100%;
    }

    .epos-loading-content {
        min-height: 330px;
        padding: 20px 8px 4px;
    }

    .epos-spinner {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-width: 4px;
    }

    .epos-loading-title {
        font-size: 30px;
    }

    .epos-loading-text {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Recommendation */

    .epos-recommendation-card {
    flex-direction: column-reverse;
    gap: 26px;
    padding: 24px;
    text-align: center;
    }

    .epos-product-column {
    flex: none;
    }

    .epos-product-image {
    max-width: 240px;
    margin: 0 auto;
    }

    .epos-product-title {
    font-size: 28px;
    }

    .epos-product-description {
    font-size: 16px;
    }

    .epos-feature-list {
    display: inline-block;
    text-align: left;
    margin-bottom: 26px;
    }

    .epos-new-price {
    font-size: 30px;
    }

    .epos-primary-button {
    width: 100%;
    }

    /* Screen 4 recommendation */

    [data-screen="recommendation"] .epos-modal-logo {
        margin-bottom: 16px;
    }

    .epos-recommendation-card {
        flex-direction: column-reverse;
        gap: 20px;
        margin-top: 12px;
        padding: 22px 18px;
        text-align: center;
    }

    .epos-product-column,
    .epos-product-details {
        width: 100%;
    }

    .epos-product-image {
        max-width: 205px;
    }

    .epos-recommended-for {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .epos-product-title {
        max-width: 100%;
        margin-bottom: 12px;
        font-size: 28px;
        line-height: 1.06;
    }

    .epos-product-description {
        max-width: 100%;
        margin-bottom: 20px;
        font-size: 15px;
        line-height: 1.5;
    }

    .epos-feature-list {
        display: inline-block;
        margin-bottom: 22px;
        text-align: left;
    }

    .epos-feature-list li {
        margin-bottom: 8px;
        padding-left: 28px;
        font-size: 15px;
    }

    .epos-old-price {
        font-size: 18px;
    }

    .epos-new-price {
    justify-content: center;
    gap: 8px;
    }

    .epos-price-prefix {
    font-size: 19px;
    }

    .epos-price-amount {
    font-size: 42px;
    }

    .epos-primary-button {
        width: 100%;
        margin-top: 20px;
    }    
    
   
   /* Screen 5 */

    .epos-contact-layout {
    max-width: 100%;
    }

    .epos-contact-title {
    font-size: 28px;
    }

    .epos-contact-price-prefix {
    font-size: 18px;
    }

    .epos-contact-price-amount {
    font-size: 40px;
    }

    .epos-contact-offer {
    margin-bottom: -10px;
    }

    .epos-contact-form {
    gap: 0px;
    }

    .epos-form-field label {
    margin-bottom: -2px;
    font-size: 14px;
    }

    .epos-form-field input {
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 16px;
    }

    .epos-field-error {
    min-height: 12px;
    margin-top: 3px;
    }

    .epos-contact-submit {
    margin-top: 6px;
    }
    
    .epos-modal.is-contact-screen {
    width: 100%;
    }
   
  /* Screen 6 */

    .epos-success-content {
    min-height: 380px;
    padding: 24px 6px;
    }

    .epos-success-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    font-size: 32px;
    }

    .epos-success-title {
    font-size: 32px;
    }

    .epos-success-text {
    font-size: 16px;
    }

    .epos-success-close {
    width: 100%;
    }


    
}


/* ==========================
   Screens 3 and 4 additions
========================== */

.epos-selection-note {
    margin: -10px 0 18px;
    color: var(--epos-text-muted);
    font-size: 16px;
    line-height: 1.5;
}

.epos-feature-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.epos-feature-button {
    appearance: none;
    display: flex;
    min-height: 72px;
    align-items: center;
    gap: 14px;
    padding: 16px 18px !important;
    border: 2px solid var(--epos-border) !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    color: var(--epos-blue) !important;
    text-align: left;
    font: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    box-shadow: none !important;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.epos-feature-button:hover,
.epos-feature-button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--epos-blue) !important;
    box-shadow: 0 10px 24px rgba(20, 47, 115, 0.1) !important;
}

.epos-feature-button:focus-visible {
    outline: 3px solid rgba(20, 47, 115, 0.18);
    outline-offset: 3px;
}

.epos-feature-button.is-selected {
    border-color: var(--epos-blue) !important;
    background: #f8fbff !important;
    box-shadow: 0 10px 24px rgba(20, 47, 115, 0.1) !important;
}

.epos-feature-button-wide {
    grid-column: 1 / -1;
}

.epos-feature-check {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    place-items: center;
    border: 2px solid var(--epos-border);
    border-radius: 8px;
    background: #ffffff;
    color: transparent;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    transition:
        border-color 180ms ease,
        background-color 180ms ease,
        color 180ms ease;
}

.epos-feature-button.is-selected .epos-feature-check {
    border-color: var(--epos-blue);
    background: var(--epos-blue);
    color: #ffffff;
}

.epos-features-continue {
    display: flex;
    width: min(260px, 100%);
    margin: 20px auto 0;
}

.epos-site-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.epos-site-card {
    appearance: none;
    position: relative;
    display: flex;
    min-height: 230px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 28px 22px !important;
    border: 2px solid var(--epos-border) !important;
    border-radius: 22px !important;
    background: #ffffff !important;
    color: var(--epos-blue) !important;
    text-align: center;
    font: inherit;
    cursor: pointer;
    box-shadow: none !important;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.epos-site-card:hover,
.epos-site-card:focus-visible {
    transform: translateY(-3px);
    border-color: var(--epos-blue) !important;
    box-shadow: 0 16px 36px rgba(20, 47, 115, 0.12) !important;
}

.epos-site-card:focus-visible {
    outline: 3px solid rgba(20, 47, 115, 0.18);
    outline-offset: 3px;
}

.epos-site-card.is-selected {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--epos-blue) !important;
    background: #f8fbff !important;
    box-shadow: 0 16px 36px rgba(20, 47, 115, 0.15) !important;
}

.epos-site-card.is-selected::before {
    content: "✓";
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--epos-blue);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
}

.epos-site-icon {
    display: block;
    width: 94px;
    height: 94px;
    color: inherit;
}

.epos-site-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.epos-site-label {
    color: inherit;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .epos-selection-note {
        margin: -8px 0 16px;
        font-size: 15px;
    }

    .epos-feature-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .epos-feature-button-wide {
        grid-column: auto;
    }

    .epos-feature-button {
        min-height: 56px;
        padding: 11px 14px !important;
        border-radius: 14px !important;
        font-size: 16px;
    }

    .epos-feature-button:hover,
    .epos-feature-button:focus-visible {
        transform: none;
    }

    .epos-feature-check {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
        border-radius: 7px;
        font-size: 14px;
    }

    .epos-site-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .epos-site-card {
        min-height: 142px;
        flex-direction: row;
        gap: 20px;
        justify-content: flex-start;
        padding: 20px 24px !important;
        border-radius: 18px !important;
        text-align: left;
    }

    .epos-site-card:hover,
    .epos-site-card:focus-visible,
    .epos-site-card.is-selected {
        transform: none;
    }

    .epos-site-icon {
        width: 72px;
        height: 72px;
        flex: 0 0 72px;
    }

    .epos-site-label {
        font-size: 20px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .epos-progress-bar {
        transition: none;
    }
}
