*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:#0b0b0b;
  color:#fff;
  font-family:Arial,sans-serif;
}

.site-footer{
  background:#050505;
  padding:60px 20px;
}

.footer-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:40px;
}

.footer-box h2{
  color:#7CFF00;
  margin-bottom:20px;
}

.footer-box h3{
  margin-bottom:20px;
}

.footer-box p{
  color:#aaa;
  margin-bottom:10px;
  line-height:1.7;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:10px;
}

.footer-box ul li a{
  color:#aaa;
  text-decoration:none;
}

.footer-box ul li a:hover{
  color:#7CFF00;
}

.footer-wa{
  display:inline-block;
  margin-top:15px;
  background:#7CFF00;
  color:#000;
  padding:12px 20px;
  border-radius:10px;
  font-weight:bold;
}

.footer-bottom{
  text-align:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid #111;
  color:#777;
}

@media(max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
  }

}

/* =========================
FOOTER
========================= */

.site-footer{
  background:#050505;
  padding:60px 20px;
  border-top:1px solid #151515;
}

.footer-container{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:40px;
}

.footer-box{
  width:100%;
}

.footer-box h2{
  color:#7CFF00;
  font-size:32px;
  margin-bottom:20px;
}

.footer-box h3{
  color:#fff;
  font-size:22px;
  margin-bottom:20px;
}

.footer-box p{
  color:#aaa;
  line-height:1.8;
  margin-bottom:12px;
}

.footer-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-box ul li{
  list-style:none;
  margin-bottom:12px;
}

.footer-box ul li a{
  color:#aaa;
  text-decoration:none;
  transition:0.3s;
}

.footer-box ul li a:hover{
  color:#7CFF00;
}

.footer-wa{
  display:inline-block;
  margin-top:15px;

  background:#7CFF00;
  color:#000;

  padding:12px 20px;
  border-radius:10px;

  font-weight:bold;
}

.footer-bottom{
  border-top:1px solid #111;
  margin-top:40px;
  padding-top:20px;

  text-align:center;
  color:#777;
}

/* MOBILE */

@media(max-width:768px){

  .footer-container{
    grid-template-columns:1fr;
  }

}

/* =========================
MOBILE FIX
========================= */

@media(max-width:768px){

  header{
    display:flex;
    flex-direction:column;
    align-items:center;

    padding:15px;
    gap:15px;
  }

  .logo{
    text-align:center;
  }

  .logo img{
    max-width:140px;
    height:auto;
  }

  /* SEARCH */

  .header-search{
    width:100%;
  }

  .header-search form{
    width:100%;
    max-width:100%;

    display:flex;
  }

  .header-search input{
    width:100%;
  }

  /* MENU */

  nav{
    width:100%;
  }

  nav ul{
    display:flex;
    flex-wrap:wrap;

    justify-content:center;
    align-items:center;

    gap:12px;

    padding:0;
    margin:0;

    list-style:none;
  }

  nav ul li{
    list-style:none;
  }

  nav ul li a{
    display:block;

    background:#111;
    border:1px solid #1f1f1f;

    padding:10px 14px;
    border-radius:10px;

    font-size:14px;
  }

  /* HERO */

  .hero{
    padding:60px 20px;
    text-align:center;
  }

  .hero h1{
    font-size:40px;
    line-height:1.2;
  }

  .hero p{
    font-size:18px;
    line-height:1.6;
  }

  .hero-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;

    margin-top:25px;
  }

  .hero-btn{
    width:100%;
    text-align:center;
  }

  /* PRODUCTS */

  .products{
    grid-template-columns:1fr;
  }

  .product{
    width:100%;
  }

  .product img{
    width:100%;
    height:auto;
  }

  /* FOOTER */

  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

}

/* ===================================
MOBILE FULL FIX INDOTEX
=================================== */

