.zero-section-wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;

    border-radius: 12px;
    padding: 16px 20px;
    gap: 12px;
    max-width: 450px;
    height: auto;
}

.zero-section {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.cost {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;

    font-weight: 700;
    font-size: 2.5rem;
    /* color: ; */
    line-height: 1;
}

.cost sup {
    font-weight: 200;
    position: relative;
    top: 12px;
}

.cost span.zero {
    clip-path: polygon(0 0, 100% 0, 69% 100%, 0 100%);
    font-size: 80px;
    font-weight: 700;
    transform: scaleX(.9) translate(-8px);
}

.cost span.slash {
    background: linear-gradient(120deg, #ffffff1a, #0a8232, #ffffff1a);
    left: calc((16px + 2px) * -1);
    position: relative;
    transform: skew(-10deg);
    width: 1px;
}

.description {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.subtext {
    font-size: 0.95rem;
}


.steps-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    margin: auto;
    position: relative;
}

.step {
    position: relative;
}

.step-number {
    font-size: 72px;
    font-weight: bold;
    color: #6200ee;
}

.step-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 8px;
}

.step-desc {
    font-size: 16px;
    color: #333;
    margin-top: 4px;
}

.circle {
    width: 20px;
    min-height: 20px;
    border-radius: 50%;
    background: #ccc;
    position: relative;
    z-index: 2;
}

.circle.active {
    background: #6200ee;
    box-shadow: 0 0 0 8px rgba(98, 0, 238, 0.1);
}

.desktopHidden {
    display: none;
}

@media only screen and (max-width: 767px) {

    /* CSS rules for mobile phones */
    * {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    body {
        height: auto;
        overflow-y: auto !important;
    }

    #app {
        height: auto;
        overflow: auto;
    }

    .mobileHeader {
        position: fixed;
        bottom: 0px;
        z-index: 10;
        background: white;
        box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .desktopHidden {
        display: flex;
    }

    .mobileHidden {
        display: none;
    }

    .desktopROWmobileCOLUMN {
        flex-direction: column !important;
    }

    .W60p {
        width: 100% !important;
    }

    .listItem {
        transition: max-height 0.3s ease;
        max-height: 300px;
        overflow: hidden;
    }

    .closeListItem {
        max-height: 0;
        overflow: hidden;
    }

    .steps-container {
        flex-direction: column;
    }
}