﻿.hero-section-sh {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 600px;
    background-color: #F4F4F4;
    background-repeat: no-repeat;
    background-position: center -80px;
    background-size: 60% auto;
    overflow: hidden;
}

    .hero-section-sh .editor {
        position: absolute;
        pointer-events: none;
    }

    .hero-section-sh .editor1 {
        bottom: 230px;
        left: 240px;
    }

    .hero-section-sh .editor2 {
        top: 210px;
        right: 280px;
    }

.hero-header-sh {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 20px 50px;
}

    .hero-header-sh .logo-sh {
        height: 50px;
    }

.gradient-rect {
    height: 100px;
    width: 100%;
    background: linear-gradient( to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 15%, rgba(255, 255, 255, 0.5) 30%, #FFFFFF 90% );
    bottom: 0;
}

.billing-toggle-sh {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.billing-option-sh {
    padding: 0.6rem 1.5rem;
    font-weight: bold;
    font-size: 1rem;
    border: 2px solid #ccc;
    background-color: white;
    color: #333;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.billing-option-sh.active {
    background-color: red;
    color: white;
    border-color: black;
}


/*-------- second section ---------*/

.second-section-sh {
    display: flex;
    overflow: hidden;
    margin-top: 50px;
    gap: 20px;
    overflow: hidden;
}

.second-title-sh {
    margin: 50px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    min-width: 50%;
}

    .second-title-sh h1 {
        font-size: 60px;
        line-height: 1;
    }

    .second-title-sh p {
        font-size: 30px;
        line-height: 1;
    }

.cardboard-second-sh {
    flex-shrink: 0;
    margin-left: auto;
    transform: translateX(10%);
    height: auto;
    max-height: 400px;
}




/*-------- plans section ---------*/

.plans-section-sh {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px 50px;
    overflow: hidden;
}

.plans-title-sh {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .plans-title-sh h2 {
        font-size: 48px;
    }

    .plans-title-sh button {
        border: none;
        background: none;
        font-size: 28px;
    }

.plans-cards-sh {
    display: flex;
    gap: 24px;
}

.plan-card-sh {
    background: #fff;
    border: 15px solid #F4F4F4;
    border-radius: 24px;
    padding: 24px;
    width: auto;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s;
}


    .plan-card-sh:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
    }

    .plan-card-sh.recommended {
        position: relative;
        overflow: hidden;
    }

        .plan-card-sh.recommended::before {
            content: "";
            position: absolute;
            inset: 0;
            padding: 3px;
            background: linear-gradient(45deg, #E40E18, #000);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            pointer-events: none;
            border-radius: 11px;
        }

        .plan-card-sh.recommended > * {
            position: relative;
            background: #fff;
            z-index: 1;
        }



.plan-section-title-sh {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.plan-section-title-sh div{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .plan-section-title-sh span {
        font-size: 25px;
        background: linear-gradient(45deg, #E40E18, #000);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        display: inline-block;
    }


.plan-image-sh {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.plan-title-sh {
    font-size: 40px;
}

.plan-subtitle-sh {
    font-size: 20px;
    color: #555;
    margin-bottom: 16px;
}

.plan-price-title-sh {
    font-size: 18px;
    color: #888;
    margin-bottom: 10px;
}

.plan-price-sh {
    display: flex;
    align-items: flex-start;
    font-weight: 600;
}

.currency-sh {
    font-size: 20px;
    margin-right: 4px;
    margin-top: 10px;
}

.price-int-sh {
    font-size: 80px;
    line-height: 1;
}

.price-decimal-sh {
    font-size: 20px;
    margin-left: 2px;
    margin-top: 38px;
}

.plan-benefit-sh {
    font-size: 22px;
    margin-bottom: 24px;
}

.plan-button-sh {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #E40E18;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    color: #fff;
    text-align: center;
    background-color: #E40E18;
    max-height: 54px;
    cursor: pointer;
}

    .plan-button-sh.recommended {
        background: linear-gradient(45deg, #E40E18, #000);
        color: #fff;
        border: none;
    }

    .plan-button-sh button {
        background: none;
        border: none;
        color: white;
    }

    
    /*-------- infos section ---------*/

    .infos-section-sh {
    margin: 50px;
    background-color: #F4F4F4;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    gap: 20px;
    align-items: center;
    overflow: hidden;
}

.infos-section-text-sh {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
}


    .infos-section-text-sh h1 {
        font-size: 60px;
    }

    .infos-section-text-sh p {
        font-size: 30px;
    }

.infos-section-topic-sh {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.infos-section-topic-sh div{
    display: flex;
    gap: 10px;
    align-items: center;
}

    .infos-section-topic-sh div img{
        width: 35px;
    }

.infos-section-image-sh {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infoImage-infos-sh {
    width: 480px;
}

@media only screen and (min-width: 1100px) and (max-width: 1400px) {
    .hero-section-sh {
        height: 510px;
    }

        .hero-section-sh .editor1 {
            bottom: 320px;
            left: 190px;
        }

        .hero-section-sh .editor2 {
            top: 170px;
            right: 190px;
        }
}


@media only screen and (min-width: 902px) and (max-width: 1100px) {
    .hero-section-sh {
        height: 450px;
    }

        .hero-section-sh .editor1 {
            bottom: 100px;
            left: 80px;
        }

        .hero-section-sh .editor2 {
            top: 120px;
            right: 100px;
        }


    /*-------- second section ---------*/

    .second-section-sh {
        flex-direction: column;
        margin-top: 0px;
        gap: 0px;
    }
}



@media only screen and (min-width: 768px) and (max-width: 902px) {
    .hero-section-sh .editor {
        display: none;
    }

    .hero-section-sh {
        background-repeat: no-repeat;
        background-position: center -50px;
        background-size: 100%;
    }

    .hero-section-sh {
        height: 400px;
    }

    /*-------- second section ---------*/

    .second-section-sh {
        flex-direction: column;
        margin-top: 0px;
        gap: 0px;
    }

    /*-------- plans section ---------*/

    .plans-section-sh {
        gap: 10px;
        padding: 20px;
    }

    .plans-cards-sh {
        display: flex;
        gap: 24px;
        flex-direction: column
    }
}

@media (max-width: 768px) {
    .hero-section-sh .editor {
        display: none;
    }

    .hero-section-sh {
        background-repeat: no-repeat;
        background-position: center 20px;
        background-size: 200%;
    }

    .hero-header-sh {
        flex-direction: column;
        gap: 20px;
    }

    /*-------- second section ---------*/

    .second-section-sh {
        flex-direction: column;
        margin-top: 0px;
        gap: 0px;
    }

    .second-title-sh h1 {
        font-size: 40px;
    }

    .second-title-sh p {
        font-size: 22px;
    }

    .second-title-sh {
        margin: 20px;
        gap: 10px;
        min-width: 0;
    }

    .cardboard-second-sh {
        flex-shrink: 0;
        margin-left: auto;
        transform: translateX(3%);
        height: auto;
        max-height: 400px;
        height: 160px;
        width: auto;
    }


    /*-------- plans section ---------*/

    .plans-section-sh {
        gap: 10px;
        padding: 20px;
    }

    .plans-cards-sh {
        display: flex;
        gap: 24px;
        flex-direction: column
    }


    /*-------- infos section ---------*/

    .infos-section-sh {
        margin: 20px;
        flex-direction: column;
        padding: 20px;
    }

    .infos-section-text-sh {
        width: 100%;
    }


        .infos-section-text-sh h1 {
            font-size: 40px;
        }

        .infos-section-text-sh p {
            font-size: 22px;
        }

    .infos-section-image-sh {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .infoImage-infos-sh {
        width: 300px;
    }
}
