.services-container{
    display: grid;
    width: 100%;
    justify-items: center;
    grid-gap:20px;
    padding: 0 10px;
    grid-template-columns: repeat(auto-fit, minmax(350px,1fr));
}

.services{
    background: var(--fill-1);
    width: 100%;
    max-width: 525px;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 25px;
    border-radius: var(--border-radius);
    flex-direction: column;
    padding: 30px 20px;
    overflow: hidden;
    color: var(--light-grey);
    box-shadow: var(--box-shadow);
}
.service-name{
    font-size: var(--font-size-title);
    margin-bottom: 10px;
    font-weight: 800;
    white-space: pre;
    /*width: calc(100% - 60px);*/
    width: 100%;
    overflow: hidden;
    display: inline-block;
    max-width: calc(100% - 60px);
    background: -webkit-linear-gradient(95deg, #ff5100, #ff00bf);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.service-title-logo{
    display: inline-block;
}

.service-text-accent{
    font-weight: 800;
}
.service-text-accent{
    background: -webkit-linear-gradient(95deg,#ff5100, #ff00bf);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.service-info{  
    color:var(--dark-grey);
    /*color: transparent;
    background: -webkit-linear-gradient(#ff5100, #ff00bf);
    background-clip: text;*/
}
.service-media{
    box-shadow: var(--box-shadow);
}

.service-name > *{
    font-weight: 800;
}
.service-info-section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 0;
}
.service-info-container{
    min-width: 50%;
    display: flex;
    padding: 0 10px;
    white-space: nowrap;
    gap: 5px;
    flex-direction: column;
    align-items: center;
}
.service-info-item{
    width: 100%;
    max-width: 200px;
    overflow: hidden;
}
.service-info{
    font-size: 25px;
    display: flex;
    margin: 15px 0 5px 0;
    gap: 5px;
    justify-content: center;
    align-items: center;
    font-weight: 800;
}
.currency-symbols{
    font-size: 14px;
}
.service-media{
    width: 100%;
    aspect-ratio: 2/1;
    border-radius: calc(var(--border-radius) - 0px);
    overflow: hidden;
}
.service-description{
    width: 100%;
    max-width: calc(100% - 50px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-grey);
}
.service-location{
    font-size: 13px;
}
.service-extra-info{
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-wrap: nowrap;
    line-height: 0;
    width: 100%;
}
.service-use-case{
    width: 100%;
    max-width: calc(100% - 45px);
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
    color: var(--light-grey);
}
.service-button{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 5px;
    border-radius: calc(var(--border-radius) - 10px);
    background: linear-gradient(-230deg, #ff5100, #ff00bf);
}

.service-button-text{
    color: white;
    max-width: 100%;
    display: flex;
    padding: inherit;
    gap: 5px;
    font-weight: 600;
    align-items: center;
    overflow: hidden;
    text-wrap: nowrap;
}

/* -------------------- */
.price-option{
    width: 300px;
    flex:0 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 20px;
    position: relative;
    border-radius: var(--border-radius);
    flex-direction: column;
    padding: 0 15px 25px 15px;
    color: var(--light-grey);
    transition: .2s ease-in-out;
}
.price-option > .button{
    background: white;
    color: black;
    box-shadow: var(--box-shadow);
}
.price-option::before{
    content: "";
    background: var(--fill-1);
    inset: 50px 0 0 0;
    position: absolute;
    z-index: -1;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
/*
@media (pointer: fine){
    .price-option:hover::before{
        border: 4px solid var(--green);
    }
}
.price-option > input[type="radio"]{
    display: none;
}
.price-option:has(input[type="radio"]:checked)::before{
    border: 4px dashed var(--green);
}
form:not(form[data-no-input]) .price-option:not(.price-option:has(input[type="radio"]:checked)){
    opacity: .5;
    filter: brightness(.9);
}
*/
.price-option-name{
    font-size: var(--font-size-title);
    margin-bottom: 5px;
    font-weight: 800;
    white-space: pre;
    width: 100%;
    overflow: hidden;
    display: inline-block;
    max-width: calc(100% - 60px);
}
.price-option-media{
    width: 90%;
    aspect-ratio: 2/1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.price-option-price{
    font-weight: 800;
    font-size: 25px;
}
.price-option-tax-notice{
    font-size: 14px;
    font-style: italic;
    padding: 0 10px;
}
.price-option-split-payment-notice{
    border-radius: 100px;
    padding: 3px 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--green);
    color: white;
}
.price-option-digits{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    --size: 15px;
}
.price-option-digits::before{
    content: "$ ";
    font-weight: 600;
    font-size: var(--size);
}
.price-option-digits::after{
    content: " CAD";
    font-weight: 600;
    font-size: var(--size);
}
.price-option-checklist{
    width: 100%;
    max-width: calc(100% - 50px);
    display: flex;
    gap: 15px;
    font-weight: 600;
    text-align: left;
    flex-direction: column;
}
.price-option-checklist li{
    display: inline-flex;
    justify-content: flex-start;
    align-items: baseline;
    gap: 5px;
}
[data-check]{
    color: var(--green)
}
[data-check]::before{
    content: "\f058\ ";
    font-weight: 900;
    font-family: "Font Awesome 7 Free";
}
[data-payment-plan]{
    color: var(--green)
}
[data-payment-plan]::before{
    font-family: uicons-solid-straight !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    content: "\f2c7";
    -webkit-font-smoothing: antialiased;
}
[data-cond]::before{
    content: "\f055\ ";
    font-weight: 900;
    font-family: "Font Awesome 7 Free";
}
.price-option-checklist :not([data-check],[data-cond],[data-payment-plan],[data-na]){ 
    color: orange;
}
.price-option-checklist :not([data-check],[data-cond],[data-payment-plan])::before{ 
    content: "\f057\ ";
    font-weight: 900;
    font-family: "Font Awesome 7 Free";
}

/* -------------------- *//* -------------------- *//* -------------------- *//* -------------------- *//* -------------------- *//* -------------------- */

.service-step{
    color: var(--light-grey);
    width: 300px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 15px;
    border-radius: var(--border-radius);
    background: var(--fill-1);
    box-shadow: var(--box-shadow);
}
.service-step [data-contains]{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: calc(var(--border-radius) - 10px);
    overflow: hidden;
}
.service-step-title{
    font-weight: 800;
    font-size: 25px;
}
.service-step-description{
    font-weight: 600;
}