 body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #0a1628;;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    }
	*{
	box-sizing:border-box;
	}
    .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color:#fff;
}
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    flex-shrink: 0;
}
    .logo > img{
        width:200px ;
    }
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, .1);
    border: 1px solid rgba(245, 197, 24, .35);
    border-radius: 4px;
    padding: 6px 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #F5C518;
}
    h1{
        font-family: 'space grotesk', sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        color: #FFF;
    }
    p{
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 1.25rem;
        color: #7a95be;
    }
    .about-us{
		width: 65%;
		margin: 40px auto 0 auto;
		background-color: #0f2040;
		padding:5px;
		display:flex;
		gap: 30px;
		border-radius:5px;
		}
	.about-icon{
		align-content:center;
	}
	.about-icon span{
		font-size:2em;
		position: relative;
		left: 10px;
	}
	.about-texte h2{
		margin:10px 0 0;
	}
	.about-texte p{
		margin:2px 0 10px;
	}
	.main-content{
		      flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 60px 60px 40px;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
	}
    
    .eyebrow{
        display: flex;
        align-items: center;
        gap: 10px;
        text-transform: uppercase;
        color: #7a95be;
    }
    .progress-wrap {
    margin-top: 40px;
    }
    .progress-label {
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #7a95be;
    margin-bottom: 8px;
    }
    .progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 99px;
    overflow: hidden;
    }
    .progress-fill {
    height: 100%;
    width: 43%;
    background: linear-gradient(90deg, #1a4DB6, #1E6BFF);
    border-radius: 99px;
    animation: fillBar 1.6s cubic-bezier(.4, 0, .2, 1) both .4s;
    }
    .eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #F5C518;
    }
    .text-container{
        animation: fadeUp .8s ease both;
    }
    .img-container{
         display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        
        animation: fadeUp .8s ease both .2s;
    }
    @keyframes fadeUp {
            from { opacity: 0; transform: translateY(28px); }
            to   { opacity: 1; transform: translateY(0); }
        }
    @keyframes fillBar {
            from { width: 0; }
            to   { width: 43%; }
        }
    @keyframes float {
            0%, 100% { transform: translateY(0); }
            50%       { transform: translateY(-10px); }
        }
    

    .img-construction {
        width: 300px;
        height: auto;
        z-index: 10;
        position: relative;
    }
    .corner {
            position: absolute;
            width: 16px;
            height: 16px;
            border-color: #1E6BFF;
            border-style: solid;
            opacity: .7;
        }
        .corner-tl { top: 8px; left: 8px;  border-width: 2px 0 0 2px; }
        .corner-tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; }
        .corner-bl { bottom: 8px; left: 8px;  border-width: 0 0 2px 2px; }
        .corner-br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }
    .img-frame{
        position: relative;
        padding: 48px;
        background: #0f2040;;
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 8px;
        animation: float 4s ease-in-out infinite;

    }
    .img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background-image: linear-gradient(rgba(30, 107, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 107, 255, .07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.img-frame::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 1px dashed rgba(30, 107, 255, .25);
    border-radius: 4px;
    pointer-events: none;
}
    footer{
        flex-shrink: 0;
    background: #0F2040;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
	position:fixed;
	bottom:0;
	width:100%;
    }
    .footer-section {
    display: flex;
    align-items: center;
    gap: 32px;
}
.footer-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #1E6BFF;
    margin-bottom: 4px;
}
.footer-link {
    font-size: .9rem;
    color:#7a95be ;
    text-decoration: none;
    transition: color .2s;
}
.footer-section div:last-child a{
	text-decoration:underline;
}
    .footer-copy {
    font-size: .8rem;
    color: rgba(122, 149, 190, .45);
    letter-spacing: .04em;
    }
    @media (max-width: 1100px){
		footer{
			position:relative;
		}
	}
        @media (max-width: 860px) {
            header  { padding: 20px 28px; }
			.about-us{width:85%;}
            .main-content    { grid-template-columns: 1fr; box-sizing: border-box; padding: 40px 28px 28px; text-align: center; }
            .logo > img { width: 128px; }
            .text-container { padding-right: 0; }
            .eyebrow { justify-content: center; }
            .divider { margin: 0 auto 28px; }
            .text-container p { margin-inline: auto; }
            .progress-wrap { text-align: left; }
            .img-container { order: -1; }
            .img-container img { width: clamp(180px, 55vw, 260px); }
            footer  { padding: 24px 28px; flex-direction: column; align-items: flex-start; }
        }