#menu-nav {
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, .05);

    .content {
        .links .btn-cta { border: none; }

        #menu-trigger svg {
            width: 24px;
            height: 24px;
        }
    }
}

#header .content {
    .texts .bottom ul li {
        display: flex;
        align-items: center;
        gap: .4rem;
        font-size: 15px;
        font-weight: 500;

        svg {
            width: 20px;
            height: 20px;
            fill: var(--primary);
        }
    }

    .example {
        padding: 1.5rem;
        box-shadow: 0 0 5px 3px rgba(0, 0, 0, .05);

        .report .item {
            width: 100%;
            padding: .6rem .8rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: rgba(255, 0, 0, .07);

            &.approved {
                background-color: rgba(0, 255, 0, .07);
                border: 2px solid var(--clr-success);

                .name {
                    font-weight: 500;

                    svg { fill: var(--clr-success); }
                }
                
                .status span { color: var(--clr-success); }
            }

            .name {
                font-size: 14px;
                font-family: var(--font-space-grotesk);
                display: flex;
                align-items: center;
                gap: .5rem;

                svg { fill: var(--clr-alert); }
            }   

            .status {
                display: flex;
                align-items: center;

                span {
                    font-size: 13px;
                    font-family: var(--font-space-grotesk);
                    font-weight: 700;
                    text-transform: uppercase;
                    color: var(--clr-alert);
                }
            }
        }
    }
}

#reasons .content .problems .items .item {
    background-color: rgba(0, 0, 0, .1);
    border-radius: 16px;
    border-left: 3px solid var(--clr-success);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    font-family: var(--font-space-grotesk);
    font-weight: 500;
    width: calc((100% - (1.5rem * 2)) / 3);

    svg {
        width: 18px;
        height: 18px;
        fill: var(--clr-success);
    }
}

#about .content .infos {
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, .07);

    .item {
        padding: .8rem;
        border-radius: 4px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: rgba(0, 0, 0, .05);

        &.title {
            background-color: var(--black);
            border-radius: 16px 16px 0 0;

            .name { color: var(--white); }
        }

        &.alert {
            border: 1px solid var(--primary);
            background-color: rgba(255, 0, 0, .07);

            .value { color: var(--primary); }
        }

        .name {
            font-size: 15px;
            color: var(--clr-dark-paragraph);
        }

        .value {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
        }
    }
}

#infos .content .subcontent .items .item {
    width: calc((100% - (1.5rem * 2)) / 3);
    padding: 1.5rem;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, .07);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    .icon {
        padding: .6rem;
        width: fit-content;
        border-radius: 6px;
        background-color: var(--primary);

        svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
            display: flex;
        }
    }

    .texts {
        display: flex;
        flex-direction: column;
        gap: .6rem;

         h3 {
            font-family: var(--font-title);
            font-size: 16px;
         }

         p {
            font-size: 15px;
            color: var(--clr-dark-paragraph);
         }
    }
}

#process .content .subcontent .items .item {
    width: calc((100% - (2rem * 2)) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    .step {
        font-size: 22px;
        font-weight: 600;
        color: var(--white);
        background-color: var(--primary);
        border-radius: 50%;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .texts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: .6rem;

        h3, p { text-align: center; }

        h3 { font-family: var(--font-title); }

        p {
            font-size: 15px;
            color: var(--clr-dark-paragraph);
        }
    }
}

#public .content .subcontent .items .item {
    padding: 1rem;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, .05);
    display: flex;
    align-items: center;
    gap: .8rem;
    font-family: var(--font-space-grotesk);
    width: 100%;

    svg {
        width: 20px;
        height: 20px;
        fill: var(--primary);
    }
}

#advantages .content .subcontent .items .item {
    width: calc((100% - (4rem * 3)) / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    
    .icon svg {
        width: 40px;
        height: 40px;
        fill: var(--primary);
    }

    .name {
        font-family: var(--font-space-grotesk);
        font-weight: 500;
        color: var(--white);
        text-align: center;
    }
}

#price .content .subcontent {
    padding: 2rem 3rem;
    border: 2px solid var(--primary);
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, .05);

    .cta .btn-cta {
        width: 100%;
        text-align: center;
    }
}

#faq .content .subcontent .items .item {
    width: 100%;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 2px solid rgba(0, 0, 0, .1);
    border-radius: 16px;
    cursor: pointer;

    &.active .answer { display: flex; }

    .question {
        display: flex;
        justify-content: space-between;
        font-family: var(--font-space-grotesk);

        svg {
            width: 18px;
            height: 18px;
            fill: var(--primary);
        }
    }

    .answer {
        display: none;
        flex-direction: column;
        gap: .8rem;

        p {
            font-size: 15px;
            color: var(--clr-dark-paragraph);
        }
    }
}

@media (max-width: 1024px) {
    #menu-nav .content {
        .logo img { width: 100px; }

        .links {
            position: fixed;
            top: 68px;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-radius: 0 0 16px 16px;
            z-index: -1;
            background-color: rgba(0, 0, 0, .7);
            flex-direction: column;
            align-items: center;
            transform: rotateX(90deg);
            transform-origin: top;
            transition: all .3s;

            &.active { transform: rotateX(0); }

            li {
                &, a { width: 100%; }

                a {
                    display: block;
                    text-align: center;
                }
            }
        }

        #menu-trigger {
            display: flex;
        }
    }
}

@media (max-width: 768px) {
    #header .content {
        flex-direction: column;
        gap: 2rem;

        .part { width: 100% !important; }

        .texts {
            &, .top, .bottom { align-items: center; }

            .top {
                .h1, .paragraphs p {text-align: center;}
            }
        }
    }

    #reasons .content {
        gap: 2rem;

        .problems {
            &, .items { width: 100%; }

            .items {
                flex-direction: column;
                gap: .8rem;

                .item { width: 100%; }
            }
        }
    }

    #about .content {
        flex-direction: column;
        gap: 2.5rem;

        .part { width: 100% !important; }

        .texts {
            align-items: center;

            h2, .paragraphs p { text-align: center; }
        }
    }

    #infos .content .subcontent {
        &, .items { width: 100%; }

        .items {
            flex-direction: column;
            gap: 1rem;

            .item { width: 100%; }
        }
    }

    #process .content .subcontent {
        &, .items { width: 100%; }

        .items {
            flex-direction: column;
            gap: 2.5rem;
            
            .item { width: 100%; }
        }
    }

    #advantages .content .subcontent .items {
        flex-direction: column;
        gap: 3rem;

        .item { width: 100%; }
    }
}