.container-solutions{
    max-width: 1400px;

    font-family: "Inter", sans-serif;
    color: hsl(var(--foreground));

    padding: 6rem 0;
    margin: 0 auto;
}
.grid-solutions{
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}
@media (min-width: 768px) {
    .grid-solutions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.card-solutions, .card-ecoute, .card-resultats{
    text-align: center;

    padding: 2rem;

    border-radius: 1.5rem;
    background-color: white;
    box-shadow: var(--shadow-card);   
}
.bg-solutions{
    background-color: hsl(var(--primary));

    width: 4rem;
    height: 4rem;

    border-radius: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;

    margin-bottom: 1.25rem;

    box-shadow: var(--shadow-soft);   
}
.bg-ecoute{
    background-color: color-mix(in srgb, hsl(var(--muted-foreground)) 20%, transparent);

    width: 4rem;
    height: 4rem;

    border-radius: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;

    margin-bottom: 1.25rem;

    box-shadow: var(--shadow-soft);    
}
.bg-resultats{
    background-color: hsl(var(--secondary));

    width: 4rem;
    height: 4rem;

    border-radius: 1rem;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;

    margin-bottom: 1.25rem;

    box-shadow: var(--shadow-soft);
}

.title-muted{
    font-family: var(--font-display);

    font-weight: 700;

    font-size: 1.25rem;
    line-height: 1.75rem;

    margin-bottom: 0.5rem;    
}

.lucide-wrench, .lucide-target{
    width: 2rem;
    height: 2rem;

    font-family: "Inter", sans-serif;
    color: white;    
}
.lucide-heart{
    width: 2rem;
    height: 2rem;

    font-family: "Inter", sans-serif;
    color: hsl(var(--foreground));     
}

.container-contact{
    max-width: 1400px;
    width: 100%;
    
    padding: 6rem 0;
    margin: 0 auto;
}
.content-contact{
    position: relative;
    padding: 4rem;

    background: var(--gradient-hero);

    border-radius: 1rem;
    overflow: hidden;
}
.bg-contact{
    position: absolute;
    inset: 0px;

    background-image: radial-gradient(circle at 30% 20%,rgba(255,255,255,0.15),transparent);
}
.grid-startcontact{
    position: relative;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;

    align-items: flex-start;
}

.heading-contact{
    margin-top: 1.5rem;

    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 2.25rem;
    line-height: 1.25;

    color: white;
}
@media (min-width: 768px) {
    .heading-contact {
        font-size: 3rem;
    }
}
.text-accent{
    color: hsl(var(--accent));
}
.txt-contact{
    margin-top: 1.25rem;
    max-width: 28rem;

    font-family: "Inter", sans-serif;
    color: white;

    opacity: 0.9;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.cardtxt-contact{
    margin-top: 2rem;

    font-size: 0.875rem;
    line-height: 1.25rem;    
}

.items-email, .items-tel{
    display: flex;
    gap: 0.75rem;
    align-items: center;

    margin: 3% 0;
}
.icon-email, .icon-tel{
    width: 2.5rem;
    height: 2.5rem;

    border-radius: 0.5rem;

    background-color: rgba(255, 255, 255, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;    
}
.items-email > span,
.items-tel > span{
    font-family: "Inter", sans-serif;
    color: white;    
}

.grid-right{
    padding: 2rem;

    background: white;
    color: hsl(var(--foreground));

    box-shadow: var(--shadow-glow);
    border-radius: 1rem;
}


.nom-email{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.nom > p > label, .email > p > label,
.form-contact > p > label{
    font-size: 0.875rem;
    line-height: 1;
    font-weight: 500;
    font-family: "Inter", sans-serif;   
}

.input-nom, .input-email, .input-projet{
    display: flex;

    height: 2.5rem;
    width: 90%;

    border-radius: 0.375rem;
    border: 1px solid var(--input);
    background-color: var(--background);

    font-size: 1rem;
    font-family: "Inter", sans-serif;

    padding: 0.5rem 0.75rem;
    margin-top: 0.5rem;

    color: inherit;

    transition: box-shadow 0.2s, border-color 0.2s;    
}
@media (min-width: 768px) {
    .input-nom, .input-email, .input-projet {
        font-size: 0.875rem;
    }
}

.btn-sent{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;

    white-space: nowrap;

    border-radius: 0.375rem;

    background-color: hsl(var(--primary));
    border-color: hsl(var(--primary));
    color: hsl(var(--card));

    font-weight: 600;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;

    height: 2.75rem;
    width: 100%;

    padding: 0 1.5rem;

    box-shadow: var(--shadow-soft);

    transition: color 0.2s, background-color 0.2s;   
}
.btn-sent:hover {
    background-color: color-mix(in srgb, var(--primary) 90%, transparent);
}