/* Pricing Page Styles */
.nav__logo{
    width: 32px;
    margin-left: 90px;
}
.pricing{
    padding: 4rem 0;
    min-height: 100vh;
}

.pricing__container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing__header{
    text-align: center;
    margin-bottom: 3rem;
}

.pricing__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.pricing__description{
    color: hsl(210,24%,15%);
    font-size: 1.1rem;
}

.pricing__highlight{
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 0 2rem 3rem 2rem;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
}

.highlight__title{
    font-size: 2rem;
    font-family: "lora", sans-serif;
    margin-bottom: 1rem;
}

.highlight__text{
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.highlight__badge{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background-color: hsla(0,0%,100%,.2);
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 500;
}

.pricing__discount{
    background-color: hsla(0,0%,100%, .3);
    border: 2px solid hsl(210,52%,20%);
    border-radius: 1rem;
    padding: 2rem;
    margin: 0 2rem 3rem 2rem;
}

.discount__title{
    text-align: center;
    color: hsl(210,52%,20%);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.discount__highlight{
    text-align: center;
}

.discount__main{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.discount__main i{
    font-size: 2rem;
    color: hsl(195,100%,30%);
}

.discount__text{
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(210,52%,20%);
}

.discount__note{
    color: hsl(210,24%,15%);
    font-style: italic;
}

.pricing__cta{
    text-align: center;
}

.cta__title{
    color: hsl(210,52%,20%);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta__text{
    color: hsl(210,24%,15%);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    font-size: 1.1rem;
    min-height: 52px;
    min-width: 180px;
    transition: all .3s;
    position: relative;
}

.pricing__button:hover{
    transform: translateY(-2px);
}

@media screen and (max-width: 1024px){
    .pricing__packages{
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media screen and (max-width: 768px){
    .pricing__title{
        font-size: 1.8rem;
    }
    
    .pricing__discount{
        padding: 1.5rem;
    }
}