@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

h1.title {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 80px;
}

a {
    color:#4A90E2;
    text-decoration:none;
}

    a:not(.btn-default):hover,
    a:not(.btn-default):active,
    a:not(.btn-default):focus {
        text-decoration: underline;
    }

.anchor {
    visibility: hidden;
    height: 255px;
    margin-top: -255px;
}

small {
    font-size:13px;
}

.skip-link-container {
    background-color: black;
    padding: 15px 0;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    border-bottom: 1px solid rgba(33, 110, 187, 0.2);
}

    .skip-link-container:focus-within {
        position: relative;
        transform: translateY(0)
    }

.skip-link-container ul{
    margin:0;
    padding:0;
}


    .skip-link-container ul li{
       display:inline-block;
       color:white;
       text-decoration:underline;
       padding:0 5px;
    }

    .skip-link-container ul li:focus {
        color: #4A90E2;
    }

   


/*header */
header {
    background: #000000;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: auto;
    min-height: 70px;
}

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo {
    display: flex;
    align-items: center;
}

@media(max-width:767px) {
    .logo {
        min-width: auto !important;
    }
}

.logo-image {
    width: 500px;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

    .nav a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }

        .nav a:hover,
        .nav a:focus,
        .nav a:active{
            color: #216EBB;
        }

