*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*::after, *::before{
    box-sizing: border-box;
}
:root{
    --surface-white:#ffffff;
    --primary:#d50057;
    --secondary:#960048;
    --surface-mango:#FFA400;
    --paragraph:#252A2D;
    --stroke-section:#D8DADA;
    --primary-tone-300:#FEE0EC;
    --outline-card:#D8DADA;
    --terciary:#005D97;
    --text-inactive:#6D787F;
    --text-help:#5E6A71;
    --section-surface:#f3f3f2;
}

body{
    font: 400 1.25rem/2.25rem 'Inter';
    color: var(--paragraph);
    text-align: center;
}
h1, h2, h3, h4, h5 {
    color: var(--primary);
    text-align: center;
    width: 100%;
}
h1 {
    font: 700 3.75rem/4.5rem 'Bree';
} 
h2, h3{
    font-family: 'Bree';
    font-weight: 400;
}
h2{
    font-size: 2.75rem;
    line-height: 3.125rem;
}
h3{
    font-size: 36px;
    line-height: 3rem;
}
a{
    color: var(--primary);
    text-decoration: underline;
    cursor: pointer;
}
#page__header{
    background-color: var(--surface-white);
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1.5rem 0;
}
.anchor__header{
    cursor: pointer;
    height: 3rem;
}
.logo__header{
    width: auto;
    height:3rem;
}
.section__container{
    width: 100%;
    margin: 0 auto;
    max-width: 75rem;
}
.hero__container,
.steps__container,
.faqs__container{
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    height: auto;
    align-items: center;
    transition: all 300ms ease;
}
.hero__container{
    padding: 1.5rem 0 3.5rem;
}
.steps__container{
    padding: 3.5rem 0;
}
.faqs__container{
    padding: 3.5rem 1.25rem;
}
.content__wrapper{
    width: 100%;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2.5rem;
}
.intro__subtitle{
    padding: 0;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2.375rem;
    text-align: center;
}
.intro__img{
    display: flex;
    width: 100%;
    height: 18.75rem;
    transition: all 200ms ease;
}
.intro__img > img {
    object-fit: cover;
    width: 100%;
    height: auto;
}
.primary__cta{
    width: 100%;
    max-width: 22.5rem;
    text-decoration: none;
    background-color: var(--primary);
    color: var(--surface-white);
    border: 0;
    font-family: 'Inter';
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 500;
    padding: 1.25rem 0;
    border-radius: 6.25rem;
    cursor: pointer;
    transition: background-color 200ms ease;
}
.primary__cta:hover{
    background-color: var(--secondary);
}
.primary__cta > button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 0.75rem;
    cursor: pointer;
}
.content__text{
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    width: 100%;
}
.accordion__wrapper{
    width: 100%;
    max-width: 28rem;
    padding: 0;
    margin: 0 auto;
}
.accordion{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.accordion__item {
    background: var(--surface-white);
    border-radius: 1rem;
    padding: 0.5rem 1rem;
}
.outline__custom{
    border: 2px solid var(--stroke-section);
}
.accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: none;
    border: none;
    padding: 0.75rem 0;
    font-size: 20px;
    color: #252a2d;
    cursor: pointer;
    text-align: left;
    line-height: 1.5;
    font-weight: 500;
}
.accordion__icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform 300ms;
}
.accordion__trigger.active .accordion__icon {
    transform: rotate(-180deg);
}
.accordion__content{
    max-height: 0;
    padding: 0;
    overflow: hidden;
    color: var(--paragraph);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 200ms ease-in-out;
}
.accordion__content.active {
    max-height: 125rem;
    padding: 1.25rem 0 0.75rem;
    border-top: 1px solid var(--stroke-section);
}
.answer__title, .answer__text{
    text-align: left;
    font-size: 1.125rem;
}
.answer__title{
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}
.answer__item{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    line-height: 1.5;
    text-align: left;
}
.answer__list{
    text-align: left;
    display: flex;
    flex-direction: column;
    gap:1rem;
    list-style: disc;
    padding-inline-start: 1.5rem;
    font-size: 1.125rem;
}
.steps__img{
    display: none;
    transition: all 200ms ease;
}

#promo__steps{
    background: linear-gradient(to bottom, #fff5f9, #ffffff);
}
#promo__faqs{
    background: var(--section-surface);
}
#page__footer{
    border: 0;
    font-size: 1.125rem;
}
.footer__container{
    padding: 3.5rem 0;
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    margin: 0 auto;
    align-items: center;
}
.footer__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer__info{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.footer__logo{
    display: flex;
    width: auto;
    height: 3rem;
    margin-bottom: 1.5rem;
}
.footer__logo > img{
    width: auto;
    height: 3rem;
}
.footer__enterprise{
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 0;
    margin-bottom: 2.5rem;
    padding: 0 1.25rem;
}
.footer__enterprise > p img{
    width: auto;
    height: 1.875rem;
}
.footer__social{
    display: flex;
    flex-direction: row;
    column-gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer__social__icon{
    width: 1.75rem;
    height: 1.75rem;
    cursor: pointer;
}
.footer__social__icon > img{
    width: 1.75rem;
    height: 1.75rem;
}
.discover__products{
    width: 100%;
    padding: 2.5rem 0;
    border-top: 1px solid var(--stroke-section);
    border-bottom: 1px solid var(--stroke-section);    
}
.discover__title{
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.discover__items{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}
.closing__message{
    font-size: 1.125rem;
    line-height: 1.8rem;
    max-width: 48rem;
}
@media screen and (min-width:25rem){
    .intro__img{
        height: 25rem;
    }
}
@media screen and (min-width:32.5rem){
    .intro__img{
        height: 500px;
    }
}
@media screen and (min-width:75rem){
    .intro__img{
       max-height: 28rem;
    }
    .content__wrapper > h1{
        text-align: left;
    }
    .hero__container{
        flex-direction: row;
        padding: 5rem 3.75rem;
        column-gap: 60px;
    }
    .hero__container > .content__wrapper{
        align-items: flex-start;
        padding-right: 0;
        padding-left: 0;
    }
    .steps__container > .content__wrapper{
        padding-left: 0;
        padding-right: 0;
    }
    .intro__subtitle{
        text-align: left;
    }
    .steps__container{
        flex-direction: row-reverse;
        column-gap: 3.75rem;
        padding: 5rem 3.75rem;
        align-items: flex-start;
    }
    .steps__container > .content__wrapper{
        align-items: flex-start;
    }
    .steps__container > .content__wrapper > .content__text > h2{
        text-align: left;
    }
    .steps__container > .content__wrapper > .content__text > p{
        text-align: left;
    }
    .steps__container > .content__wrapper > .accordion__wrapper{
        margin: 0;
    }
    .steps__img{
        display: flex;
        width: 100%;
        height: 25rem;
        max-height: 28rem;
        transition: all 200ms ease;
    }
    .steps__img > img {
        object-fit: cover;
        width: 100%;
        height: auto;
    }
    .faqs__container{
        padding: 5rem 0;
    }
    .footer__container{
        padding-left: 0;
        padding-right: 0;
    }
    .footer__content{
        padding-left: 0;
        padding-right: 0;
    }
    .footer__enterprise{
        max-width: 25rem;
    }
}
@media screen and (min-width:81.25rem){
    .hero__container{
        padding-left: 0;
        padding-right: 0;
    }
    .steps__container{
        padding-left: 0;
        padding-right: 0;
    }
}