.wbs-intro{
    position: relative;
    overflow: hidden;

    height: 80vh;

    background-image: url("https://webalyse-solutions.fr/wp-content/themes/wbs-themev2/img/ordi-gauche.jpg");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;    
}
.inset-intro{
    position: absolute;
    inset: 0;

    background-color: hsl(220 60% 8% / 0.65);    
}

.container-intro{
    position: relative;

    max-width: 1200px;
    margin: 0 auto;

    padding: 6rem 0;

    display: grid;

    gap: 2.5rem;

    align-items: center;   
}
@media (min-width: 768px) {
    .container-intro {
        padding-top: 9rem;
        padding-bottom: 9rem;

        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
}

.animate-fadeup{
    position: relative;
    z-index: 10;

    grid-column: span 7 / span 7;

    animation: fade-up 0.6s ease-out both;   
}
@media (min-width: 768px) {
    .animate-fadeup {
        grid-column: span 7 / span 7;
    }
}

.blob-intro{
    position: absolute;
    inset: -2.5rem;

    transform: scale(1.20);
    transform-origin: center;

    border-radius: 42% 58% 64% 36%/47% 41% 59% 53%;
    background-color: #fffffff2;

    backdrop-filter: blur(12px);

    box-shadow: 0 0 30px hsl(var(--shadow-glow));

    z-index: 0;
    pointer-events: none;   
}
@media (min-width: 768px) {
    .blob-intro {
        top: -2.5rem;
        right: -2.5rem;
        bottom: -2.5rem;
        left: -2.5rem;
    }
}

.container-txtintro{
    padding: 0.5rem;
    position: relative;
    isolation: isolate;
}
@media (min-width: 768px) {
    .container-txtintro {
        padding: 1.5rem;
    }
}

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

    font-family: "Inter", sans-serif;
    font-weight: 800;

    font-size: 2.25rem;
    line-height: 1.05;    
}
.text-gradient{
    background: var(--gradient-brand);
    -webkit-background-clip: text;

    background-clip: text;
    color: transparent;
}
@media (min-width: 768px) {
    .heading-title {
        font-size: 3.75rem;
    }
}

.text-muted{
    margin-top: 1.5rem;

    font-size: 1.125rem;
    line-height: 1.75rem;
    font-family: "Inter", sans-serif;

    max-width: 36rem;

    color: hsl(var(--muted-foreground));   
}

.container-btn {
    margin-top: 2rem;

    display: flex;
    flex-wrap: wrap;

    gap: 1rem;
}
.btn-projet{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;

    white-space: nowrap;

    border-radius: 0.375rem;

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

    font-weight: 600;
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    text-decoration: none;

    height: 3rem;
    padding: 0 2rem;

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

    transition: color 0.2s, background-color 0.2s;   
}
.btn-projet:hover {
  background-color: hsl(var(--primary) / 0.9);
}
.btn-tarif, .btn-devis{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;

    white-space: nowrap;

    border-radius: 0.375rem;

    font-weight: 600;
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    text-decoration: none;

    height: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;

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

    border: 1px solid hsl(var(--border));

    transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.btn-tarif:hover {
    border-color: hsl(var(--primary) / 0.9);
    background-color: hsl(var(--muted));
}

/*Stats*/
.container-stats{
    max-width: 1400px;
    margin: 0 auto;

    padding: 4rem 0;

    border-top: 1px solid hsl(var(--border) / 0.5);
    border-bottom: 1px solid hsl(var(--border) / 0.5);    
}
.grid-stats{
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 2rem;
}

/* md: */
@media (min-width: 768px) {
    .grid-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.font-chiffre{
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 2.25rem;

    text-align: center;

    color: hsl(var(--foreground));
}
/* md: */
@media (min-width: 768px) {
    .font-chiffre {
        font-size: 3rem;
    }
}

.text-muted{
    margin-top: 0.25rem;

    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;

    text-align: center;

    color: hsl(var(--muted-foreground));    
}
.lucide-style{
    display: flex;
    
    width: 2rem;
    height: 2rem;

    color: hsl(var(--secondary));
    align-items: center;
    justify-content: center;

    margin: 0 auto;
    margin-bottom: 0.75rem;    
}