*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Montserrat',sans-serif;
}

body{
background:#0b0f14;
color:white;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

header{
padding:5px 0;
border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
    width: 32%;
}

.logo span{
color:#16D9D2;
}

nav a{
text-decoration:none;
color:white;
margin:0 15px;
}

.btn{
background:#16D9D2;
color:#000;
padding:14px 30px;
border-radius:10px;
text-decoration:none;
font-weight:700;
}
.hero{
    padding:120px 0;

    background-image:
    linear-gradient(
        rgba(11,15,20,0.85),
        rgba(11,15,20,0.85)
    ),
    url("image/background.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}


.hero-content{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
}
.hero-left {
	    width: 150%;
}
.hero-left h1{
font-size:55px;
line-height:1.1;
margin-bottom:20px;
}

.hero-left span{
color:#16D9D2;
}

.hero-left p{
font-size:20px;
color:#c7c7c7;
margin-bottom:30px;
}
.hero-features{
    display:flex;
    gap:40px;
    margin-top:50px;
    flex-wrap:wrap;
}

.feature{
    display:flex;
    align-items:center;
    gap:12px;
}

.feature span{
    font-size:28px;
    color:#16D9D2;
}

.feature p{
    color:#fff;
    font-size:14px;
    line-height:1.4;
    font-weight:600;
    margin-bottom:0px;
}

.feature i{
    color:#16D9D2;
    font-size:28px;
}
.hero-buttons{
display:flex;
gap:15px;
}

.btn-outline{
border:1px solid #16D9D2;
padding:14px 30px;
border-radius:10px;
text-decoration:none;
color:#16D9D2;
}

.hero-right img{
width:100%;

}
.production{
    background:#f5f5f5;
    padding:100px 0;
}

.production-wrapper{
    display:flex;
    align-items:center;
    gap:50px;
}

.production-left{
    flex:1;
}

.production-left h2{
    color:#111;
    font-size:48px;
    margin-bottom:20px;
    line-height:1.2;
}

.production-left span{
    color:#16D9D2;
}

.production-left p{
    color:#555;
    font-size:18px;
    margin-bottom:30px;
    line-height:1.8;
}

.btn-dark{
    background:#111;
    color:white;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    display:inline-block;
}

.production-right{
    flex:1;
    display:flex;
    gap:25px;
}

.production-card{
    background:white;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.3s;
}

.production-card:hover{
    transform:translateY(-10px);
}

.production-card img{
    width:180px;
    margin-bottom:20px;
}

.production-card h3{
    color:#111;
    margin-bottom:10px;
}

.production-card p{
    color:#666;
    line-height:1.7;
}

.how-it-works{
    background:#0b0f14;
    padding:60px 0;
}

.how-it-works h2{
    text-align:center;
    color:#fff;
    font-size:48px;
    margin-bottom:70px;
}

.steps{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.step-card{
    width:260px;
    min-height:240px;

    background:#121821;

    border:1px solid rgba(22,217,210,.15);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    transition:.3s;
}

.step-card:hover{
    transform:translateY(-10px);

    border-color:#16D9D2;

    box-shadow:0 0 30px rgba(22,217,210,.25);
}
.step-card  i {

    font-size: 46px;
    padding-bottom: 30px;

}
.step-icon{
    font-size:50px;
    margin-bottom:20px;
}

.step-card h3{
    color:white;
    margin-bottom:15px;
    font-size:18px;
}

.step-card p{
    color:#a8b0b7;
    line-height:1.7;
}

.arrow{
    color:#16D9D2;
    font-size:40px;
    font-weight:700;
}
.step-icon i{
    color:#16D9D2;
    font-size:50px;
}

.how-it-works-container {
	max-width: 100%;
}
.services{
background:#f5f5f5;
padding:100px 0;
color:#111;
}

.services h2{
text-align:center;
margin-bottom:50px;
font-size:42px;
}

.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:15px;
box-shadow:0 0 20px rgba(0,0,0,.08);
}
.service-icon{
    font-size:70px;
    color:#16D9D2;
    margin-bottom:25px;
    transition:.3s;
    width: 100%;
        text-align: center;
}

.service-card:hover .service-icon{
    transform:scale(1.1);
}

.service-card{
    text-align:center;
}

.card h3 {
	text-align: center;
}
.card p {
	text-align: center;
}
.steps{
padding:100px 0;
}

.steps h2{
text-align:center;
margin-bottom:60px;
}

.step-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.step{
background:#121821;
padding:30px;
border-radius:15px;
text-align:center;
}

.step span{
font-size:40px;
color:#16D9D2;
font-weight:800;
}
.stats{
    background:#0B0F14;
    padding:80px 0;
    border-top:1px solid rgba(255,255,255,.05);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-item{
    text-align:center;
}

.stat-item i{
    font-size:50px;
    color:#16D9D2;
    margin-bottom:15px;
}

.stat-item h3{
    color:#fff;
    font-size:42px;
    font-weight:800;
    margin-bottom:10px;
}

.stat-item p{
    color:#A8B0B7;
    font-size:16px;
}

.stat-item{
    transition:.3s;
}

.stat-item:hover{
    transform:translateY(-8px);
}

.stat-item:hover i{
    color:#24FFF7;
}
.stats-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.stats-header span{
    color:#16D9D2;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
}

.stats-header h2{
    font-size:48px;
    color:#fff;
    margin:15px 0;
    line-height:1.2;
}

.stats-header h2 span{
    color:#16D9D2;
    font-size:inherit;
    letter-spacing:normal;
    text-transform:none;
}

.stats-header p{
    color:#A8B0B7;
    font-size:18px;
    line-height:1.8;
}
footer{
background:#05080d;
padding:60px 0;
margin-top:100px;
}
.footer-bottom{
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
}

.footer-bottom p{
    color:#A8B0B7;
    font-size:14px;
    text-align: center;
    font-weight: bold;
    width: 100%;
}

.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:#A8B0B7;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#16D9D2;
}
.footer{
display:flex;
justify-content:space-between;
}
/* BANNER */
.banner {
  height: 260px;
  background: linear-gradient(
    135deg,
    #0f0f10,
    #1c1f24,
    #00c2c7
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 2px solid #00c2c7;
}

.banner h1 {
  color: white;
  font-size: 44px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* CONTENT */
.content {
  margin: 40px auto;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  line-height: 1.7;
}

.content h2 {
  margin-top: 0;
    color: #ffffff;
    font-size: 60px;
    text-align: center;
}

.content p {
	    text-align: center;
    font-size: 25px;
}
@media(max-width:991px){

.hero-content{
flex-direction:column;
}

.cards{
grid-template-columns:1fr 1fr;
}

.step-grid{
grid-template-columns:1fr 1fr;
}

.hero-left h1{
font-size:48px;
}
.steps{
    flex-direction:column;
}

.arrow{
    transform:rotate(90deg);
}
}
@media(max-width:991px){

.production-wrapper{
    flex-direction:column;
}

.production-right{
    flex-direction:column;
    width:100%;
}

.production-card img{
    width:140px;
}
@media(max-width:768px){

.footer-bottom{
    flex-direction:column;
    gap:15px;
    text-align:center;
}

}
}
@media(max-width:600px){

.cards{
grid-template-columns:1fr;
}

.step-grid{
grid-template-columns:1fr;
}

nav{
display:none;
}

.hero-left h1{
font-size:38px;
}

}