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

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#2f2a27;
    color:#f5f5f5;
    padding-top:50px;
}

.construction-banner{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#f4b400;
    color:#222;
    text-align:center;
    padding:14px 10px;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
    z-index:9999;
    box-shadow:0 3px 10px rgba(0,0,0,.25);
}

header{
    height:100px;
    background:#f7f5f2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 60px;
    box-shadow:0 8px 22px rgba(0,0,0,.18);
}

.logo img{
    height:78px;
    width:auto;
    display:block;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:#0b2b56;
    font-size:18px;
    font-weight:600;
    transition:.2s;
}

nav a:hover{
    color:#1c6dd0;
}

nav a{
     position:relative;
    text-decoration:none;
    color:#0b2b56;
    font-size:18px;
    font-weight:600;
    transition:color .35s ease;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#d4a100;
    transition:width .25s ease;
}

nav a:hover{
    color:#0b2b56;
}

nav a:hover::after{
    width:100%;
}
nav a.active{
    color:#d4a100;
}

nav a.active::after{
    width:100%;
}
nav a:hover{color:#1c6dd0;}

.hero{
 position:relative;
    height:560px;
    overflow:hidden;
    background:#2f2a27;

    border-radius:12px;
}

.hero-images{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:0;
    height:100%;
}

.hero-images img{
    width:19%;
    height:100%;
    object-fit:cover;
    object-position:center;
    margin:0;
    transition:.3s;

    filter:brightness(45%);
}

.hero-images img:hover{
    filter:brightness(60%);
    transform:scale(1.02);
}

.overlay{
        display:none;
}

.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:min(760px,80%);
}

.hero-text h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:28px;
    text-shadow:0 3px 10px rgba(0,0,0,.35);
}

.hero-text p{
    font-size:24px;
    line-height:1.5;
    margin-bottom:35px;
}

.button{
    display:inline-block;
    background:#1c6dd0;
    color:#fff;
    text-decoration:none;
    padding:18px 42px;
    border-radius:12px;
    font-size:20px;
    font-weight:700;
    margin:0 10px;
    border:2px solid transparent;
    transition:all .25s ease;
    box-shadow:0 8px 18px rgba(0,0,0,.25);
}
.button:hover{
    background:#2b7be0;
    border-color:#d4a100;
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(0,0,0,.35);
}
.built-for{
    background:#2f2a27;
    text-align:center;
    padding:50px 20px 70px 20px;
}

.built-for h2,
.why-markethelp h2{
    color:#ffffff;
    font-size:40px;
    margin-bottom:20px;
}

.built-for p{
    max-width:1100px;
    margin:0 auto;
    font-size:22px;
    line-height:2;
    color:#dddddd;
}

.built-for span{
    color:#d4a100;
    padding:0 10px;
    font-weight:bold;
}

@media(max-width:900px){
header{
flex-direction:column;
height:auto;
padding:20px;
}
nav{
flex-wrap:wrap;
justify-content:center;
margin-top:20px;
gap:20px;
}
.hero{
height:auto;
}
.hero-images{
flex-wrap:wrap;
}
.hero-images img{
width:50%;
height:220px;
}
.hero-text{
position:relative;
transform:none;
left:auto;
top:auto;
padding:40px 20px;
}
.overlay{
display:none;
}
.hero-text h1{
font-size:40px;
color:#fff;
}
.hero-text p{
color:#ddd;
}
}
footer{
    background:#26211f;
    color:#d8d3cf;
    text-align:center;
    padding:50px 20px;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-content{
    max-width:900px;
    margin:auto;
}

footer h3{
    color:#ffffff;
    font-size:30px;
    margin-bottom:10px;
}

footer p{
    margin:10px 0;
    line-height:1.6;
}

.development{
    color:#d4b24c;
    font-weight:600;
}

.copyright{
    margin-top:30px;
    font-size:.9rem;
    color:#999;
}
.why-markethelp{
    text-align:center;
    padding-top:0px;
}
.message-card{
    width:75%;
    max-width:1100px;

    background:rgba(25,25,25,0.72);

    border:2px solid rgba(212,161,0,0.45);
    border-radius:20px;

    padding:10px 60px;

    margin:0 auto;
}
.stay-in-touch{
    background:#2f2a27;
    text-align:center;

    padding:50px 20px 60px;
}

.stay-in-touch h2{
    color:#ffffff;
    font-size:38px;
    margin-bottom:15px;
}

.stay-in-touch p{
    color:#ffffff;
    font-size:20px;
    margin-bottom:30px;
}

.form-row{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:25px;
}

.form-row input{
    width:320px;
    padding:14px 18px;

    border:none;
    border-radius:8px;

    font-size:18px;
}

.stay-in-touch .button{
    margin-top:10px;
}

.stay-in-touch .privacy{
    font-size:14px;
    margin-top:20px;
    opacity:.8;
}