/* HERO */

.hero{
  border-radius:35px;
  padding:55px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
}

.hello{
  color:#555;
  margin-bottom:12px;
  font-weight:500;
  font-size:16px;
}

.hero h1{
  font-size:82px;
  line-height:0.98;
  letter-spacing:-4px;
  font-weight:800;
}

.hero h1 span{
  color:#6c63ff;
}

.sub{
  margin-top:26px;
  color:#666;
  margin-bottom:38px;
  font-size:18px;
  line-height:1.6;
}

.cta{
  padding:18px 32px;
  border:none;
  border-radius:18px;
  background:linear-gradient(135deg,#6c63ff,#8d7cff);
  color:white;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.cta:hover{
  transform:translateY(-2px);
}

/* HERO RIGHT */

.hero-right{
  position:relative;
  width:320px;
  height:260px;
}

.main-file{
  width:180px;
  height:180px;
  border-radius:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:70px;
  position:absolute;
  top:40px;
  left:70px;
}

.floating-card{
  position:absolute;
  width:80px;
  height:80px;
  border-radius:22px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:700;
}

.word{
  top:10px;
  right:10px;
}

.ppt{
  bottom:0;
  right:40px;
}

/* QUICK TOOLS */

.quick-tools{
  width:100%;
  border-radius:36px;
  padding:40px;
  margin-bottom:25px;
}

.section-title{
  margin-bottom:32px;
}

.section-title h2{
  font-size:64px;
  line-height:1;
  letter-spacing:-3px;
  margin-bottom:10px;
  font-weight:800;
}

.section-title p{
  font-size:20px;
  color:#8a8a8a;
}

/* GRID */

.tool-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:24px;
  align-items:stretch;
}

/* TOOL CARD */

.tool-card{
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:32px;
  border-radius:30px;
  transition:.3s;
}

.tool-card:hover{
  transform:translateY(-6px);
}

.tool-card h3{
  font-size:20px;
  line-height:1.3;
  margin-bottom:14px;
  letter-spacing:-1px;
}

.tool-card p{
  line-height:1.7;
  font-size:15px;
  color:#8f8f8f;
}

/* ICON */

.tool-icon{
  width:72px;
  height:72px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  margin-bottom:22px;
  flex-shrink:0;
}

.tool-icon svg{
  width:30px;
  height:30px;
}

/* COLORS */

.red{background:#ff6b6b;}
.blue{background:#4d7cff;}
.green{background:#3bcf7f;}
.purple{background:#9b5cff;}
.orange{background:#ff9b42;}

/* RECENT */

.recent{
  border-radius:30px;
  padding:30px;
}

.recent h2{
  margin-bottom:25px;
  font-size:42px;
  letter-spacing:-2px;
}

.recent-item{
  display:flex;
  justify-content:space-between;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,0.3);
  font-size:16px;
}

.status{
  color:#28a745;
  font-weight:600;
}

/* BUTTONS */

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:18px 36px;
  border-radius:18px;
  background:linear-gradient(90deg,#6c63ff,#8a6cff);
  color:white;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  border:none;
  cursor:pointer;
  width:auto;
  min-width:280px;
}

.tool-link{
  text-decoration:none;
  color:inherit;
  display:block;
}