.btn-franchise {
    background: linear-gradient(135deg, #216EBB 0%, #4A90E2 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(33, 110, 187, 0.3);
}

    .btn-franchise:hover,
    .btn-franchise:focus,
    .btn-franchise:active {
        background: linear-gradient(135deg, #4A90E2 0%, #216EBB 100%);
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(33, 110, 187, 0.4);
        transition: transform 0.3s ease !important;
    }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

    .mobile-menu-btn:hover,
    .mobile-menu-btn:focus,
    .mobile-menu-btn:active {
        color: #216EBB;
    }

    .mobile-menu-btn i {
        transition: transform 0.3s ease;
    }

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

    .mobile-nav-content a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

.btn-franchise-mobile {
    background: linear-gradient(135deg, #216EBB 0%, #4A90E2 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 110, 187, 0.3);
    margin-top: 1rem;
}

.bg-perso {
    display: none;
}

/* Hero Section */

header + section,
header + div {
    margin-top: 90px;
}

.hero {
    height: calc(100vh - 90px);
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 180px;
    overflow: hidden;
}

@media(max-width:767px) {

    header + section,
    header + div {
        margin-top: 86px;
    }

    .hero {
        height: calc(100vh - 86px);
        padding: 0 15px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url(/docs/pages/43/bg-hero-brperformance.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
}

    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(33, 110, 187, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 100%;
}

    .hero-content h1 {
        font-size: 60px;
        font-weight: 900;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        text-transform: uppercase;
        color: #ffffff;
    }

    .hero-content h2 {
        font-size: 46px;
        font-family: "Russo One";
        line-height: 1.2;
        margin: 0;
        color: #ffffff;
    }

        .hero-content h2 span {
            color: #4A90E2;
        }

    .hero-content h3 {
        font-size: 36px;
        font-weight: 400;
        margin: 0;
        color: #ffffff;
    }

@media(max-width:767px) {

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content h3 {
        font-size: 28px;
    }
}

.hero-cta {
    margin-top: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #216EBB 0%, #4A90E2 100%);
    color: #ffffff;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(33, 110, 187, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

    .btn-hero-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: all 0.6s ease;
    }

    .btn-hero-primary:hover::before,
    .btn-hero-primary:focus::before,
    .btn-hero-primary:active::before {
        left: 100%;
    }

    .btn-hero-primary:hover,
    .btn-hero-primary:focus,
    .btn-hero-primary:active {
        background: linear-gradient(135deg, #4A90E2 0%, #216EBB 100%);
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 15px 40px rgba(33, 110, 187, 0.6);
    }

    .btn-hero-primary i {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .btn-hero-primary:hover i,
    .btn-hero-primary:focus i,
    .btn-hero-primary:active i {
        transform: translateX(5px);
    }

.btn-default {
    background: linear-gradient(135deg, #216EBB 0%, #4A90E2 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    display:inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .btn-default:hover,
    .btn-default:focus,
    .btn-default:active {
        background: linear-gradient(135deg, #4A90E2 0%, #216EBB 100%);
        border: none;
        transform: translateY(-3px);
    }

.btn-secondary-alt {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 1.2rem 2.5rem;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-transform: uppercase;
}

    .btn-secondary-alt:hover,
    .btn-secondary-alt:active,
    .btn-secondary-alt:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
    }

/* Hero Stats Section */


.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    padding: 0.5rem;
}

    .stat-point:hover,
    .stat-point:focus,
    .stat-point:active{
        transform: translateY(-8px);
    }

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(33, 110, 187, 0.3) 0%, rgba(74, 144, 226, 0.2) 100%);
    border: 3px solid #216EBB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(33, 110, 187, 0.3);
}

/* Enhanced icons styling for better contrast */
.hero-stats .stat-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.stat-point:hover .stat-icon,
.stat-point:active .stat-icon,
.stat-point:focus .stat-icon {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.4) 0%, rgba(33, 110, 187, 0.3) 100%);
    border-color: #4A90E2;
    box-shadow: 0 12px 35px rgba(33, 110, 187, 0.5);
    transform: scale(1.1);
}

    .stat-point:hover .stat-icon i,
    .stat-point:active .stat-icon i,
    .stat-point:focus .stat-icon i {
        color: #4A90E2;
        transform: scale(1.1);
    }

.stat-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: color 0.3s ease;
    max-width: 150px;
}

/* Allow the last stat element to flow naturally */
.stat-point:nth-child(4) .stat-text {
    max-width: none;
}

.stat-point:hover .stat-text,
.stat-point:focus .stat-text,
.stat-point:active .stat-text {
    color: #4A90E2;
}

/* Presentation Section */
.presentation {
    padding: 80px 0;
    position: relative;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(31deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
}

    .presentation:before {
        content: "";
        position: absolute;
        height: 570px;
        width: 686px;
        left: 0;
        top: -135px;
        z-index: -1;
        background: url(/docs/pages/43/diagonales.svg);
    }

@media(max-width:767px) {
    .presentation:before {
        height: 394px;
        width: 483px;
        left: -104px;
        background-size: contain !important;
    }
}



.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.presentation-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .presentation-header h2 {
        font-size: 2.1rem;
        color: #ffffff;
        font-weight: 800;
        line-height: 1.2;
        margin: 80px 0;
    }

@media(max-width:767px) {
    .presentation-header h2 {
        font-size: 26px;
    }
}


.presentation-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-weight: 500;
}

.presentation-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .presentation-list li {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        color: #ffffff;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }

@media(max-width:767px) {
    .presentation-list li {
        text-align: left;
    }
}

.presentation-list li:hover,
.presentation-list li:active, 
.presentation-list li:focus {
    color: #ffffff;
    transform: translateX(10px);
}

.list-icon {
    width: 30px;
    height: 30px;
    background: rgba(33, 110, 187, 0.2);
    border: 2px solid rgba(33, 110, 187, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .list-icon i {
        color: #ffffff;
        font-size: 0.9rem;
        font-weight: 900;
    }


.presentation-footer {
    text-align: center;
    margin-top: 4rem;
}

.presentation-video {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    aspect-ratio: 16/9;
}

    .video-container:hover,
    .video-container:focus,
    .video-container:active {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        border-color: rgba(255, 255, 255, 0.3);
    }

.presentation-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Legacy image styles for backward compatibility */
.presentation-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

    .image-container:hover,
    .image-container:active,
    .image-container:focus {
        transform: translateY(-10px);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        border-color: rgba(255, 255, 255, 0.3);
    }

.presentation-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.image-container:hover .presentation-img,
.image-container:active .presentation-img,
.image-container:focus .presentation-img {
    transform: scale(1.05);
}

/* Entrepreneur Section */
.entrepreneur-section {
    padding: 100px 0;
    background: linear-gradient(214deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
    position: relative;
    z-index: 0;
}

    /* First skewed rectangle */
    .entrepreneur-section::before {
        content: "";
        position: absolute;
        height: 570px;
        right: 58px;
        top: -186px;
        z-index: -1;
        width: 686px;
        transform: scaleX(-1);
        background: url(/docs/pages/43/diagonales.svg);
    }


@media(max-width:767px) {
    .entrepreneur-section::before {
        height: 394px;
        width: 502px;
        background-size: contain !important;
    }
}

.entrepreneur-content {
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.entrepreneur-questions {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}

.question-item {
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

    .question-item:hover,
    .question-item:active,
    .question-item:focus {
        transform: translateY(-5px);
    }

.question {
    font-size: 29px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    transition: all 0.3s ease;
}

    .question .highlight {
        color: #216EBB;
        transition: color 0.3s ease;
    }

.question-item:hover .question .highlight,
.question-item:active .question .highlight,
.question-item:focus .question .highlight {
    color: #4A90E2;
}

.entrepreneur-conclusion {
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
}

.conclusion-text {
    font-size: 40px;
    font-family: "Russo One";
    color: #4A90E2;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

    .conclusion-text span:first-child {
        font-size: 54px;
    }

@media(max-width:767px) {
    .conclusion-text span:first-child {
        font-size: 40px;
    }
}

.conclusion-text span:last-child {
    color: white;
}

.entrepreneur-conclusion p {
    font-size: 18px;
}

.entrepreneur-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}


    .entrepreneur-buttons .btn-secondary {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 200px;
        text-transform: uppercase;
    }


.service-presentation {
    padding-bottom: 100px;
    position: relative;
    background: linear-gradient(329deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
}

    .service-presentation .container {
        position: relative;
        z-index: 1;
    }

.service-header {
    text-align: center;
    margin-bottom: 6rem;
}

    .service-header h2 {
        text-align: center;
        font-family: "Russo One";
        text-transform: uppercase;
        font-size: 52px;
        color: white;
        margin-top: 0;
        margin-bottom: 70px;
    }

        .service-header h2 span {
            font-size: 64px;
            color: #4A90E2;
        }

@media(max-width:767px) {
    .service-header h2 {
        font-size: 40px !important;
    }

        .service-header h2 span {
            font-size: 54px;
        }
}


.service-header h3 {
    font-size: 39px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin: 0 auto;
}

@media(max-width:767px) {
    .service-header h3 {
        font-size: 32px;
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

    .service-item::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(33, 110, 187, 0.05) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .service-item:hover,
    .service-item:active,
    .service-item:focus {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(33, 110, 187, 0.3);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(33, 110, 187, 0.1);
    }

        .service-item:hover::after,
        .service-item:active::after,
        .service-item:focus::after {
            opacity: 1;
        }

.service-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: auto;
    height: auto;
    transition: all 0.4s ease;
    z-index: 2;
}

    .service-icon i {
        font-size: 65px;
        color: #66B4FF;
        text-shadow: 0px 0px 7.8px rgba(255, 255, 255, 0.40);
        transition: all 0.4s ease;
    }

.service-item:hover .service-icon,
.service-item:active .service-icon,
.service-item:focus .service-icon {
    transform: scale(1.2);
    opacity: 0.2;
}

.service-item h4 {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-right: 95px;
}

@media(max-width:767px) {
    .service-item h4 {
        font-size: 18px;
    }
}

.service-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

@media(min-width:992px) {
    .service-item.solo {
        margin-bottom: 40px;
        display: flex;
        column-gap: 40px;
        align-items: center;
    }

        .service-item.solo img {
            width: 50%;
            border-radius: 20px;
        }

        .service-item.solo .service-icon {
            top: 0;
            right: 0;
        }
}

@media(max-width:767px) {
    .service-item.solo {
        margin-bottom: 40px;
    }
}



/* Conditions Section */
.conditions-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(141deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
}

    .conditions-section::before {
        content: "";
        position: absolute;
        height: 570px;
        width: 686px;
        left: 0;
        top: -135px;
        z-index: -1;
        background: url(/docs/pages/43/diagonales.svg);
    }

@media(max-width:767px) {
    .conditions-section::before {
        height: 394px;
        width: 483px;
        left: -104px;
        background-size: contain !important;
    }
}



.conditions-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 3;
}

    .conditions-header h2 {
        font-size: 2.5rem;
        color: #ffffff;
        font-weight: 800;
        line-height: 1.2;
        text-transform: uppercase;
    }

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 3;
    margin-bottom: 4rem;
}

.condition-item {
    border: 2px solid rgba(33, 110, 187, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .condition-item:hover,
    .condition-item:focus,
    .condition-item:active {
        transform: translateY(-8px);
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(33, 110, 187, 0.5);
        box-shadow: 0 15px 40px rgba(33, 110, 187, 0.2);
    }

.condition-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(33, 110, 187, 0.3) 0%, rgba(74, 144, 226, 0.2) 100%);
    border: 3px solid #216EBB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    transition: all 0.3s ease;
}

    .condition-icon i {
        font-size: 25px;
        color: #ffffff;
        transition: all 0.3s ease;
    }

.condition-item:hover .condition-icon,
.condition-item:active .condition-icon,
.condition-item:focus .condition-icon {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.4) 0%, rgba(33, 110, 187, 0.3) 100%);
    border-color: #4A90E2;
    transform: scale(1.1);
}

    .condition-item:hover .condition-icon i,
    .condition-item:active .condition-icon i,
    .condition-item:focus .condition-icon i {
        color: #4A90E2;
        transform: scale(1.1);
    }

.condition-item h3 {
    font-size: 17px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.condition-item p {
    color: #216EBB;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.condition-note {
    font-size: 12.6px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.condition-item:hover p,
.condition-item:active p,
.condition-item:focus p {
    color: #4A90E2;
}

.conditions-footer {
    text-align: center;
    position: relative;
    z-index: 3;
}

.btn-contact {
    background: linear-gradient(135deg, #216EBB 0%, #4A90E2 100%);
    color: #ffffff;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(33, 110, 187, 0.4);
}

    .btn-contact:hover,
    .btn-contact:active,
    .btn-contact:focus {
        background: linear-gradient(135deg, #4A90E2 0%, #216EBB 100%);
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 15px 40px rgba(33, 110, 187, 0.6);
    }



footer {
    background: #000000;
    padding-top: 60px;
    color: #ffffff;
    border-top: 1px solid rgba(33, 110, 187, 0.2);
}

    footer .copyright {
        display: none;
    }

    footer .footer-bottom a {
        text-decoration: none;
    }

.footer-content {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(250,250,250,0.2);
}

@media(min-width:768px) {
    .footer-content {
        display: flex;
    }
}


.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.footer-section a {
   color:white;
}

    .footer-section a:hover,
    .footer-section a:active,
    .footer-section a:focus {
        color: #216EBB;
    }

footer ul {
    margin-left: 0;
    padding: 0;
}

@media(max-width:767px) {


    footer ul li {
        list-style: none;
    }

        footer ul li a {
            padding: 10px 0;
            display: inline-block;
            text-decoration: none;
        }
}


@media(min-width:768px) {
    footer ul {
        margin-top: 30px;
    }

        footer ul li {
            display: inline-block;
            list-style: none;
            position: relative;
        }

            footer ul li + li:before {
                content: "";
                position: absolute;
                width: 6px;
                height: 6px;
                border-radius: 100%;
                background-color: #ffffff;
                left: -3px;
                top: 9px;
            }

            footer ul li a {
                font-weight: 500;
                font-size: 16px;
                text-decoration: none;
                padding: 0 20px;
            }
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}


    .social-icons a {
        width: 45px !important;
        height: 45px !important;
        background: rgba(33, 110, 187, 0.2) !important;
        border: 2px solid rgba(33, 110, 187, 0.3) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #ffffff !important;
        text-decoration: none !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        position: relative !important;
    }

        .social-icons a:hover,
        .social-icons a:active,
        .social-icons a:focus {
            background: rgba(33, 110, 187, 0.3) !important;
            border-color: rgba(33, 110, 187, 0.5) !important;
            color: #ffffff !important;
            transform: translateY(-3px) !important;
        }

        .social-icons a i {
            font-size: 1.1rem !important;
            position: absolute !important;
            top: 50% !important;
            left: 50% !important;
            transform: translate(-50%, -50%) !important;
            color: #ffffff !important;
        }

.footer-bottom {
    text-align: center;
    margin: 30px 0;
    font-weight: 500;
}


/* Mentions Légales */

.mentions-legales {
    background: linear-gradient(31deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
    padding: 80px 0;
}


.mentions-legales dt{
   font-weight:400;
}

    .mentions-legales dt,
    .mentions-legales dd {
        display:inline-block;
    }

    /*.mentions-legales  h1{
    font-size:40px;
    font-weight:800;
    text-transform:uppercase;
    text-align:center;
    margin-bottom:80px;
}*/

    .mentions-legales h2 {
        font-size: 32px;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .mentions-legales h3 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 30px;
    }

/* 404 */

.page-error {
    text-align: center;
    background: linear-gradient(31deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
    padding: 100px 0;
}

    .page-error h1 {
        text-align: center;
        font-size: 90px;
        font-weight: 900;
        color: #4A90E2;
        line-height: 1;
    }

        .page-error h1 span {
            display: block;
            font-weight: 600;
            margin-top: 10px;
            font-size: 39px;
            color: white;
            text-transform: uppercase;
        }

    .page-error p {
        padding: 30px;
        color: white;
    }

    .page-error a {
        background: linear-gradient(135deg, #216EBB 0%, #4A90E2 100%);
        color: #ffffff;
        padding: 1.2rem 2.5rem;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: inline-block;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

        .page-error a:hover,
        .page-error a:active,
        .page-error a:focus {
            background: linear-gradient(135deg, #4A90E2 0%, #216EBB 100%);
            border: none;
            transform: translateY(-3px);
        }

/* cookie bar */

.weCookieBar .btn-default {
    padding: 10px 25px;
    margin: 5px;
    font-size: 14px;
}

.weCookieBar .btn-link {
    color: white;
}


#back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    z-index: 200;
    text-align: center;
}

    #back-to-top .far {
        background-color: #66B4FF;
        color: #000000;
        width: 40px;
        height: 40px;
        font-size: 18px;
        line-height: 40px;
        border-radius: 5px;
    }


/* form */

.form {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(31deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgb(33 110 187 / 40%) 100%);
}

    .form h1 {
        margin-bottom: 40px;
    }


    .form h1 + h2 {
        font-size: 26px;
        font-weight: 400;
        color: #4A90E2;
        font-family: "Russo One";
    }

        .form h3 {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            text-transform:uppercase;
        }

    .form .form-group label {
        font-size: 17px;
        font-weight: 700;
        margin-bottom:5px;
        text-transform:uppercase;
    }

    .form form {
        margin-top: 40px;
        padding: 0 15px;
    }

.form-group small{
    display:block;
}


@media(min-width:992px) {
    .form form {
        padding: 0 80px;
    }

}

.form-group {
    text-align: left;
}

.form-control {
    padding: 15px;
    background-color: transparent;
    border:2px solid rgba(255,255,255,0.3);
    border-radius:15px;
    color:white;
}

    .form-control:focus {
        background-color: transparent;
        border: 2px solid #4A90E2;
        box-shadow: none;
        outline: none;
        color: white;
    }

    .form-control.input-validation-error {
        border: 2px solid #FF6987;
        box-shadow: none;
        outline: none;
    }

.field-validation-error {
    color: #FF6987 !important;
    font-size: 13px;
    line-height: 1.2;
    display: inline-block;
    margin-top: 5px;
    font-weight:500;
    font-style:italic;
}

form .alert-danger {
    border: 2px solid #FF6987;
    background-color: #2e1318;
    color: white;
    border-radius: 15px;
}

/*.form-control:-webkit-autofill,
.form-control:-internal-autofill-selected {
    box-shadow: inset 0 0px 0 40px #000000 !important;
    transition: none;
    color:white;
}*/

.form small {
    font-style:italic;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    vertical-align:middle;
    display:inline-block;
    appearance: none;
    border: 2px solid #4A90E2;
    border-radius: 3px;
}

    input[type="checkbox"]:checked {
        accent-color: #4A90E2;
        appearance: auto;
    }


    input[type="checkbox"] + label {
        padding: 5px;
    }

/*.form .form-control[type="checkbox"] {
    display: none;
}

    .form .form-control[type="checkbox"] + label {
        font-weight: 400;
        position: relative;
        padding-left: 30px;
        font-size: 18px;
        line-height: 1.2;
        margin: 10px 0 20px 0;
    }

        .form .form-control[type="checkbox"] + label:before {
            content: "\f0c8";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-weight: 500;
            left: 0;
            color: #4A90E2;
            font-size: 19px;
            top: -1px;
        }

        .form .form-control[type="checkbox"] + label::after {
            content: "\f14a";
            position: absolute;
            font-family: 'Font Awesome 6 Pro';
            font-weight: 900;
            left: 0px;
            font-size: 19px;
            top: -1px;
            color: #4A90E2;
            opacity: 0;
        }

    .form .form-control[type="checkbox"]:checked + label:after {
        opacity: 1;
    }

    .form .form-control[type="checkbox"]:checked + label:before {
        opacity: 0;
    }*/
.grecaptcha-badge {
    margin: 20px auto;
}


    #form-confirm-modal .close {
        background-color: transparent;
        float: right;
        font-size: 25px;
    }

    #form-confirm-modal .modal-content {
        background-color: #000000;
        border: 2px solid #376aa7;
    }

#form-confirm-modal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#form-confirm-modal .btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 10px 15px;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

    #form-confirm-modal .btn:hover,
    #form-confirm-modal .btn:active,
    #form-confirm-modal .btn:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
    }

    /* gestion des cookies*/
    #cookiesModal .modal-content {
        background-color: #000000;
        border: 2px solid #376aa7;
    }

#cookiesModal .modal-header button {
    background-color: transparent;
}

    #cookiesModal .modal-header button span {
        color: white;
        font-size: 40px;
        line-height: 1;
    }

#cookiesModal .modal-title {
    font-weight: 700;
    font-size: 26px;
    color:#4A90E2;
}

#cookiesModal h2,
#cookiesModal h3 {
    font-size: 24px;
}

#cookiesModal .form-group {
    margin-bottom: 15px;
}

#cookiesModal .btn {
    font-weight: 600;
}

    #cookiesModal .btn.notActive {
        color: #585858;
    }

#cookiesModal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#cookiesModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .logo-image {
        width: 400px;
    }

    .presentation-grid {
        gap: 4rem;
    }

    .presentationheader h2 {
        font-size: 1.9rem;
    }

    .conclusion-text {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 2.4rem;
    }

    .btn-hero-primary {
        font-size: 1.2rem;
        padding: 1.3rem 2.5rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
    }

    .hero-stats .stat-icon i {
        font-size: 1.8rem;
    }

    .stat-text {
        font-size: 1rem;
        max-width: 130px;
    }

    .stat-point:nth-child(4) .stat-text {
        max-width: none;
    }

    .question {
        font-size: 1.6rem;
    }
}

@media (max-width: 1024px) {
    .logo-image {
        width: 350px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .presentation-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .presentation-content {
        max-width: none;
    }

    .presentationheader h2 {
        font-size: 1.8rem;
    }

    .conclusion-text {
        font-size: 2rem;
    }

    .entrepreneur-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 2.2rem;
    }

    .btn-hero-primary {
        font-size: 1.1rem;
        padding: 1.2rem 2.2rem;
    }

    .stat-icon {
        width: 65px;
        height: 65px;
    }

    .hero-stats .stat-icon i {
        font-size: 1.6rem;
    }

    .stat-text {
        font-size: 0.95rem;
        max-width: 120px;
    }

    .stat-point:nth-child(4) .stat-text {
        max-width: none;
    }

    .question {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-image {
        width: 300px;
    }

    .stats-row {
        gap: 1.5rem;
    }

    .presentation {
        padding: 6rem 0;
    }

    .presentationheader h2 {
        font-size: 1.6rem;
    }

    .presentation-content p {
        font-size: 1.1rem;
    }

    .presentation-list li {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .btn-hero-primary {
        font-size: 1rem;
        padding: 1.1rem 2rem;
    }

    .entrepreneur-section {
        padding: 3rem 0;
    }

    .entrepreneur-questions {
        margin-bottom: 3rem;
        gap: 2rem;
    }

    .conclusion-text {
        font-size: 1.8rem;
    }


    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .hero-stats .stat-icon i {
        font-size: 1.5rem;
    }

    .stat-text {
        font-size: 0.9rem;
        max-width: 140px;
    }

    .stat-point:nth-child(4) .stat-text {
        max-width: none;
    }

    .hero-stats {
        padding: 2rem 0;
    }

    .question {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 250px;
    }

    .hero-stats {
        padding: 1.5rem 0;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
    }

    .hero-stats .stat-icon i {
        font-size: 1.3rem;
    }

    .stat-text {
        font-size: 0.8rem;
        max-width: 120px;
    }

    .stat-point:nth-child(4) .stat-text {
        max-width: none;
    }

    .presentation {
        padding: 4rem 0;
    }

    .presentationheader h2 {
        font-size: 1.4rem;
    }

    .presentation-content p {
        font-size: 1rem;
    }

    .presentation-list {
        margin-bottom: 2rem;
    }

    .btn-concept {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .video-container {
        border-radius: 15px;
    }

    .presentation-iframe {
        border-radius: 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .btn-hero-primary {
        font-size: 0.9rem;
        padding: 1rem 1.8rem;
        gap: 0.7rem;
    }

    .hero-cta {
        margin-top: 2rem;
    }

    .entrepreneur-section {
        padding: 4rem 0;
    }

    .conclusion-text {
        font-size: 1.6rem;
    }

    .entrepreneur-buttons .btn-primary,
    .entrepreneur-buttons .btn-secondary {
        padding: 1rem 2rem;
        min-width: 180px;
    }

    .btn-franchise {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .social-icon {
        width: 40px !important;
        height: 40px !important;
    }

        .social-icon i {
            font-size: 1rem !important;
        }

    .question {
        font-size: 1.1rem;
    }

    .entrepreneur-section::after {
        right: 4%;
    }

    .mobile-nav-content {
        padding: 1.5rem;
    }

        .mobile-nav-content a {
            font-size: 1rem;
        }

    .btn-franchise-mobile {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .logo-image {
        width: 400px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description p {
        font-size: 1.2rem;
    }

    .service-header h2 {
        font-size: 2.4rem;
    }

    .service-grid {
        max-width: 1000px;
    }

    .service-item {
        padding: 2.5rem;
    }

    .service-icon i {
        font-size: 55px;
    }

    .service-item h3 {
        padding-right: 4.5rem;
    }
}

@media (max-width: 1024px) {
    .logo-image {
        width: 350px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description p {
        font-size: 1.1rem;
    }

    .service-header h2 {
        font-size: 2.2rem;
    }

    .service-grid {
        max-width: 900px;
    }

    .service-item {
        padding: 2.5rem;
    }

    .service-icon i {
        font-size: 50px;
    }

    .service-item h3 {
        padding-right: 4rem;
    }

    .service-item-image {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-image {
        width: 300px;
    }

    .hero-new {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .hero-description p {
        font-size: 1rem;
    }

    .service-presentation {
        padding: 6rem 0;
    }

    .service-header {
        margin-bottom: 4rem;
    }

        .service-header h2 {
            font-size: 2rem;
        }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }

    .service-item {
        padding: 2.5rem;
    }

        .service-item h3 {
            font-size: 18px;
            padding-right: 3.5rem;
        }

        .service-item p {
            font-size: 0.9rem;
        }

    .service-icon {
        top: 15px;
        right: 15px;
    }

        .service-icon i {
            font-size: 42px;
        }

    .service-item-image {
        padding: 0 !important;
    }

    .service-image {
        min-height: 250px;
    }

    .conditions-section {
        padding-top: 0;
        padding-bottom: 3rem;
    }

    .conditions-header h2 {
        font-size: 2rem;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .condition-item {
        padding: 2rem;
    }

    .condition-icon {
        width: 60px;
        height: 60px;
    }

        .condition-icon i {
            font-size: 1.5rem;
        }

    .condition-item p {
        font-size: 1.1rem;
    }

    .btn-contact {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }


    .conditions-section::after {
        right: 6%;
    }
}

@media (max-width: 480px) {

    .service-presentation {
        padding: 4rem 0;
    }

    .service-header h2 {
        font-size: 1.8rem;
    }

    .service-grid {
        gap: 1.5rem;
        max-width: 100%;
    }

    .service-item {
        padding: 2rem;
    }

        .service-item h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            padding-right: 3rem;
        }

        .service-item p {
            font-size: 0.85rem;
        }

    .service-icon {
        top: 12px;
        right: 12px;
    }

        .service-icon i {
            font-size: 35px;
        }

    .service-item-image {
        padding: 0 !important;
    }

    .service-image {
        min-height: 200px;
    }


    .conditions-header h2 {
        font-size: 1.6rem;
    }

    .condition-item {
        padding: 1.5rem;
    }

    .condition-icon {
        width: 50px;
        height: 50px;
    }

        .condition-icon i {
            font-size: 1.2rem;
        }

    .condition-item h3 {
        font-size: 1rem;
    }

    .condition-item p {
        font-size: 1rem;
    }

    .condition-note {
        font-size: 0.8rem;
    }

    .btn-contact {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn-franchise {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

        .social-icon i {
            font-size: 1rem;
        }

    .conditions-section::after {
        right: 4%;
    }

    .mobile-nav-content {
        padding: 1.5rem;
    }

        .mobile-nav-content a {
            font-size: 1rem;
        }

    .btn-franchise-mobile {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
