/* /Components/Layout/Footer.razor.rz.scp.css */
footer[b-r3hqfgmvis] {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid[b-r3hqfgmvis] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-contact h2[b-r3hqfgmvis] {
    margin-bottom: 20px;
}

.contact-intro[b-r3hqfgmvis] {
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact-list li[b-r3hqfgmvis] {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-list i[b-r3hqfgmvis] {
    color: var(--secondary-turquoise);
}

.contact-form[b-r3hqfgmvis] {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--radius);
}

.form-group[b-r3hqfgmvis] {
    margin-bottom: 15px;
}

.form-control[b-r3hqfgmvis] {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
}

.form-control[b-r3hqfgmvis]::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-control:focus[b-r3hqfgmvis] {
    outline: none;
    border-color: var(--secondary-turquoise);
}

.btn-submit[b-r3hqfgmvis] {
    width: 100%;
    background-color: var(--secondary-turquoise);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: background 0.3s;
}

.btn-submit:hover[b-r3hqfgmvis] {
    background-color: #16a085;
}

.copyright[b-r3hqfgmvis] {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .footer-grid[b-r3hqfgmvis] {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
/* /Components/Layout/Header.razor.rz.scp.css */
header[b-jfju6wns24] {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container[b-jfju6wns24] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo[b-jfju6wns24] {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i[b-jfju6wns24] {
    color: var(--secondary-turquoise);
}

.nav-links[b-jfju6wns24] {
    display: flex;
    gap: 40px;
}

.nav-links a[b-jfju6wns24] {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-dark);
    font-size: 16px;
}

.nav-links a:hover[b-jfju6wns24] {
    color: var(--primary-blue);
}

.mobile-menu-btn[b-jfju6wns24] {
    display: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links[b-jfju6wns24] {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center;
    }

    .nav-links.active[b-jfju6wns24] {
        display: flex;
    }

    .mobile-menu-btn[b-jfju6wns24] {
        display: block;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Contenu vidé pour correspondre au nouveau design fluide */
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-sb2m5iq459] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-sb2m5iq459] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-sb2m5iq459] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-sb2m5iq459] {
    font-size: 1.1rem;
}

.bi[b-sb2m5iq459] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-sb2m5iq459] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-sb2m5iq459] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-sb2m5iq459] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-sb2m5iq459] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-sb2m5iq459] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-sb2m5iq459] {
        padding-bottom: 1rem;
    }

    .nav-item[b-sb2m5iq459]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-sb2m5iq459]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-sb2m5iq459]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-sb2m5iq459] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-sb2m5iq459] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-sb2m5iq459] {
        display: none;
    }

    .nav-scrollable[b-sb2m5iq459] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ehdmv4fp3g],
.components-reconnect-repeated-attempt-visible[b-ehdmv4fp3g],
.components-reconnect-failed-visible[b-ehdmv4fp3g],
.components-pause-visible[b-ehdmv4fp3g],
.components-resume-failed-visible[b-ehdmv4fp3g],
.components-rejoining-animation[b-ehdmv4fp3g] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ehdmv4fp3g],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ehdmv4fp3g],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ehdmv4fp3g],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ehdmv4fp3g],
#components-reconnect-modal.components-reconnect-retrying[b-ehdmv4fp3g],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ehdmv4fp3g],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ehdmv4fp3g],
#components-reconnect-modal.components-reconnect-failed[b-ehdmv4fp3g],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ehdmv4fp3g] {
    display: block;
}


#components-reconnect-modal[b-ehdmv4fp3g] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ehdmv4fp3g 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ehdmv4fp3g 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ehdmv4fp3g 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ehdmv4fp3g]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ehdmv4fp3g 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ehdmv4fp3g {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ehdmv4fp3g {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ehdmv4fp3g {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ehdmv4fp3g] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ehdmv4fp3g] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ehdmv4fp3g] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ehdmv4fp3g] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ehdmv4fp3g] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ehdmv4fp3g] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ehdmv4fp3g] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ehdmv4fp3g 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ehdmv4fp3g] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ehdmv4fp3g {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Sections/Hero.razor.rz.scp.css */
.hero[b-tzyippn192] {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 80px; /* Offset fixed header */
    overflow: hidden;
}

.hero-video[b-tzyippn192] {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay[b-tzyippn192] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.8) 0%, rgba(8, 45, 102, 0.6) 100%);
    z-index: 1;
}

/* Abstract Background Elements */
.hero[b-tzyippn192]::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.hero-content[b-tzyippn192] {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1[b-tzyippn192] {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p[b-tzyippn192] {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
}

@media (max-width: 768px) {
    .hero h1[b-tzyippn192] {
        font-size: 2.5rem;
    }
}
/* /Components/Sections/Perimeter.razor.rz.scp.css */
.perimeter[b-ha990z5onq] {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.cards-grid[b-ha990z5onq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card[b-ha990z5onq] {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.card:hover[b-ha990z5onq] {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--secondary-turquoise);
}

.card-icon[b-ha990z5onq] {
    font-size: 40px;
    color: var(--secondary-turquoise);
    margin-bottom: 25px;
}

.card h3[b-ha990z5onq] {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.card p[b-ha990z5onq] {
    color: var(--neutral-grey);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.tag-list[b-ha990z5onq] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag[b-ha990z5onq] {
    background-color: rgba(13, 71, 161, 0.05);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
/* /Components/Sections/Team.razor.rz.scp.css */
.founders[b-310gvjl2r2] {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.founders-grid[b-310gvjl2r2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.founder-card[b-310gvjl2r2] {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-card);
}

.founder-img[b-310gvjl2r2] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-turquoise);
    flex-shrink: 0;
}

.founder-info h3[b-310gvjl2r2] {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.founder-role[b-310gvjl2r2] {
    color: var(--secondary-turquoise);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.founder-desc[b-310gvjl2r2] {
    font-size: 0.9rem;
    color: var(--neutral-grey);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .founder-card[b-310gvjl2r2] {
        flex-direction: column;
        text-align: center;
    }
}
/* /Components/Sections/WhyFinseek.razor.rz.scp.css */
.why-finseek[b-fh8s9au7bo] {
    padding: 100px 0;
    background-color: var(--white);
    display: flex;
    align-items: center;
}

.why-grid[b-fh8s9au7bo] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2[b-fh8s9au7bo] {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.highlight-box[b-fh8s9au7bo] {
    border-left: 4px solid var(--secondary-turquoise);
    padding-left: 20px;
    margin: 30px 0;
}

.highlight-box p[b-fh8s9au7bo] {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.why-description[b-fh8s9au7bo] {
    color: var(--neutral-grey);
    margin-bottom: 20px;
}

.stat-item[b-fh8s9au7bo] {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-number[b-fh8s9au7bo] {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-turquoise);
}

.stat-label[b-fh8s9au7bo] {
    font-size: 0.9rem;
    color: var(--neutral-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.why-image[b-fh8s9au7bo] {
    position: relative;
}

.why-image img[b-fh8s9au7bo] {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
    .why-grid[b-fh8s9au7bo] {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