@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    /* HEADER */

    header{

        display:flex;
        flex-direction:column;

        align-items:center;
        justify-content:center;

        padding:20px 15px;
        gap:18px;

        text-align:center;

    }

    /* LOGO */

    .logo{

        width:100%;
        text-align:center;

    }

    .logo img{

        max-width:130px;
        height:auto;

        margin:auto;
        display:block;

    }

    /* SEARCH */

    .header-search{

        width:100%;

    }

    .header-search form{

        display:flex;
        width:100%;

    }

    .header-search input{

        flex:1;

        height:45px;

        border:none;
        border-radius:12px 0 0 12px;

        padding:0 15px;

        font-size:15px;

    }

    .header-search button{

        width:50px;
        height:45px;

        border:none;

        background:#7CFF00;
        color:#000;

        border-radius:0 12px 12px 0;

        font-size:18px;
        font-weight:bold;

    }

    /* MENU */

    nav{

        width:100%;

    }

    nav ul{

        display:grid;

        grid-template-columns:
        repeat(2,1fr);

        gap:12px;

        padding:0;
        margin:0;

        list-style:none;

    }

    nav ul li{

        width:100%;
        list-style:none;

    }

    nav ul li a{

        display:flex;

        align-items:center;
        justify-content:center;

        width:100%;

        min-height:50px;

        background:#111;

        border:1px solid #222;

        border-radius:14px;

        color:#fff;
        text-decoration:none;

        font-size:15px;
        font-weight:600;

        transition:.3s;

        box-sizing:border-box;

    }

    nav ul li a:hover{

        background:#7CFF00;
        color:#000;

    }

    /* HERO */

    .hero{

        padding:60px 20px;

        text-align:center;

    }

    .hero h1{

        font-size:42px;
        line-height:1.2;

    }

    .hero p{

        font-size:17px;
        line-height:1.7;

    }

    /* BUTTON HERO */

    .hero-buttons{

        display:flex;
        flex-direction:column;

        gap:15px;

        margin-top:25px;

    }

    .hero-btn{

        width:100%;

    }

    /* PRODUCTS */

    .products{

        display:grid;

        grid-template-columns:1fr;

        gap:20px;

    }

    .product{

        width:100%;

        box-sizing:border-box;

    }

    .product img{

        width:100%;
        height:auto;

        border-radius:18px;

    }

    .product h3{

        font-size:18px;
        line-height:1.5;

    }

    /* BUTTON */

    .btn{

        width:100%;

        display:flex;

        justify-content:center;
        align-items:center;

        box-sizing:border-box;

    }

    /* FOOTER */

    .footer-container{

        display:grid;

        grid-template-columns:1fr;

        gap:35px;

        text-align:center;

    }

}

/* =====================================
DESKTOP FIX
===================================== */

@media (min-width:769px){

    body{
        overflow-x:hidden;
    }

    /* HEADER */

    header{

        display:flex;
        align-items:center;
        justify-content:space-between;

        padding:18px 40px;

        background:#000;

        position:sticky;
        top:0;
        z-index:999;

    }

    /* LOGO */

    .logo img{

        max-width:170px;
        height:auto;

        display:block;

    }

    /* SEARCH */

    .header-search{

        width:320px;
        margin:0 30px;

    }

    .header-search form{

        display:flex;
        width:100%;

    }

    .header-search input{

        flex:1;

        height:42px;

        border:none;
        outline:none;

        padding:0 15px;

        border-radius:10px 0 0 10px;

        background:#111;
        color:#fff;

    }

    .header-search button{

        width:50px;
        height:42px;

        border:none;

        background:#7CFF00;
        color:#000;

        border-radius:0 10px 10px 0;

        cursor:pointer;

        font-weight:bold;

    }

    /* MENU */

    nav ul{

        display:flex;
        align-items:center;

        gap:18px;

        list-style:none;

        margin:0;
        padding:0;

    }

    nav ul li{

        list-style:none;

    }

    nav ul li a{

        color:#fff;
        text-decoration:none;

        font-size:15px;
        font-weight:600;

        transition:.3s;

    }

    nav ul li a:hover{

        color:#7CFF00;

    }

    /* HERO */

    .hero{

        padding:120px 20px;

        text-align:center;

        background:#000;

    }

    .hero h1{

        font-size:70px;
        line-height:1.1;

        margin-bottom:20px;

    }

    .hero p{

        font-size:22px;

        max-width:900px;
        margin:auto;

        line-height:1.8;

    }

    /* PRODUCTS */

    .products{

        display:grid;

        grid-template-columns:
        repeat(4,1fr);

        gap:30px;

    }

    .product{

        background:#0d0d0d;

        border-radius:20px;

        overflow:hidden;

        transition:.3s;

    }

    .product:hover{

        transform:translateY(-5px);

    }

    .product img{

        width:100%;
        height:260px;

        object-fit:cover;

    }

    /* FOOTER */

    .footer-container{

        display:grid;

        grid-template-columns:
        repeat(4,1fr);

        gap:40px;

    }

}